1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

auth/credentials: Add test for binding with an extended canonical name

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Joseph Sutton 2021-03-30 16:01:44 +13:00 committed by Andrew Bartlett
parent 7679995b95
commit 7c2b26a431
2 changed files with 13 additions and 0 deletions

View File

@ -55,6 +55,7 @@ creds_user3 = create_credential(lp, creds)
creds_user4 = create_credential(lp, creds)
creds_user5 = create_credential(lp, creds)
creds_user6 = create_credential(lp, creds)
creds_user7 = create_credential(lp, creds)
class BindTests(samba.tests.TestCase):
@ -220,6 +221,17 @@ unicodePwd:: """ + base64.b64encode(u"\"P@ssw0rd\"".encode('utf-16-le')).decode(
lp=lp, ldap_only=True)
res = ldb_user6.search(base="", expression="", scope=SCOPE_BASE, attrs=["*"])
# do a simple bind and search with the extended canonical name
creds_user7.set_bind_dn(user_dn.canonical_ex_str())
creds_user7.set_password(self.password)
print("BindTest with: " + creds_user7.get_bind_dn())
try:
ldb_user7 = samba.tests.connect_samdb(host, credentials=creds_user7,
lp=lp, ldap_only=True)
except:
self.fail("Failed to connect with extended canonical name")
res = ldb_user7.search(base="", expression="", scope=SCOPE_BASE, attrs=["*"])
def test_user_account_bind_no_domain(self):
# create user
self.ldb.newuser(username=self.username, password=self.password)

View File

@ -0,0 +1 @@
^samba4.ldap.bind\(fl2008r2dc\).__main__.BindTests.test_user_account_bind\(fl2008r2dc\)