mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
samba-tool dcpromo tests: add --backend-store-size option
Add a new "samba-tool domain dcpromo" option "backend-store-size". This allows the lmdb map size to be set during a promotion, instead of hard-wiring it to 8Gb. Signed-off-by: Gary Lockyer <gary@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
97bc3db68a
commit
bdd72acd32
170
python/samba/tests/samba_tool/promote_dc_lmdb_size.py
Normal file
170
python/samba/tests/samba_tool/promote_dc_lmdb_size.py
Normal file
@ -0,0 +1,170 @@
|
||||
# Unix SMB/CIFS implementation.
|
||||
# Copyright (C) Catalyst IT Ltd. 2019
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
from samba.tests.samba_tool.base import SambaToolCmdTest
|
||||
import os
|
||||
import shutil
|
||||
|
||||
|
||||
class PromoteDcLmdbSizeTestCase(SambaToolCmdTest):
|
||||
"""Test setting of the lmdb map size during a promote dc"""
|
||||
|
||||
def setUp(self):
|
||||
super(PromoteDcLmdbSizeTestCase, self).setUp()
|
||||
self.tempsambadir = os.path.join(self.tempdir, "samba")
|
||||
os.mkdir(self.tempsambadir)
|
||||
(_, name) = os.path.split(self.tempdir)
|
||||
self.netbios_name = name
|
||||
|
||||
# join a domain as a member server
|
||||
#
|
||||
# returns the tuple (ret, stdout, stderr)
|
||||
def join_member(self):
|
||||
command = (
|
||||
"samba-tool " +
|
||||
"domain join " +
|
||||
os.environ["REALM"] + " " +
|
||||
"member " +
|
||||
("-U%s%%%s " % (os.environ["USERNAME"], os.environ["PASSWORD"])) +
|
||||
("--option=netbiosname=%s " % self.netbios_name) +
|
||||
("--targetdir=%s " % self.tempsambadir))
|
||||
return self.run_command(command)
|
||||
|
||||
#
|
||||
# Promote a member server to a domain controller
|
||||
def promote(self, size=None, role=None):
|
||||
command = (
|
||||
"samba-tool " +
|
||||
"domain dcpromo " +
|
||||
os.environ["REALM"] + " " +
|
||||
role + " " +
|
||||
("-U%s%%%s " % (os.environ["USERNAME"], os.environ["PASSWORD"])) +
|
||||
("--option=netbiosname=%s " % self.netbios_name) +
|
||||
("--targetdir=%s " % self.tempsambadir) +
|
||||
"--backend-store=mdb "
|
||||
)
|
||||
if size:
|
||||
command += ("--backend-store-size=%s" % size)
|
||||
|
||||
return self.run_command(command)
|
||||
|
||||
def is_rodc(self):
|
||||
url = "ldb://%s/private/sam.ldb" % self.tempsambadir
|
||||
samdb = self.getSamDB("-H", url)
|
||||
return samdb.am_rodc()
|
||||
|
||||
#
|
||||
# Get the lmdb map size for the specified command
|
||||
#
|
||||
# While there is a python lmdb package available we use the lmdb command
|
||||
# line utilities to avoid introducing a dependancy.
|
||||
#
|
||||
def get_lmdb_environment_size(self, path):
|
||||
(result, out, err) = self.run_command("mdb_stat -ne %s" % path)
|
||||
if result:
|
||||
self.fail("Unable to run mdb_stat\n")
|
||||
for line in out.split("\n"):
|
||||
line = line.strip()
|
||||
if line.startswith("Map size:"):
|
||||
line = line.replace(" ", "")
|
||||
(label, size) = line.split(":")
|
||||
return int(size)
|
||||
|
||||
#
|
||||
# Check the lmdb files created by join and ensure that the map size
|
||||
# has been set to size.
|
||||
#
|
||||
# Currently this is all the *.ldb files in private/sam.ldb.d
|
||||
#
|
||||
def check_lmdb_environment_sizes(self, size):
|
||||
directory = os.path.join(self.tempsambadir, "private", "sam.ldb.d")
|
||||
for name in os.listdir(directory):
|
||||
if name.endswith(".ldb"):
|
||||
path = os.path.join(directory, name)
|
||||
s = self.get_lmdb_environment_size(path)
|
||||
if s != size:
|
||||
self.fail("File %s, size=%d larger than %d" %
|
||||
(name, s, size))
|
||||
|
||||
#
|
||||
# Ensure that if --backend-store-size is not specified the default of
|
||||
# 8Gb is used
|
||||
def test_promote_dc_default(self):
|
||||
(result, out, err) = self.join_member()
|
||||
self.assertEquals(0, result)
|
||||
(result, out, err) = self.promote(role="DC")
|
||||
self.assertEquals(0, result)
|
||||
self.check_lmdb_environment_sizes(8 * 1024 * 1024 * 1024)
|
||||
self.assertFalse(self.is_rodc())
|
||||
|
||||
#
|
||||
# Ensure that if --backend-store-size is not specified the default of
|
||||
# 8Gb is used
|
||||
def test_promote_rodc_default(self):
|
||||
(result, out, err) = self.join_member()
|
||||
self.assertEquals(0, result)
|
||||
(result, out, err) = self.promote(role="RODC")
|
||||
self.assertEquals(0, result)
|
||||
self.check_lmdb_environment_sizes(8 * 1024 * 1024 * 1024)
|
||||
self.assertTrue(self.is_rodc())
|
||||
|
||||
#
|
||||
# Promote to a DC with a backend size of 96Mb
|
||||
def test_promote_dc_96Mb(self):
|
||||
(result, out, err) = self.join_member()
|
||||
self.assertEquals(0, result)
|
||||
(result, out, err) = self.promote(role="DC", size="96Mb")
|
||||
self.assertEquals(0, result)
|
||||
self.check_lmdb_environment_sizes(96 * 1024 * 1024)
|
||||
self.assertFalse(self.is_rodc())
|
||||
|
||||
#
|
||||
# Promote to an RODC with a backend size of 256Mb
|
||||
def test_promote_rodc_256Mb(self):
|
||||
(result, out, err) = self.join_member()
|
||||
self.assertEquals(0, result)
|
||||
(result, out, err) = self.promote(role="RODC", size="256Mb")
|
||||
self.assertEquals(0, result)
|
||||
self.check_lmdb_environment_sizes(256 * 1024 * 1024)
|
||||
self.assertTrue(self.is_rodc())
|
||||
|
||||
def test_no_unit_suffix(self):
|
||||
(result, out, err) = self.run_command(
|
||||
'samba-tool domain dcpromo --backend-store-size "2"')
|
||||
self.assertGreater(result, 0)
|
||||
self.assertRegexpMatches(err,
|
||||
r"--backend-store-size invalid suffix ''")
|
||||
|
||||
def test_invalid_unit_suffix(self):
|
||||
(result, out, err) = self.run_command(
|
||||
'samba-tool domain dcpromo --backend-store-size "2 cd"')
|
||||
self.assertGreater(result, 0)
|
||||
self.assertRegexpMatches(err,
|
||||
r"--backend-store-size invalid suffix 'cd'")
|
||||
|
||||
def test_non_numeric(self):
|
||||
(result, out, err) = self.run_command(
|
||||
'samba-tool domain dcpromo --backend-store-size "two Gb"')
|
||||
self.assertGreater(result, 0)
|
||||
self.assertRegexpMatches(
|
||||
err,
|
||||
r"backend-store-size option requires a numeric value, with an"
|
||||
" optional unit suffix")
|
||||
|
||||
def tearDown(self):
|
||||
super(PromoteDcLmdbSizeTestCase, self).tearDown()
|
||||
shutil.rmtree(self.tempsambadir)
|
1
selftest/knownfail.d/promote_dc_lmdb_size
Normal file
1
selftest/knownfail.d/promote_dc_lmdb_size
Normal file
@ -0,0 +1 @@
|
||||
samba.tests.samba_tool.promote_dc_lmdb_size.samba.tests.samba_tool.promote_dc_lmdb_size.PromoteDcLmdbSizeTestCase.test_promote_dc_96Mb
|
@ -649,6 +649,8 @@ planpythontestsuite("ad_dc_default",
|
||||
"samba.tests.samba_tool.join_lmdb_size")
|
||||
planpythontestsuite("ad_dc_default",
|
||||
"samba.tests.samba_tool.drs_clone_dc_data_lmdb_size")
|
||||
planpythontestsuite("ad_dc_default",
|
||||
"samba.tests.samba_tool.promote_dc_lmdb_size")
|
||||
|
||||
planpythontestsuite("none", "samba.tests.samba_tool.visualize")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user