python/tests/netbios: remove unused imports
[samba.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
19 import os
20 from samba import netbios
21
22
23 class NetBiosTests(samba.tests.TestCase):
24     def setUp(self):
25         super(NetBiosTests, self).setUp()
26         self.n = netbios.Node()
27         self.ifc = os.environ["SERVER_IP"]
28         self.dc = os.environ["DC_NETBIOSNAME"]
29
30     def tearDown(self):
31         super(NetBiosTests, self).tearDown()
32
33     def test_query_name(self):
34         (reply_from, names, addresses) = self.n.query_name(self.dc, self.ifc, timeout=4)
35         assert reply_from == self.ifc
36         assert names[0] == self.dc
37         assert addresses[0] == self.ifc
38
39     def test_name_status(self):
40         (reply_from, name, name_list) = self.n.name_status(self.dc, self.ifc, timeout=4)
41         assert reply_from == self.ifc
42         assert name[0] == self.dc
43         assert len(name_list) > 0
44
45     def test_register_name(self):
46         address = '127.0.0.3'
47         (reply_from, name, reply_address, code) = self.n.register_name((self.dc, 0x20), address, self.ifc, multi_homed=False, timeout=4)
48         assert reply_from == self.ifc
49         assert name[0] == self.dc
50         assert reply_address == address
51         assert code == 6
52
53     def disabled_test_refresh(self):
54         # can't get the below test to work, disabling
55         address = '127.0.0.3'
56         res = self.n.refresh_name((self.dc, 0x20), address, self.ifc, timeout=10)