ctdb-scripts: Improve update and listing code
[samba4-gss.git] / python / samba / tests / netbios.py
blob0358b0b8ed9af21579da60174089b9875825ac6a
1 # -*- coding: utf-8 -*-
2 # Unix SMB/CIFS implementation. Tests for netbios py module
3 # Copyright (C) Noel Power <noel.power@suse.com> 2018
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import samba
19 import os
20 from samba import netbios
23 class NetBiosTests(samba.tests.TestCase):
24 def setUp(self):
25 super().setUp()
26 self.n = netbios.Node()
27 self.ifc = os.environ["SERVER_IP"]
28 self.dc = os.environ["DC_NETBIOSNAME"]
30 def test_query_name(self):
31 (reply_from, names, addresses) = self.n.query_name(self.dc, self.ifc, timeout=4)
32 assert reply_from == self.ifc
33 assert names[0] == self.dc
34 assert addresses[0] == self.ifc
36 def test_name_status(self):
37 (reply_from, name, name_list) = self.n.name_status(self.dc, self.ifc, timeout=4)
38 assert reply_from == self.ifc
39 assert name[0] == self.dc
40 assert len(name_list) > 0
42 def test_register_name(self):
43 address = '127.0.0.3'
44 (reply_from, name, reply_address, code) = self.n.register_name((self.dc, 0x20), address, self.ifc, multi_homed=False, timeout=4)
45 assert reply_from == self.ifc
46 assert name[0] == self.dc
47 assert reply_address == address
48 assert code == 6
50 def disabled_test_refresh(self):
51 # can't get the below test to work, disabling
52 address = '127.0.0.3'
53 res = self.n.refresh_name((self.dc, 0x20), address, self.ifc, timeout=10)
56 class ValidNetbiosNameTests(samba.tests.TestCase):
58 def test_valid(self):
59 self.assertTrue(samba.valid_netbios_name("FOO"))
61 def test_too_long(self):
62 self.assertFalse(samba.valid_netbios_name("FOO" * 10))
64 def test_invalid_characters(self):
65 self.assertFalse(samba.valid_netbios_name("*BLA"))