b46a41731914844c44e8fc75612e2b8a561f5634
[samba.git] / source4 / scripting / python / samba / tests / upgrade.py
1 # Unix SMB/CIFS implementation.
2 # Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17
18 """Tests for samba.upgrade."""
19
20 from samba.upgrade import import_wins
21 from samba.tests import LdbTestCase
22
23
24 class WinsUpgradeTests(LdbTestCase):
25
26     def test_upgrade(self):
27         winsdb = {
28             "FOO#20": (200, ["127.0.0.1", "127.0.0.2"], 0x60)
29         }
30         import_wins(self.ldb, winsdb)
31
32         self.assertEquals(
33             ['name=FOO,type=0x20'],
34             [str(m.dn) for m in
35                 self.ldb.search(expression="(objectClass=winsRecord)")])
36
37     def test_version(self):
38         import_wins(self.ldb, {})
39         self.assertEquals("VERSION",
40                 str(self.ldb.search(expression="(objectClass=winsMaxVersion)")[0]["cn"]))