1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-21 12:59:09 +03:00

s4 python: Update unit tests related to create secrets

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
This commit is contained in:
Matthieu Patou
2010-05-07 04:22:36 +04:00
committed by Jelmer Vernooij
parent 9c808c47fc
commit 8ff65b0136

View File

@ -27,6 +27,19 @@ def setup_path(file):
return os.path.join(setup_dir, file)
def create_dummy_secretsdb(path, lp=None):
"""Create a dummy secrets database for use in tests.
:param path: Path to store the secrets db
:param lp: Optional loadparm context. A simple one will
be generated if not specified.
"""
if lp is None:
lp = env_loadparm()
secrets_ldb = setup_secretsdb(path, setup_path, None, None, lp=lp)
secrets_ldb.transaction_commit()
return secrets_ldb
class ProvisionTestCase(samba.tests.TestCaseInTempDir):
"""Some simple tests for individual functions in the provisioning code.
"""