c2e069d2b6197cbe60b7dcc160bf69770d5e6eba
[metze/samba/wip.git] / source4 / scripting / python / samba / tests / samba_tool / gpo.py
1 # Unix SMB/CIFS implementation.
2 # Copyright (C) Andrew Bartlett 2012
3 #
4 # based on time.py:
5 # Copyright (C) Sean Dague <sdague@linux.vnet.ibm.com> 2011
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 import os
22 from samba.tests.samba_tool.base import SambaToolCmdTest
23
24 class GpoCmdTestCase(SambaToolCmdTest):
25     """Tests for samba-tool time subcommands"""
26
27     gpo_name = "testgpo"
28
29     def test_gpo_list(self):
30         """Run gpo list against the server and make sure it looks accurate"""
31         (result, out, err) = self.runsubcmd("gpo", "listall", "-H", "ldap://%s" % os.environ["SERVER"])
32         self.assertCmdSuccess(result, "Ensuring gpo listall ran successfully")
33
34     def test_fetchfail(self):
35         """Run against a non-existent GPO, and make sure it fails (this hard-coded UUID is very unlikely to exist"""
36         (result, out, err) = self.runsubcmd("gpo", "fetch", "c25cac17-a02a-4151-835d-fae17446ee43", "-H", "ldap://%s" %
37 os.environ["SERVER"])
38         self.assertEquals(result, -1, "check for result code")
39
40     def test_fetch(self):
41         """Run against a real GPO, and make sure it passes"""
42         (result, out, err) = self.runsubcmd("gpo", "fetch", self.gpo_guid, "-H", "ldap://%s" % os.environ["SERVER"], "--tmpdir", os.environ['SELFTEST_PREFIX'])
43         self.assertCmdSuccess(result, "Ensuring gpo fetched successfully")
44
45     def setUp(self):
46         """set up a temporary GPO to work with"""
47         super(GpoCmdTestCase, self).setUp()
48         (result, out, err) = self.runsubcmd("gpo", "create", self.gpo_name, "-H", "ldap://%s" % os.environ["SERVER"], "-U%s%%%s" % (os.environ["USERNAME"], os.environ["PASSWORD"]))
49         self.assertCmdSuccess(result, "Ensuring gpo created successfully")
50         try:
51             self.gpo_guid = "{%s}" % out.split("{")[1].split("}")[0]
52         except IndexError:
53             self.fail("Failed to find GUID in output: %s" % out)
54
55     def tearDown(self):
56         """remove the temporary GPO to work with"""
57         (result, out, err) = self.runsubcmd("gpo", "del", self.gpo_guid, "-H", "ldap://%s" % os.environ["SERVER"], "-U%s%%%s" % (os.environ["USERNAME"], os.environ["PASSWORD"]))
58         self.assertCmdSuccess(result, "Ensuring gpo deleted successfully")
59         super(GpoCmdTestCase, self).tearDown()