mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
tests/pam_winbind.py: turn pypamtest.PamTestError into a failure
A failure generated by the AssertionError() checks can be added to selftest/knownfail.d/*. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14124 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
This commit is contained in:
committed by
Günther Deschner
parent
a77be15d28
commit
cd3ffaabb5
@ -30,7 +30,10 @@ class SimplePamTests(samba.tests.TestCase):
|
||||
expected_rc = 0 # PAM_SUCCESS
|
||||
|
||||
tc = pypamtest.TestCase(pypamtest.PAMTEST_AUTHENTICATE, expected_rc)
|
||||
res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
|
||||
try:
|
||||
res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
|
||||
except pypamtest.PamTestError as e:
|
||||
raise AssertionError(str(e))
|
||||
|
||||
self.assertTrue(res is not None)
|
||||
|
||||
@ -42,7 +45,10 @@ class SimplePamTests(samba.tests.TestCase):
|
||||
expected_rc = 7 # PAM_AUTH_ERR
|
||||
|
||||
tc = pypamtest.TestCase(pypamtest.PAMTEST_AUTHENTICATE, expected_rc)
|
||||
res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
|
||||
try:
|
||||
res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
|
||||
except pypamtest.PamTestError as e:
|
||||
raise AssertionError(str(e))
|
||||
|
||||
self.assertTrue(res is not None)
|
||||
|
||||
@ -52,6 +58,9 @@ class SimplePamTests(samba.tests.TestCase):
|
||||
expected_rc = 0 # PAM_SUCCESS
|
||||
|
||||
tc = pypamtest.TestCase(pypamtest.PAMTEST_AUTHENTICATE, expected_rc)
|
||||
res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
|
||||
try:
|
||||
res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
|
||||
except pypamtest.PamTestError as e:
|
||||
raise AssertionError(str(e))
|
||||
|
||||
self.assertTrue(res is not None)
|
||||
|
Reference in New Issue
Block a user