summaryrefslogtreecommitdiff
path: root/source4/torture/drs
diff options
context:
space:
mode:
authorKamen Mazdrashki <kamenim@samba.org>2011-02-18 03:25:20 +0200
committerKamen Mazdrashki <kamenim@samba.org>2011-02-20 23:13:09 +0200
commit75856d53cb0d733c4df3a58708eb9f272260c176 (patch)
treedc9be0271003f65043a4ee26a0fe07632e59796b /source4/torture/drs
parent60bb40cd25bc8fd037f6a5e29e6fa3d62a88533e (diff)
downloadsamba-75856d53cb0d733c4df3a58708eb9f272260c176.tar.gz
samba-75856d53cb0d733c4df3a58708eb9f272260c176.tar.bz2
samba-75856d53cb0d733c4df3a58708eb9f272260c176.zip
s4/drs-tests: Inherit DrsReplSchemaTestCase from DrsBaseTestCase
and remove duplicated functionality
Diffstat (limited to 'source4/torture/drs')
-rw-r--r--source4/torture/drs/python/repl_schema.py47
1 files changed, 2 insertions, 45 deletions
diff --git a/source4/torture/drs/python/repl_schema.py b/source4/torture/drs/python/repl_schema.py
index db14c37adf..4a8a5be0ec 100644
--- a/source4/torture/drs/python/repl_schema.py
+++ b/source4/torture/drs/python/repl_schema.py
@@ -46,10 +46,10 @@ from ldb import (
FLAG_MOD_REPLACE,
)
-import samba.tests
+import drs_base
-class DrsReplSchemaTestCase(samba.tests.TestCase):
+class DrsReplSchemaTestCase(drs_base.DrsBaseTestCase):
# prefix for all objects created
obj_prefix = None
@@ -59,57 +59,14 @@ class DrsReplSchemaTestCase(samba.tests.TestCase):
def setUp(self):
super(DrsReplSchemaTestCase, self).setUp()
- # connect to DCs
- url_dc = samba.tests.env_get_var_value("DC1")
- (self.ldb_dc1, self.info_dc1) = samba.tests.connect_samdb_ex(url_dc,
- ldap_only=True)
- url_dc = samba.tests.env_get_var_value("DC2")
- (self.ldb_dc2, self.info_dc2) = samba.tests.connect_samdb_ex(url_dc,
- ldap_only=True)
-
# initialize objects prefix if not done yet
if self.obj_prefix is None:
t = time.strftime("%s", time.gmtime())
DrsReplSchemaTestCase.obj_prefix = "DrsReplSchema-%s" % t
- # cache some of RootDSE props
- self.schema_dn = self.info_dc1["schemaNamingContext"][0]
- self.domain_dn = self.info_dc1["defaultNamingContext"][0]
- self.config_dn = self.info_dc1["configurationNamingContext"][0]
- self.forest_level = int(self.info_dc1["forestFunctionality"][0])
-
- # we will need DCs DNS names for 'samba-tool drs' command
- self.dnsname_dc1 = self.info_dc1["dnsHostName"][0]
- self.dnsname_dc2 = self.info_dc2["dnsHostName"][0]
-
def tearDown(self):
super(DrsReplSchemaTestCase, self).tearDown()
- def _net_drs_replicate(self, DC, fromDC, nc_dn):
- """Triggers replication cycle on 'DC' to
- replicate from 'fromDC'. Naming context to
- be replicated is 'nc_dn' dn"""
- # find out where is net command
- samba_tool_cmd = os.path.abspath("./bin/samba-tool")
- # make command line credentials string
- creds = self.get_credentials()
- cmd_line_auth = "-U%s/%s%%%s" % (creds.get_domain(),
- creds.get_username(), creds.get_password())
- # bin/samba-tool drs replicate <Dest_DC_NAME> <Src_DC_NAME> <Naming Context>
- cmd_line = "%s drs replicate %s %s %s %s" % (samba_tool_cmd, DC, fromDC,
- nc_dn, cmd_line_auth)
- ret = os.system(cmd_line)
- self.assertEquals(ret, 0, "Replicating %s from %s has failed!" % (DC, fromDC))
-
- def _GUID_string(self, guid):
- return self.ldb_dc1.schema_format_value("objectGUID", guid)
-
- def _ldap_schemaUpdateNow(self, sam_db):
- rec = {"dn": "",
- "schemaUpdateNow": "1"}
- m = Message.from_dict(sam_db, rec, FLAG_MOD_REPLACE)
- sam_db.modify(m)
-
def _make_obj_names(self, base_name):
'''Try to create a unique name for an object
that is to be added to schema'''