c78cf58c17123b86aca4955d4f54d273bf931cb7
[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 class PasswordExpirePamTests(samba.tests.TestCase):
24     def test_auth_expire_warning(self):
25         domain = os.environ["DOMAIN"]
26         username = os.environ["USERNAME"]
27         password = os.environ["PASSWORD"]
28         warn_pwd_expire = int(os.environ["WARN_PWD_EXPIRE"])
29         unix_username = "%s/%s" % (domain, username)
30         expected_rc = 0 # PAM_SUCCESS
31
32         tc = pypamtest.TestCase(pypamtest.PAMTEST_AUTHENTICATE, expected_rc)
33         res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password])
34
35         self.assertTrue(res != None)
36         if warn_pwd_expire == 0:
37             self.assertTrue(res.info == ())
38         elif warn_pwd_expire == 50:
39             self.assertEqual(res.info[0], u"Your password will expire in 42 days.\n")
40         else:
41             self.assertEqual(warn_pwd_expire, 0)