18c2705127abb6b193227547797e78a309e6ce37
[samba.git] / python / samba / tests / pam_winbind_chauthtok.py
1 # Unix SMB/CIFS implementation.
2 #
3 # Copyright (C) 2017      Andreas Schneider <asn@samba.org>
4 # Copyright (C) 2018      Mathieu Parent <math.parent@gmail.com>
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 import samba.tests
21 import pypamtest
22 import os
23
24 class PamChauthtokTests(samba.tests.TestCase):
25     def test_chauthtok(self):
26         domain = os.environ["DOMAIN"]
27         username = os.environ["USERNAME"]
28         password = os.environ["PASSWORD"]
29         newpassword = os.environ["NEWPASSWORD"]
30         unix_username = "%s/%s" % (domain, username)
31         expected_rc = 0 # PAM_SUCCESS
32
33         tc = pypamtest.TestCase(pypamtest.PAMTEST_CHAUTHTOK, expected_rc)
34         try:
35             res = pypamtest.run_pamtest(unix_username, "samba", [tc], [password, newpassword, newpassword])
36         except pypamtest.PamTestError as e:
37             raise AssertionError(str(e))
38
39         self.assertTrue(res is not None)