2007-12-17 05:25:28 +03:00
# Unix SMB/CIFS implementation.
2010-11-28 05:15:36 +03:00
# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2010
2014-03-27 01:42:19 +04:00
# Copyright (C) Stefan Metzmacher 2014,2015
2010-11-28 05:15:36 +03:00
#
2007-12-17 05:25:28 +03:00
# 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.
2010-11-28 05:15:36 +03:00
#
2007-12-17 05:25:28 +03:00
# 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.
2010-11-28 05:15:36 +03:00
#
2007-12-17 05:25:28 +03:00
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
2007-12-30 03:14:15 +03:00
""" Samba Python tests. """
2007-12-17 05:25:28 +03:00
import os
2018-04-03 05:29:26 +03:00
import tempfile
2023-09-26 11:10:33 +03:00
import traceback
2021-10-22 12:40:06 +03:00
import collections
2007-12-17 05:25:28 +03:00
import ldb
import samba
2010-06-13 18:38:24 +04:00
from samba import param
2014-11-05 08:26:25 +03:00
from samba import credentials
2016-09-16 12:11:58 +03:00
from samba . credentials import Credentials
2017-03-16 06:24:20 +03:00
from samba import gensec
2010-09-22 23:52:29 +04:00
import subprocess
2015-02-04 18:40:29 +03:00
import sys
2014-12-14 22:59:13 +03:00
import unittest
2018-02-11 01:59:40 +03:00
import re
2019-06-27 07:57:22 +03:00
from enum import IntEnum , unique
2017-01-02 10:52:29 +03:00
import samba . auth
import samba . dcerpc . base
2018-03-15 02:44:30 +03:00
from random import randint
2018-10-16 23:10:10 +03:00
from random import SystemRandom
2018-10-25 03:33:02 +03:00
from contextlib import contextmanager
pytest: add file removal helpers for TestCaseInTempDir
In several places we end a test by deleting a number of files and
directories, but we do it rather haphazardly with unintentionally
differing error handling. For example, in some tests we currently have
something like:
try:
shutil.rmtree(os.path.join(self.tempdir, "a"))
os.remove(os.path.join(self.tempdir, "b"))
shutil.rmtree(os.path.join(self.tempdir, "c"))
except Exception:
pass
where if, for example, the removal of "b" fails, the removal of "c" will
not be attempted. That will result in the tearDown method raising an
exception, and we're no better off. If the above code is replaced with
self.rm_files('b')
self.rm_dirs('a', 'c')
the failure to remove 'b' will cause a test error, *unless* the failure
was due to a FileNotFoundError (a.k.a. an OSError with errno ENOENT),
in which case we ignore it, as was probably the original intention.
If on the other hand, we have
self.rm_files('b', must_exist=True)
self.rm_dirs('a', 'c')
then the FileNotFoundError causes a failure (not an error).
We take a little bit of care to stay within self.tempdir, to protect
test authors who accidentally write something like `self.rm_dirs('/')`.
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Noel Power <npower@samba.org>
2022-06-09 04:16:31 +03:00
import shutil
2018-10-16 23:10:10 +03:00
import string
2018-07-21 12:05:15 +03:00
try :
from samba . samdb import SamDB
except ImportError :
# We are built without samdb support,
# imitate it so that connect_samdb() can recover
2018-07-30 04:56:55 +03:00
def SamDB ( * args , * * kwargs ) :
return None
2018-05-10 15:14:22 +03:00
import samba . ndr
import samba . dcerpc . dcerpc
import samba . dcerpc . epmapper
2007-12-17 05:25:28 +03:00
2022-09-16 02:36:28 +03:00
from unittest import SkipTest
2011-11-17 05:30:38 +04:00
2018-10-04 06:46:34 +03:00
BINDIR = os . path . abspath ( os . path . join ( os . path . dirname ( __file__ ) ,
" ../../../../bin " ) )
2018-07-30 09:18:03 +03:00
HEXDUMP_FILTER = bytearray ( [ x if ( ( len ( repr ( chr ( x ) ) ) == 3 ) and ( x < 127 ) ) else ord ( ' . ' ) for x in range ( 256 ) ] )
2010-06-19 19:48:05 +04:00
2023-10-02 08:27:39 +03:00
LDB_ERR_LUT = { v : k for k , v in vars ( ldb ) . items ( ) if k . startswith ( ' ERR_ ' ) }
2021-10-04 02:56:42 +03:00
def ldb_err ( v ) :
if isinstance ( v , ldb . LdbError ) :
v = v . args [ 0 ]
if v in LDB_ERR_LUT :
return LDB_ERR_LUT [ v ]
try :
return f " [ { ' , ' . join ( LDB_ERR_LUT . get ( x , x ) for x in v ) } ] "
except TypeError as e :
print ( e )
return v
2020-04-20 21:00:51 +03:00
def DynamicTestCase ( cls ) :
cls . setUpDynamicTestCases ( )
return cls
2018-07-30 09:20:39 +03:00
2023-10-02 08:27:39 +03:00
2014-12-14 22:59:13 +03:00
class TestCase ( unittest . TestCase ) :
2011-01-05 03:09:25 +03:00
""" A Samba test case. """
2023-09-26 11:10:33 +03:00
# Re-implement addClassCleanup to support Python versions older than 3.8.
# Can be removed once these older Python versions are no longer needed.
if sys . version_info . major == 3 and sys . version_info . minor < 8 :
_class_cleanups = [ ]
@classmethod
def addClassCleanup ( cls , function , * args , * * kwargs ) :
cls . _class_cleanups . append ( ( function , args , kwargs ) )
@classmethod
def tearDownClass ( cls ) :
teardown_exceptions = [ ]
while cls . _class_cleanups :
function , args , kwargs = cls . _class_cleanups . pop ( )
try :
function ( * args , * * kwargs )
except Exception :
teardown_exceptions . append ( traceback . format_exc ( ) )
# ExceptionGroup would be better but requires Python 3.11
if teardown_exceptions :
raise ValueError ( " tearDownClass failed: \n \n " +
" \n " . join ( teardown_exceptions ) )
@classmethod
def setUpClass ( cls ) :
"""
Call setUpTestData , ensure tearDownClass is called on exceptions .
This is only required on Python versions older than 3.8 .
"""
try :
cls . setUpTestData ( )
except Exception :
cls . tearDownClass ( )
raise
else :
@classmethod
def setUpClass ( cls ) :
"""
setUpClass only needs to call setUpTestData .
On Python 3.8 and above unittest will always call tearDownClass ,
even if an exception was raised in setUpClass .
"""
cls . setUpTestData ( )
@classmethod
def setUpTestData ( cls ) :
""" Create class level test fixtures here. """
pass
2020-04-20 21:00:51 +03:00
@classmethod
2021-08-06 02:08:10 +03:00
def generate_dynamic_test ( cls , fnname , suffix , * args , doc = None ) :
2020-04-20 21:00:51 +03:00
"""
fnname is something like " test_dynamic_sum "
suffix is something like " 1plus2 "
argstr could be ( 1 , 2 )
This would generate a test case called
" test_dynamic_sum_1plus2(self) " that
calls
self . _test_dynamic_sum_with_args ( 1 , 2 )
"""
def fn ( self ) :
getattr ( self , " _ %s _with_args " % fnname ) ( * args )
2021-08-06 02:08:10 +03:00
fn . __doc__ = doc
2021-10-27 09:18:20 +03:00
attr = " %s _ %s " % ( fnname , suffix )
if hasattr ( cls , attr ) :
raise RuntimeError ( f " Dynamic test { attr } already exists! " )
setattr ( cls , attr , fn )
2020-04-20 21:00:51 +03:00
@classmethod
def setUpDynamicTestCases ( cls ) :
""" This can be implemented in order to call cls.generate_dynamic_test()
In order to implement autogenerated testcase permutations .
"""
msg = " %s needs setUpDynamicTestCases() if @DynamicTestCase is used! " % ( cls )
raise Exception ( msg )
2011-01-05 03:09:25 +03:00
def setUp ( self ) :
super ( TestCase , self ) . setUp ( )
test_debug_level = os . getenv ( " TEST_DEBUG_LEVEL " )
if test_debug_level is not None :
test_debug_level = int ( test_debug_level )
self . _old_debug_level = samba . get_debug_level ( )
samba . set_debug_level ( test_debug_level )
self . addCleanup ( samba . set_debug_level , test_debug_level )
2010-12-15 16:57:43 +03:00
def get_loadparm ( self ) :
return env_loadparm ( )
def get_credentials ( self ) :
return cmdline_credentials
2017-07-06 07:29:14 +03:00
def get_creds_ccache_name ( self ) :
creds = self . get_credentials ( )
ccache = creds . get_named_ccache ( self . get_loadparm ( ) )
ccache_name = ccache . get_name ( )
return ccache_name
2015-06-25 15:06:40 +03:00
def hexdump ( self , src ) :
2015-06-25 11:28:31 +03:00
N = 0
result = ' '
2020-07-04 04:47:44 +03:00
is_string = isinstance ( src , str )
2015-06-25 11:28:31 +03:00
while src :
2015-06-25 15:06:40 +03:00
ll = src [ : 8 ]
lr = src [ 8 : 16 ]
src = src [ 16 : ]
2018-05-01 21:58:36 +03:00
if is_string :
hl = ' ' . join ( [ " %02X " % ord ( x ) for x in ll ] )
hr = ' ' . join ( [ " %02X " % ord ( x ) for x in lr ] )
ll = ll . translate ( HEXDUMP_FILTER )
lr = lr . translate ( HEXDUMP_FILTER )
else :
hl = ' ' . join ( [ " %02X " % x for x in ll ] )
hr = ' ' . join ( [ " %02X " % x for x in lr ] )
ll = ll . translate ( HEXDUMP_FILTER ) . decode ( ' utf8 ' )
lr = lr . translate ( HEXDUMP_FILTER ) . decode ( ' utf8 ' )
2018-07-30 09:18:25 +03:00
result + = " [ %04X ] %-*s %-*s %s %s \n " % ( N , 8 * 3 , hl , 8 * 3 , hr , ll , lr )
2015-06-25 15:06:40 +03:00
N + = 16
2015-06-25 11:28:31 +03:00
return result
2017-03-16 06:24:20 +03:00
def insta_creds ( self , template = None , username = None , userpass = None , kerberos_state = None ) :
if template is None :
2019-04-18 04:37:27 +03:00
raise ValueError ( " you need to supply a Credentials template " )
2017-03-16 06:24:20 +03:00
2019-04-18 04:37:27 +03:00
if username is not None and userpass is None :
raise ValueError (
" you cannot set creds username without setting a password " )
2017-03-16 06:24:20 +03:00
if username is None :
assert userpass is None
username = template . get_username ( )
userpass = template . get_password ( )
2022-03-04 23:50:15 +03:00
simple_bind_dn = template . get_bind_dn ( )
2017-03-16 06:24:20 +03:00
if kerberos_state is None :
kerberos_state = template . get_kerberos_state ( )
2023-08-29 05:23:51 +03:00
# get a copy of the global creds or the passed in creds
2017-03-16 06:24:20 +03:00
c = Credentials ( )
c . set_username ( username )
c . set_password ( userpass )
c . set_domain ( template . get_domain ( ) )
c . set_realm ( template . get_realm ( ) )
c . set_workstation ( template . get_workstation ( ) )
2017-03-30 21:03:30 +03:00
c . set_gensec_features ( c . get_gensec_features ( )
| gensec . FEATURE_SEAL )
2017-03-16 06:24:20 +03:00
c . set_kerberos_state ( kerberos_state )
2022-03-04 23:50:15 +03:00
if simple_bind_dn :
c . set_bind_dn ( simple_bind_dn )
2017-03-16 06:24:20 +03:00
return c
2018-01-05 06:45:37 +03:00
def assertStringsEqual ( self , a , b , msg = None , strip = False ) :
""" Assert equality between two strings and highlight any differences.
If strip is true , leading and trailing whitespace is ignored . """
if strip :
a = a . strip ( )
b = b . strip ( )
if a != b :
sys . stderr . write ( " The strings differ %s (lengths %d vs %d ); "
" a diff follows \n "
% ( ' when stripped ' if strip else ' ' ,
len ( a ) , len ( b ) ,
2018-07-30 09:14:43 +03:00
) )
2018-01-05 06:45:37 +03:00
from difflib import unified_diff
diff = unified_diff ( a . splitlines ( True ) ,
b . splitlines ( True ) ,
' a ' , ' b ' )
for line in diff :
sys . stderr . write ( line )
self . fail ( msg )
2021-09-13 12:48:13 +03:00
def assertRaisesLdbError ( self , errcode , message , f , * args , * * kwargs ) :
""" Assert a function raises a particular LdbError. """
2021-10-24 05:18:05 +03:00
if message is None :
message = f " { f . __name__ } (* { args } , ** { kwargs } ) "
2021-09-13 12:48:13 +03:00
try :
f ( * args , * * kwargs )
except ldb . LdbError as e :
( num , msg ) = e . args
2021-10-22 12:40:06 +03:00
if isinstance ( errcode , collections . abc . Container ) :
found = num in errcode
else :
found = num == errcode
if not found :
2021-09-13 12:48:13 +03:00
lut = { v : k for k , v in vars ( ldb ) . items ( )
if k . startswith ( ' ERR_ ' ) and isinstance ( v , int ) }
2021-10-22 12:40:06 +03:00
if isinstance ( errcode , collections . abc . Container ) :
errcode_name = ' ' . join ( lut . get ( x ) for x in errcode )
else :
errcode_name = lut . get ( errcode )
self . fail ( f " { message } , expected "
f " LdbError { errcode_name } , { errcode } "
f " got { lut . get ( num ) } ( { num } ) "
f " { msg } " )
2021-09-13 12:48:13 +03:00
else :
lut = { v : k for k , v in vars ( ldb ) . items ( )
if k . startswith ( ' ERR_ ' ) and isinstance ( v , int ) }
2021-10-22 12:40:06 +03:00
if isinstance ( errcode , collections . abc . Container ) :
errcode_name = ' ' . join ( lut . get ( x ) for x in errcode )
else :
errcode_name = lut . get ( errcode )
2021-09-13 12:48:13 +03:00
self . fail ( " %s , expected "
2021-10-22 12:40:06 +03:00
" LdbError %s , ( %s ) "
2021-09-13 12:48:13 +03:00
" but we got success " % ( message ,
2021-10-22 12:40:06 +03:00
errcode_name ,
2021-09-13 12:48:13 +03:00
errcode ) )
2010-12-15 16:57:43 +03:00
2015-01-30 04:06:33 +03:00
class LdbTestCase ( TestCase ) :
2007-12-30 03:14:15 +03:00
""" Trivial test case for running tests against a LDB. """
2010-06-19 20:58:18 +04:00
2007-12-17 05:25:28 +03:00
def setUp ( self ) :
2010-06-19 20:58:18 +04:00
super ( LdbTestCase , self ) . setUp ( )
2018-04-03 05:29:26 +03:00
self . tempfile = tempfile . NamedTemporaryFile ( delete = False )
self . filename = self . tempfile . name
2007-12-17 05:25:28 +03:00
self . ldb = samba . Ldb ( self . filename )
2023-02-23 05:54:37 +03:00
def set_modules ( self , modules = None ) :
2007-12-30 03:14:15 +03:00
""" Change the modules for this Ldb. """
2023-02-23 05:54:37 +03:00
if modules is None :
modules = [ ]
2007-12-17 05:25:28 +03:00
m = ldb . Message ( )
m . dn = ldb . Dn ( self . ldb , " @MODULES " )
m [ " @LIST " ] = " , " . join ( modules )
self . ldb . add ( m )
self . ldb = samba . Ldb ( self . filename )
2010-06-19 19:48:05 +04:00
class TestCaseInTempDir ( TestCase ) :
2009-04-06 01:03:13 +04:00
2007-12-20 01:27:31 +03:00
def setUp ( self ) :
super ( TestCaseInTempDir , self ) . setUp ( )
self . tempdir = tempfile . mkdtemp ( )
2012-10-27 03:58:06 +04:00
self . addCleanup ( self . _remove_tempdir )
2007-12-20 01:27:31 +03:00
2012-10-27 03:58:06 +04:00
def _remove_tempdir ( self ) :
tests: Handle backup command exceptions as test failures, not errors
If the backup command fails (i.e. throws an exception), we want the test
to fail. This makes it easier to mark tests as 'knownfail' (because we
can't knownfail test errors).
In theory, this should just involve updating run_cmd() to catch any
exceptions from the command and then call self.fail().
However, if the backup command fails, it can leave behind files in the
targetdir. Partly this is intentional, as these files may provide clues
to users as to why the command failed. However, in selftest, it causes
the TestCaseInTempDir._remove_tempdir() assertion to fire. Because this
assert actually gets run as part of the teardown, the assertion gets
treated as an error rather than a failure (and so we can't knownfail the
backup tests). To get around this, we remove any files in the tempdir
prior to calling self.fail().
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13676
Signed-off-by: Tim Beale <timbeale@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2018-11-22 04:35:58 +03:00
# Note asserting here is treated as an error rather than a test failure
2020-02-07 01:02:38 +03:00
self . assertEqual ( [ ] , os . listdir ( self . tempdir ) )
2019-05-31 03:47:13 +03:00
os . rmdir ( self . tempdir )
2012-10-27 03:58:06 +04:00
self . tempdir = None
2007-12-20 01:27:31 +03:00
2018-10-25 03:33:02 +03:00
@contextmanager
def mktemp ( self ) :
""" Yield a temporary filename in the tempdir. """
try :
fd , fn = tempfile . mkstemp ( dir = self . tempdir )
yield fn
finally :
try :
os . close ( fd )
os . unlink ( fn )
except ( OSError , IOError ) as e :
print ( " could not remove temporary file: %s " % e ,
file = sys . stderr )
pytest: add file removal helpers for TestCaseInTempDir
In several places we end a test by deleting a number of files and
directories, but we do it rather haphazardly with unintentionally
differing error handling. For example, in some tests we currently have
something like:
try:
shutil.rmtree(os.path.join(self.tempdir, "a"))
os.remove(os.path.join(self.tempdir, "b"))
shutil.rmtree(os.path.join(self.tempdir, "c"))
except Exception:
pass
where if, for example, the removal of "b" fails, the removal of "c" will
not be attempted. That will result in the tearDown method raising an
exception, and we're no better off. If the above code is replaced with
self.rm_files('b')
self.rm_dirs('a', 'c')
the failure to remove 'b' will cause a test error, *unless* the failure
was due to a FileNotFoundError (a.k.a. an OSError with errno ENOENT),
in which case we ignore it, as was probably the original intention.
If on the other hand, we have
self.rm_files('b', must_exist=True)
self.rm_dirs('a', 'c')
then the FileNotFoundError causes a failure (not an error).
We take a little bit of care to stay within self.tempdir, to protect
test authors who accidentally write something like `self.rm_dirs('/')`.
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Noel Power <npower@samba.org>
2022-06-09 04:16:31 +03:00
def rm_files ( self , * files , allow_missing = False , _rm = os . remove ) :
""" Remove listed files from the temp directory.
The files must be true files in the directory itself , not in
sub - directories .
By default a non - existent file will cause a test failure ( or
error if used outside a test in e . g . tearDown ) , but if
allow_missing is true , the absence will be ignored .
"""
for f in files :
path = os . path . join ( self . tempdir , f )
# os.path.join will happily step out of the tempdir,
# so let's just check.
if os . path . dirname ( path ) != self . tempdir :
2023-10-02 05:06:07 +03:00
raise ValueError ( f " { path } might be outside { self . tempdir } " )
pytest: add file removal helpers for TestCaseInTempDir
In several places we end a test by deleting a number of files and
directories, but we do it rather haphazardly with unintentionally
differing error handling. For example, in some tests we currently have
something like:
try:
shutil.rmtree(os.path.join(self.tempdir, "a"))
os.remove(os.path.join(self.tempdir, "b"))
shutil.rmtree(os.path.join(self.tempdir, "c"))
except Exception:
pass
where if, for example, the removal of "b" fails, the removal of "c" will
not be attempted. That will result in the tearDown method raising an
exception, and we're no better off. If the above code is replaced with
self.rm_files('b')
self.rm_dirs('a', 'c')
the failure to remove 'b' will cause a test error, *unless* the failure
was due to a FileNotFoundError (a.k.a. an OSError with errno ENOENT),
in which case we ignore it, as was probably the original intention.
If on the other hand, we have
self.rm_files('b', must_exist=True)
self.rm_dirs('a', 'c')
then the FileNotFoundError causes a failure (not an error).
We take a little bit of care to stay within self.tempdir, to protect
test authors who accidentally write something like `self.rm_dirs('/')`.
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Noel Power <npower@samba.org>
2022-06-09 04:16:31 +03:00
try :
_rm ( path )
except FileNotFoundError as e :
if not allow_missing :
raise AssertionError ( f " { f } not in { self . tempdir } : { e } " )
print ( f " { f } not in { self . tempdir } " )
def rm_dirs ( self , * dirs , allow_missing = False ) :
""" Remove listed directories from temp directory.
This works like rm_files , but only removes directories ,
including their contents .
"""
self . rm_files ( * dirs , allow_missing = allow_missing , _rm = shutil . rmtree )
2007-12-20 01:27:31 +03:00
2010-06-13 18:38:24 +04:00
def env_loadparm ( ) :
lp = param . LoadParm ( )
try :
lp . load ( os . environ [ " SMB_CONF_PATH " ] )
except KeyError :
2014-12-02 07:04:40 +03:00
raise KeyError ( " SMB_CONF_PATH not set " )
2010-06-13 18:38:24 +04:00
return lp
2010-11-28 05:34:47 +03:00
2016-09-20 22:06:39 +03:00
def env_get_var_value ( var_name , allow_missing = False ) :
2010-09-29 15:53:12 +04:00
""" Returns value for variable in os.environ
2022-11-09 14:35:59 +03:00
Function throws AssertionError if variable is undefined .
2010-09-29 15:53:12 +04:00
Unit - test based python tests require certain input params
to be set in environment , otherwise they can ' t be run
"""
2016-09-20 22:06:39 +03:00
if allow_missing :
if var_name not in os . environ . keys ( ) :
return None
2010-09-29 15:53:12 +04:00
assert var_name in os . environ . keys ( ) , " Please supply %s in environment " % var_name
return os . environ [ var_name ]
2008-04-14 21:13:41 +04:00
cmdline_credentials = None
2008-04-14 20:30:07 +04:00
2018-07-30 09:20:39 +03:00
2010-06-19 19:48:05 +04:00
class RpcInterfaceTestCase ( TestCase ) :
2010-12-15 16:57:43 +03:00
""" DCE/RPC Test case. """
2009-04-06 01:17:43 +04:00
2012-01-09 14:55:08 +04:00
class BlackboxProcessError ( Exception ) :
""" This is raised when check_output() process returns a non-zero exit status
Exception instance should contain the exact exit code ( S . returncode ) ,
command line ( S . cmd ) , process output ( S . stdout ) and process error stream
( S . stderr )
"""
2018-02-22 04:19:11 +03:00
def __init__ ( self , returncode , cmd , stdout , stderr , msg = None ) :
2012-01-09 14:55:08 +04:00
self . returncode = returncode
2018-10-04 06:46:34 +03:00
if isinstance ( cmd , list ) :
self . cmd = ' ' . join ( cmd )
self . shell = False
else :
self . cmd = cmd
self . shell = True
2011-02-20 05:15:08 +03:00
self . stdout = stdout
self . stderr = stderr
2018-02-22 04:19:11 +03:00
self . msg = msg
2012-01-09 14:55:08 +04:00
2011-02-20 05:15:08 +03:00
def __str__ ( self ) :
2018-10-04 06:46:34 +03:00
s = ( " Command ' %s ' ; shell %s ; exit status %d ; "
" stdout: ' %s ' ; stderr: ' %s ' " %
( self . cmd , self . shell , self . returncode , self . stdout , self . stderr ) )
2018-02-22 04:19:11 +03:00
if self . msg is not None :
s = " %s ; message: %s " % ( s , self . msg )
return s
2011-02-20 05:15:08 +03:00
2018-07-30 09:20:39 +03:00
2015-08-17 06:33:31 +03:00
class BlackboxTestCase ( TestCaseInTempDir ) :
2010-09-22 23:52:29 +04:00
""" Base test case for blackbox tests. """
2023-06-15 01:49:32 +03:00
@staticmethod
def _make_cmdline ( line ) :
2018-10-04 06:46:34 +03:00
""" Expand the called script into a fully resolved path in the bin
directory . """
if isinstance ( line , list ) :
parts = line
else :
parts = line . split ( " " , 1 )
cmd = parts [ 0 ]
exe = os . path . join ( BINDIR , cmd )
2018-11-19 12:39:06 +03:00
python_cmds = [ " samba-tool " ,
2023-10-02 08:27:39 +03:00
" samba_dnsupdate " ,
" samba_upgradedns " ,
" script/traffic_replay " ,
" script/traffic_learner " ]
2018-11-19 12:39:06 +03:00
2018-10-04 06:46:34 +03:00
if os . path . exists ( exe ) :
parts [ 0 ] = exe
2018-11-19 12:39:06 +03:00
if cmd in python_cmds and os . getenv ( " PYTHON " , None ) :
parts . insert ( 0 , os . environ [ " PYTHON " ] )
2018-10-04 06:46:34 +03:00
if not isinstance ( line , list ) :
line = " " . join ( parts )
2011-02-09 04:40:17 +03:00
return line
2018-02-22 04:19:11 +03:00
def check_run ( self , line , msg = None ) :
self . check_exit_code ( line , 0 , msg = msg )
2017-08-16 04:52:25 +03:00
2018-02-22 04:19:11 +03:00
def check_exit_code ( self , line , expected , msg = None ) :
2011-02-09 04:40:17 +03:00
line = self . _make_cmdline ( line )
2018-10-04 06:46:34 +03:00
use_shell = not isinstance ( line , list )
2017-08-16 04:52:25 +03:00
p = subprocess . Popen ( line ,
stdout = subprocess . PIPE ,
stderr = subprocess . PIPE ,
2018-10-04 06:46:34 +03:00
shell = use_shell )
2017-09-15 07:13:26 +03:00
stdoutdata , stderrdata = p . communicate ( )
retcode = p . returncode
2017-08-16 04:52:25 +03:00
if retcode != expected :
2018-10-24 07:49:00 +03:00
if msg is None :
msg = " expected return code %s ; got %s " % ( expected , retcode )
2017-08-16 04:52:25 +03:00
raise BlackboxProcessError ( retcode ,
line ,
2017-09-15 07:13:26 +03:00
stdoutdata ,
2018-02-22 04:19:11 +03:00
stderrdata ,
msg )
2019-11-20 00:55:18 +03:00
return stdoutdata
2010-09-29 03:58:23 +04:00
2011-02-09 04:01:16 +03:00
def check_output ( self , line ) :
2018-10-04 06:46:34 +03:00
use_shell = not isinstance ( line , list )
2011-02-09 04:40:17 +03:00
line = self . _make_cmdline ( line )
2018-10-04 06:46:34 +03:00
p = subprocess . Popen ( line , stdout = subprocess . PIPE , stderr = subprocess . PIPE ,
shell = use_shell , close_fds = True )
2017-09-15 07:13:26 +03:00
stdoutdata , stderrdata = p . communicate ( )
retcode = p . returncode
2011-02-09 04:01:16 +03:00
if retcode :
2017-09-15 07:13:26 +03:00
raise BlackboxProcessError ( retcode , line , stdoutdata , stderrdata )
return stdoutdata
2010-09-29 03:58:23 +04:00
2019-06-25 07:14:34 +03:00
#
# Run a command without checking the return code, returns the tuple
# (ret, stdout, stderr)
# where ret is the return code
# stdout is a string containing the commands stdout
# stderr is a string containing the commands stderr
2023-06-15 01:49:32 +03:00
@classmethod
def run_command ( cls , line ) :
line = cls . _make_cmdline ( line )
2019-06-25 07:14:34 +03:00
use_shell = not isinstance ( line , list )
p = subprocess . Popen ( line ,
stdout = subprocess . PIPE ,
stderr = subprocess . PIPE ,
shell = use_shell )
stdoutdata , stderrdata = p . communicate ( )
retcode = p . returncode
return ( retcode , stdoutdata . decode ( ' UTF8 ' ) , stderrdata . decode ( ' UTF8 ' ) )
2018-10-16 23:10:10 +03:00
# Generate a random password that can be safely passed on the command line
# i.e. it does not contain any shell meta characters.
def random_password ( self , count = 32 ) :
password = SystemRandom ( ) . choice ( string . ascii_uppercase )
password + = SystemRandom ( ) . choice ( string . digits )
password + = SystemRandom ( ) . choice ( string . ascii_lowercase )
password + = ' ' . join ( SystemRandom ( ) . choice ( string . ascii_uppercase +
2023-10-02 08:27:39 +03:00
string . ascii_lowercase +
string . digits ) for x in range ( count - 3 ) )
2018-10-16 23:10:10 +03:00
return password
2014-10-13 08:11:22 +04:00
2010-11-28 05:15:36 +03:00
def connect_samdb ( samdb_url , lp = None , session_info = None , credentials = None ,
2014-10-13 08:11:22 +04:00
flags = 0 , ldb_options = None , ldap_only = False , global_schema = True ) :
2010-11-28 05:15:36 +03:00
""" Create SamDB instance and connects to samdb_url database.
2010-09-29 03:58:23 +04:00
: param samdb_url : Url for database to connect to .
: param lp : Optional loadparm object
: param session_info : Optional session information
: param credentials : Optional credentials , defaults to anonymous .
: param flags : Optional LDB flags
: param ldap_only : If set , only remote LDAP connection will be created .
2014-10-13 08:11:22 +04:00
: param global_schema : Whether to use global schema .
2010-09-29 03:58:23 +04:00
Added value for tests is that we have a shorthand function
to make proper URL for ldb . connect ( ) while using default
parameters for connection based on test environment
"""
2018-07-30 09:22:34 +03:00
if " :// " not in samdb_url :
2010-09-29 03:58:23 +04:00
if not ldap_only and os . path . isfile ( samdb_url ) :
samdb_url = " tdb:// %s " % samdb_url
else :
samdb_url = " ldap:// %s " % samdb_url
# use 'paged_search' module when connecting remotely
if samdb_url . startswith ( " ldap:// " ) :
ldb_options = [ " modules:paged_searches " ]
2010-11-28 05:15:36 +03:00
elif ldap_only :
raise AssertionError ( " Trying to connect to %s while remote "
" connection is required " % samdb_url )
2010-09-29 03:58:23 +04:00
# set defaults for test environment
2010-11-28 05:15:36 +03:00
if lp is None :
lp = env_loadparm ( )
if session_info is None :
session_info = samba . auth . system_session ( lp )
if credentials is None :
credentials = cmdline_credentials
2010-09-29 03:58:23 +04:00
return SamDB ( url = samdb_url ,
lp = lp ,
session_info = session_info ,
credentials = credentials ,
flags = flags ,
2014-10-13 08:11:22 +04:00
options = ldb_options ,
global_schema = global_schema )
2010-11-22 16:03:59 +03:00
2010-11-28 05:15:36 +03:00
def connect_samdb_ex ( samdb_url , lp = None , session_info = None , credentials = None ,
flags = 0 , ldb_options = None , ldap_only = False ) :
2010-11-22 16:03:59 +03:00
""" Connects to samdb_url database
: param samdb_url : Url for database to connect to .
: param lp : Optional loadparm object
: param session_info : Optional session information
: param credentials : Optional credentials , defaults to anonymous .
: param flags : Optional LDB flags
: param ldap_only : If set , only remote LDAP connection will be created .
: return : ( sam_db_connection , rootDse_record ) tuple
"""
2010-11-28 05:15:36 +03:00
sam_db = connect_samdb ( samdb_url , lp , session_info , credentials ,
2010-11-22 16:03:59 +03:00
flags , ldb_options , ldap_only )
# fetch RootDse
2010-11-28 05:15:36 +03:00
res = sam_db . search ( base = " " , expression = " " , scope = ldb . SCOPE_BASE ,
attrs = [ " * " ] )
2010-11-22 16:03:59 +03:00
return ( sam_db , res [ 0 ] )
2010-11-24 18:47:27 +03:00
2010-11-28 05:15:36 +03:00
2014-11-05 08:26:25 +03:00
def connect_samdb_env ( env_url , env_username , env_password , lp = None ) :
""" Connect to SamDB by getting URL and Credentials from environment
: param env_url : Environment variable name to get lsb url from
: param env_username : Username environment variable
: param env_password : Password environment variable
: return : sam_db_connection
"""
samdb_url = env_get_var_value ( env_url )
creds = credentials . Credentials ( )
if lp is None :
# guess Credentials parameters here. Otherwise workstation
2023-08-29 05:23:51 +03:00
# and domain fields are NULL and gencache code segfaults
2014-11-05 08:26:25 +03:00
lp = param . LoadParm ( )
creds . guess ( lp )
creds . set_username ( env_get_var_value ( env_username ) )
creds . set_password ( env_get_var_value ( env_password ) )
return connect_samdb ( samdb_url , credentials = creds , lp = lp )
2017-06-07 08:44:25 +03:00
def delete_force ( samdb , dn , * * kwargs ) :
2010-11-24 18:47:27 +03:00
try :
2017-06-07 08:44:25 +03:00
samdb . delete ( dn , * * kwargs )
2016-12-13 13:26:53 +03:00
except ldb . LdbError as error :
( num , errstr ) = error . args
2014-11-02 19:11:20 +03:00
assert num == ldb . ERR_NO_SUCH_OBJECT , " ldb.delete() failed: %s " % errstr
2018-03-15 02:44:30 +03:00
2018-07-30 09:20:39 +03:00
2018-03-15 02:44:30 +03:00
def create_test_ou ( samdb , name ) :
""" Creates a unique OU for the test """
# Add some randomness to the test OU. Replication between the testenvs is
# constantly happening in the background. Deletion of the last test's
# objects can be slow to replicate out. So the OU created by a previous
# testenv may still exist at the point that tests start on another testenv.
rand = randint ( 1 , 10000000 )
2018-07-30 09:18:03 +03:00
dn = ldb . Dn ( samdb , " OU= %s %d , %s " % ( name , rand , samdb . get_default_basedn ( ) ) )
2018-07-30 09:16:43 +03:00
samdb . add ( { " dn " : dn , " objectclass " : " organizationalUnit " } )
2018-03-15 02:44:30 +03:00
return dn
2019-06-27 07:57:22 +03:00
@unique
class OptState ( IntEnum ) :
NOOPT = 0
HYPHEN1 = 1
HYPHEN2 = 2
NAME = 3
def parse_help_consistency ( out ,
options_start = None ,
options_end = None ,
optmap = None ,
max_leading_spaces = 10 ) :
if options_start is None :
opt_lines = [ ]
else :
opt_lines = None
for raw_line in out . split ( ' \n ' ) :
line = raw_line . lstrip ( )
if line == ' ' :
continue
if opt_lines is None :
if line == options_start :
opt_lines = [ ]
else :
continue
if len ( line ) < len ( raw_line ) - max_leading_spaces :
# for the case where we have:
#
# --foo frobnicate or barlify depending on
# --bar option.
#
# where we want to ignore the --bar.
continue
if line [ 0 ] == ' - ' :
opt_lines . append ( line )
if line == options_end :
break
if opt_lines is None :
# No --help options is not an error in *this* test.
return
is_longname_char = re . compile ( r ' ^[ \ w-]$ ' ) . match
for line in opt_lines :
state = OptState . NOOPT
name = None
prev = ' '
for c in line :
if state == OptState . NOOPT :
2023-10-02 08:27:39 +03:00
if c == ' - ' and prev . isspace ( ) :
2019-06-27 07:57:22 +03:00
state = OptState . HYPHEN1
prev = c
continue
if state == OptState . HYPHEN1 :
if c . isalnum ( ) :
name = ' - ' + c
state = OptState . NAME
elif c == ' - ' :
state = OptState . HYPHEN2
continue
if state == OptState . HYPHEN2 :
if c . isalnum ( ) :
name = ' -- ' + c
state = OptState . NAME
2023-10-02 08:27:39 +03:00
else : # WTF, perhaps '--' ending option list.
2019-06-27 07:57:22 +03:00
state = OptState . NOOPT
prev = c
continue
if state == OptState . NAME :
if is_longname_char ( c ) :
name + = c
else :
optmap . setdefault ( name , [ ] ) . append ( line )
state = OptState . NOOPT
prev = c
if state == OptState . NAME :
optmap . setdefault ( name , [ ] ) . append ( line )
def check_help_consistency ( out ,
options_start = None ,
options_end = None ) :
""" Ensure that options are not repeated and redefined in --help
output .
Returns None if everything is OK , otherwise a string indicating
the problems .
If options_start and / or options_end are provided , only the bit in
the output between these two lines is considered . For example ,
with samba - tool ,
options_start = ' Options: ' , options_end = ' Available subcommands: '
will prevent the test looking at the preamble which may contain
examples using options .
"""
# Silly test, you might think, but this happens
optmap = { }
parse_help_consistency ( out ,
options_start ,
options_end ,
optmap )
errors = [ ]
for k , values in sorted ( optmap . items ( ) ) :
if len ( values ) > 1 :
for v in values :
errors . append ( " %s : %s " % ( k , v ) )
if errors :
return " \n " . join ( errors )
2023-07-07 07:12:19 +03:00
def get_env_dir ( key ) :
""" A helper to pull a directory name from the environment, used in
some tests that optionally write e . g . fuzz seeds into a directory
2023-08-29 05:23:51 +03:00
named in an environment variable .
2023-07-07 07:12:19 +03:00
"""
dir = os . environ . get ( key )
if dir is None :
return None
if not os . path . isdir ( dir ) :
raise ValueError (
f " { key } should name an existing directory (got ' { dir } ' ) " )
return dir