mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
samba-tool: Test gpo Security set command
Signed-off-by: David Mulder <dmulder@suse.com> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
parent
f509550f87
commit
5b49e0ac71
@ -1880,6 +1880,34 @@ class cmd_sudoers(SuperCommand):
|
|||||||
subcommands["list"] = cmd_list_sudoers()
|
subcommands["list"] = cmd_list_sudoers()
|
||||||
subcommands["remove"] = cmd_remove_sudoers()
|
subcommands["remove"] = cmd_remove_sudoers()
|
||||||
|
|
||||||
|
class cmd_set_security(Command):
|
||||||
|
"""Set Samba Security Group Policy to the sysvol
|
||||||
|
"""
|
||||||
|
|
||||||
|
synopsis = "%prog <gpo> [options]"
|
||||||
|
|
||||||
|
takes_optiongroups = {
|
||||||
|
"sambaopts": options.SambaOptions,
|
||||||
|
"versionopts": options.VersionOptions,
|
||||||
|
"credopts": options.CredentialsOptions,
|
||||||
|
}
|
||||||
|
|
||||||
|
takes_options = [
|
||||||
|
Option("-H", "--URL", help="LDB URL for database or target server", type=str,
|
||||||
|
metavar="URL", dest="H"),
|
||||||
|
]
|
||||||
|
|
||||||
|
takes_args = ["gpo", "policy", "value?"]
|
||||||
|
|
||||||
|
def run(self, gpo, policy, value=None, H=None, sambaopts=None,
|
||||||
|
credopts=None, versionopts=None):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class cmd_security(SuperCommand):
|
||||||
|
"""Manage Security Group Policy Objects"""
|
||||||
|
subcommands = {}
|
||||||
|
subcommands["set"] = cmd_set_security()
|
||||||
|
|
||||||
class cmd_manage(SuperCommand):
|
class cmd_manage(SuperCommand):
|
||||||
"""Manage Group Policy Objects"""
|
"""Manage Group Policy Objects"""
|
||||||
subcommands = {}
|
subcommands = {}
|
||||||
|
@ -546,6 +546,44 @@ class GpoCmdTestCase(SambaToolCmdTest):
|
|||||||
'Filling PolicyDefinitions failed')
|
'Filling PolicyDefinitions failed')
|
||||||
shutil.rmtree(admx_path)
|
shutil.rmtree(admx_path)
|
||||||
|
|
||||||
|
def test_security_set(self):
|
||||||
|
lp = LoadParm()
|
||||||
|
lp.load(os.environ['SERVERCONFFILE'])
|
||||||
|
local_path = lp.get('path', 'sysvol')
|
||||||
|
inf_pol = os.path.join(local_path, lp.get('realm').lower(), 'Policies',
|
||||||
|
self.gpo_guid, 'Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf')
|
||||||
|
|
||||||
|
(result, out, err) = self.runsublevelcmd("gpo", ("manage", "security",
|
||||||
|
"set"), self.gpo_guid,
|
||||||
|
'MaxTicketAge', '10',
|
||||||
|
"-H", "ldap://%s" %
|
||||||
|
os.environ["SERVER"],
|
||||||
|
"-U%s%%%s" %
|
||||||
|
(os.environ["USERNAME"],
|
||||||
|
os.environ["PASSWORD"]))
|
||||||
|
self.assertCmdSuccess(result, out, err,
|
||||||
|
'Failed to set MaxTicketAge')
|
||||||
|
self.assertTrue(os.path.exists(inf_pol),
|
||||||
|
'%s was not created' % inf_pol)
|
||||||
|
inf_pol_contents = open(inf_pol, 'r').read()
|
||||||
|
self.assertIn('MaxTicketAge = 10', inf_pol_contents,
|
||||||
|
'The test entry was not found!')
|
||||||
|
|
||||||
|
# Ensure an empty set command deletes the entry
|
||||||
|
(result, out, err) = self.runsublevelcmd("gpo", ("manage", "security",
|
||||||
|
"set"), self.gpo_guid,
|
||||||
|
'MaxTicketAge',
|
||||||
|
"-H", "ldap://%s" %
|
||||||
|
os.environ["SERVER"],
|
||||||
|
"-U%s%%%s" %
|
||||||
|
(os.environ["USERNAME"],
|
||||||
|
os.environ["PASSWORD"]))
|
||||||
|
self.assertCmdSuccess(result, out, err,
|
||||||
|
'Failed to unset MaxTicketAge')
|
||||||
|
inf_pol_contents = open(inf_pol, 'r').read()
|
||||||
|
self.assertNotIn('MaxTicketAge = 10', inf_pol_contents,
|
||||||
|
'The test entry was still found!')
|
||||||
|
|
||||||
def test_sudoers_remove(self):
|
def test_sudoers_remove(self):
|
||||||
lp = LoadParm()
|
lp = LoadParm()
|
||||||
lp.load(os.environ['SERVERCONFFILE'])
|
lp.load(os.environ['SERVERCONFFILE'])
|
||||||
|
1
selftest/knownfail.d/gpo
Normal file
1
selftest/knownfail.d/gpo
Normal file
@ -0,0 +1 @@
|
|||||||
|
^samba.tests.samba_tool.gpo.samba.tests.samba_tool.gpo.GpoCmdTestCase.test_security_set
|
Loading…
x
Reference in New Issue
Block a user