mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
python/samba/tests: add test cases for s3/registry init funcs
A previous change added smbconf initialization functions that allow access to the registry back-end. Add some simple tests cases that exercise these new functions. Signed-off-by: John Mulligan <jmulligan@redhat.com> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
parent
733ac02b29
commit
67807a642a
@ -20,11 +20,13 @@
|
|||||||
Tests for samba.smbconf module
|
Tests for samba.smbconf module
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from samba.samba3 import param as s3param
|
||||||
import samba.tests
|
import samba.tests
|
||||||
|
|
||||||
|
|
||||||
class SMBConfTests(samba.tests.TestCase):
|
class SMBConfTests(samba.tests.TestCase):
|
||||||
_smbconf = None
|
_smbconf = None
|
||||||
|
_s3smbconf = None
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def smbconf(self):
|
def smbconf(self):
|
||||||
@ -39,10 +41,30 @@ class SMBConfTests(samba.tests.TestCase):
|
|||||||
self._smbconf = samba.smbconf
|
self._smbconf = samba.smbconf
|
||||||
return self._smbconf
|
return self._smbconf
|
||||||
|
|
||||||
|
@property
|
||||||
|
def s3smbconf(self):
|
||||||
|
if self._s3smbconf is not None:
|
||||||
|
return self._s3smbconf
|
||||||
|
|
||||||
|
import samba.samba3.smbconf
|
||||||
|
|
||||||
|
self._s3smbconf = samba.samba3.smbconf
|
||||||
|
return self._s3smbconf
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def example_conf_default(self):
|
def example_conf_default(self):
|
||||||
return "./testdata/samba3/smb.conf"
|
return "./testdata/samba3/smb.conf"
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super().setUp()
|
||||||
|
# fetch the configuration in the same style as other test suites
|
||||||
|
self.lp_ctx = samba.tests.env_loadparm()
|
||||||
|
# apply the configuration to the samba3 configuration
|
||||||
|
# (because there are two... and they're independent!)
|
||||||
|
# this is needed to make use of the registry
|
||||||
|
s3_lp = s3param.get_context()
|
||||||
|
s3_lp.load(self.lp_ctx.configfile)
|
||||||
|
|
||||||
def test_uninitalized_smbconf(self):
|
def test_uninitalized_smbconf(self):
|
||||||
sconf = self.smbconf.SMBConf()
|
sconf = self.smbconf.SMBConf()
|
||||||
self.assertRaises(RuntimeError, sconf.requires_messaging)
|
self.assertRaises(RuntimeError, sconf.requires_messaging)
|
||||||
@ -95,6 +117,18 @@ class SMBConfTests(samba.tests.TestCase):
|
|||||||
services[1], ("cd1", [("path", "/mnt/cd1"), ("public", "yes")])
|
services[1], ("cd1", [("path", "/mnt/cd1"), ("public", "yes")])
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_init_reg(self):
|
||||||
|
sconf = self.s3smbconf.init_reg(None)
|
||||||
|
self.assertTrue(sconf.is_writeable())
|
||||||
|
|
||||||
|
def test_init_str_reg(self):
|
||||||
|
sconf = self.s3smbconf.init("registry:")
|
||||||
|
self.assertTrue(sconf.is_writeable())
|
||||||
|
|
||||||
|
def test_init_str_file(self):
|
||||||
|
sconf = self.s3smbconf.init(f"file:{self.example_conf_default}")
|
||||||
|
self.assertFalse(sconf.is_writeable())
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
import unittest
|
import unittest
|
||||||
|
Loading…
Reference in New Issue
Block a user