f2882ebe2e6b90ddd99ed7de30b4be32089bdc15
[nivanova/samba-autobuild/.git] / python / samba / tests / netbios.py
1 # -*- coding: utf-8 -*-
2 # Unix SMB/CIFS implementation. Tests for netbios py module
3 # Copyright (C) Noel Power <noel.power@suse.com> 2018
4 #
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.
9 #
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.
14 #
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/>.
17
18 import samba, os, random, sys
19 from samba import netbios
20
21 class NetBiosTests(samba.tests.TestCase):
22     def setUp(self):
23         super(NetBiosTests, self).setUp()
24         self.n = netbios.Node()
25         self.ifc = os.environ["SERVER_IP"]
26         self.dc = os.environ["DC_NETBIOSNAME"]
27
28     def tearDown(self):
29         super(NetBiosTests, self).tearDown()
30
31     def test_query_name(self):
32         (reply_from, names, addresses) = self.n.query_name(self.dc, self.ifc, timeout=4)
33         assert reply_from == self.ifc
34         assert names[0] == self.dc
35         assert addresses[0] == self.ifc
36
37     def test_name_status(self):
38         (reply_from, name, name_list) = self.n.name_status(self.dc, self.ifc, timeout=4)
39         assert reply_from == self.ifc
40         assert name[0] == self.dc
41         assert len(name_list) > 0
42
43     def test_register_name(self):
44         address = '127.0.0.3'
45         (reply_from, name, reply_address, code) = self.n.register_name((self.dc, 0x20), address, self.ifc, multi_homed=False, timeout=4)
46         assert reply_from == self.ifc
47         assert name[0] == self.dc
48         assert reply_address == address
49         assert code == 6
50
51     def disabled_test_refresh(self):
52         # can't get the below test to work, disabling
53         address = '127.0.0.3'
54         res = self.n.refresh_name((self.dc, 0x20), address, self.ifc, timeout=10)