r26527: Start on tests for provision.
[ira/wip.git] / source / scripting / python / samba / tests / provision.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 unittest
21 import samba.provision
22
23 class ProvisionTestCase(unittest.TestCase):
24     def test_setup_secretsdb(self):
25         raise NotImplementedError(self.test_setup_secretsdb)
26
27     def test_setup_templatesdb(self):
28         raise NotImplementedError(self.test_setup_templatesdb)
29
30     def test_setup_registry(self):
31         raise NotImplementedError(self.test_setup_registry)
32
33     def test_setup_samdb_rootdse(self):
34         raise NotImplementedError(self.test_setup_samdb_rootdse)
35
36     def test_setup_samdb_partitions(self):
37         raise NotImplementedError(self.test_setup_samdb_partitions)
38
39     def test_create_phpldapadmin_config(self):
40         raise NotImplementedError(self.test_create_phpldapadmin_config)
41
42     def test_provision_dns(self):
43         raise NotImplementedError(self.test_provision_dns)
44
45     def test_provision_ldapbase(self):
46         raise NotImplementedError(self.test_provision_ldapbase)
47
48     def test_provision_guess(self):
49         raise NotImplementedError(self.test_provision_guess)
50
51     def test_join_domain(self):
52         raise NotImplementedError(self.test_join_domain)
53
54     def test_vampire(self):
55         raise NotImplementedError(self.test_vampire)
56
57     def test_erase_partitions(self):
58         raise NotImplementedError(self.test_erase_partitions)
59