r26570: - Trim size of the swig-generated Python bindings by removing a bunch of...
[Samba.git] / source4 / lib / registry / tests / bindings.py
blob906deed7e94b22ca3b4b2a870fd0d6a911f6c6b9
1 #!/usr/bin/python
3 # Unix SMB/CIFS implementation.
4 # Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 import os
21 import unittest
22 import registry
23 import samba.tests
25 class HelperTests(unittest.TestCase):
26 def test_predef_to_name(self):
27 self.assertEquals("HKEY_LOCAL_MACHINE",
28 registry.reg_get_predef_name(0x80000002))
30 def test_str_regtype(self):
31 self.assertEquals("REG_DWORD", registry.str_regtype(4))
35 class HiveTests(samba.tests.TestCaseInTempDir):
36 def setUp(self):
37 super(HiveTests, self).setUp()
38 self.hive = registry.open_ldb(os.path.join(self.tempdir, "ldb_new.ldb"))
40 def test_ldb_new(self):
41 self.assertTrue(self.hive is not None)
43 #def test_flush(self):
44 # self.hive.flush()
46 #def test_del_value(self):
47 # self.hive.del_value("FOO")
50 class RegistryTests(unittest.TestCase):
51 def test_new(self):
52 self.registry = registry.Registry()