2017-04-05 16:59:39 +03:00
# Unix SMB/CIFS implementation.
#
# Copyright (C) 2017 Andreas Schneider <asn@samba.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import samba . tests
import pypamtest
2017-06-09 15:52:59 +03:00
import os
2017-04-05 16:59:39 +03:00
2018-07-30 09:20:39 +03:00
2017-04-05 16:59:39 +03:00
class SimplePamTests ( samba . tests . TestCase ) :
def test_authenticate ( self ) :
2017-06-09 15:52:59 +03:00
domain = os . environ [ " DOMAIN " ]
username = os . environ [ " USERNAME " ]
password = os . environ [ " PASSWORD " ]
unix_username = " %s / %s " % ( domain , username )
2018-07-30 09:19:33 +03:00
expected_rc = 0 # PAM_SUCCESS
2017-04-05 16:59:39 +03:00
tc = pypamtest . TestCase ( pypamtest . PAMTEST_AUTHENTICATE , expected_rc )
2017-06-09 15:52:59 +03:00
res = pypamtest . run_pamtest ( unix_username , " samba " , [ tc ] , [ password ] )
2017-04-05 16:59:39 +03:00
2018-07-30 09:22:15 +03:00
self . assertTrue ( res is not None )
2017-04-05 16:59:39 +03:00
def test_authenticate_error ( self ) :
2017-06-09 15:52:59 +03:00
domain = os . environ [ " DOMAIN " ]
username = os . environ [ " USERNAME " ]
password = " WrongPassword "
unix_username = " %s / %s " % ( domain , username )
2018-07-30 09:19:33 +03:00
expected_rc = 7 # PAM_AUTH_ERR
2017-04-05 16:59:39 +03:00
tc = pypamtest . TestCase ( pypamtest . PAMTEST_AUTHENTICATE , expected_rc )
2017-06-09 15:52:59 +03:00
res = pypamtest . run_pamtest ( unix_username , " samba " , [ tc ] , [ password ] )
2017-04-05 16:59:39 +03:00
2018-07-30 09:22:15 +03:00
self . assertTrue ( res is not None )
2018-02-22 19:30:36 +03:00
# Authenticate again to check that we are not locked out with just one
# failed login
password = os . environ [ " PASSWORD " ]
2018-07-30 09:19:33 +03:00
expected_rc = 0 # PAM_SUCCESS
2018-02-22 19:30:36 +03:00
tc = pypamtest . TestCase ( pypamtest . PAMTEST_AUTHENTICATE , expected_rc )
res = pypamtest . run_pamtest ( unix_username , " samba " , [ tc ] , [ password ] )
2018-07-30 09:22:15 +03:00
self . assertTrue ( res is not None )