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