1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-06-05 18:47:47 +02:00

adding unit test for del user if user don't exist

This commit is contained in:
kakwa 2015-05-28 09:51:19 +02:00
parent 8387aa0cad
commit 0f97d1d07c

View File

@ -7,7 +7,7 @@ from __future__ import unicode_literals
import pytest
import sys
from sets import Set
from ldapcherry.backend.backendLdap import Backend
from ldapcherry.backend.backendLdap import Backend, DelUserDontExists
from ldapcherry.exceptions import *
import cherrypy
import logging
@ -168,6 +168,17 @@ class TestError(object):
inv.del_user('test')
raise AssertionError("expected an exception")
def testDelUserDontExists(self):
inv = Backend(cfg, cherrypy.log, 'ldap', attr)
try:
inv.del_user('test')
inv.del_user('test')
except DelUserDontExists:
return
else:
raise AssertionError("expected an exception")
def testAddUserMissingMustAttribute(self):
inv = Backend(cfg, cherrypy.log, 'ldap', attr)
user = {