r26565: Fix python registry bindings. 'PROVISION_PYTHON=yes make test' works now.
[jelmer/samba4-debian.git] / source / lib / registry / tests / bindings.py
1 #!/usr/bin/python
2
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.
10 #   
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.
15 #   
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/>.
18 #
19
20 import os
21 import unittest
22 import registry
23 import samba.tests
24
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))
29
30     def test_str_regtype(self):
31         self.assertEquals("REG_DWORD", registry.str_regtype(4))
32
33
34
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"))
39
40     def test_ldb_new(self):
41         self.assertTrue(self.hive is not None)
42
43     def test_flush(self):
44         self.hive.flush()
45
46     def test_del_value(self):
47         self.hive.del_value("FOO")
48
49
50 class RegistryTests(unittest.TestCase):
51     def test_new(self):
52         self.registry = registry.Registry()