tests/pam_winbind.py: turn pypamtest.PamTestError into a failure
[samba.git] / python / samba / tests / pam_winbind_warn_pwd_expire.py
1 # Unix SMB/CIFS implementation.
2 #
3 # Copyright (C) 2017      Andreas Schneider <asn@samba.org>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18
19 import samba.tests
20 import pypamtest
21 import os
22
23
24 class PasswordExpirePamTests(samba.tests.TestCase):
25     def test_auth_expire_warning(self):
26         domain = os.environ["DOMAIN"]
27         username = os.environ["USERNAME"]
28         password = os.environ["PASSWORD"]
29         warn_pwd_expire = int(os.environ["WARN_PWD_EXPIRE"])
30         unix_username = "%s/%s" % (domain, username)
31         expected_rc = 0  # PAM_SUCCESS
32
33         tc = pypamtest.TestCase(pypamtest.PAMTEST_AUTHENTICATE, expected_rc)
34         try:
35             res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
36         except pypamtest.PamTestError as e:
37             raise AssertionError(str(e))
38
39         self.assertTrue(res is not None)
40         if warn_pwd_expire == 0:
41             self.assertTrue(res.info == ())
42         elif warn_pwd_expire == 50:
43             # This is needed as otherwise a build started around
44             # midnight can fail
45             if (res.info[0] != u"Your password will expire in 41 days.\n") and \
46                (res.info[0] != u"Your password will expire in 43 days.\n"):
47                 self.assertEqual(res.info[0], u"Your password will expire in 42 days.\n")
48         else:
49             self.assertEqual(warn_pwd_expire, 0)