296815f3a9710bbb4e9df6519b1c563042d0e359
[metze/samba/wip.git] / python / samba / tests / smb.py
1 # -*- coding: utf-8 -*-
2 # Unix SMB/CIFS implementation. Tests for smb manipulation
3 # Copyright (C) David Mulder <dmulder@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 smb
20
21 PY3 = sys.version_info[0] == 3
22 addom = 'addom.samba.example.com/'
23 test_contents = 'abcd' * 256
24 utf_contents = u'Süßigkeiten Äpfel ' * 128
25 test_literal_bytes_embed_nulls = b'\xff\xfe\x14\x61\x00\x00\x62\x63\x64' * 256
26 binary_contents = b'\xff\xfe'
27 binary_contents = binary_contents + "Hello cruel world of python3".encode('utf8') * 128
28 test_dir = os.path.join(addom, 'testing_%d' % random.randint(0,0xFFFF))
29 test_file = os.path.join(test_dir, 'testing').replace('/', '\\')
30
31 class SMBTests(samba.tests.TestCase):
32     def setUp(self):
33         super(SMBTests, self).setUp()
34         self.server = os.environ["SERVER"]
35         creds = self.insta_creds(template=self.get_credentials())
36         self.conn = smb.SMB(self.server,
37                             "sysvol",
38                             lp=self.get_loadparm(),
39                             creds=creds)
40         self.conn.mkdir(test_dir)
41
42     def tearDown(self):
43         super(SMBTests, self).tearDown()
44         try:
45             self.conn.deltree(test_dir)
46         except:
47             pass
48
49     def test_list(self):
50         ls = [f['name'] for f in self.conn.list(addom)]
51         self.assertIn('scripts', ls,
52                       msg='"scripts" directory not found in sysvol')
53         self.assertIn('Policies',ls,
54                       msg='"Policies" directory not found in sysvol')
55
56     def test_unlink(self):
57         """
58         The smb.unlink API should delete file
59         """
60         self.conn.savefile(test_file, binary_contents);
61         self.conn.unlink(test_file)
62         self.assertFalse(self.conn.chkpath(test_file))
63
64     def test_save_load_text(self):
65
66         self.conn.savefile(test_file, test_contents.encode('utf8'))
67
68         contents = self.conn.loadfile(test_file)
69         self.assertEquals(contents.decode('utf8'), test_contents,
70                           msg='contents of test file did not match what was written')
71
72     # with python2 this will save/load str type (with embedded nulls)
73     # with python3 this will save/load bytes type
74     def test_save_load_string_bytes(self):
75         self.conn.savefile(test_file, test_literal_bytes_embed_nulls)
76
77         contents = self.conn.loadfile(test_file)
78         self.assertEquals(contents, test_literal_bytes_embed_nulls,
79                           msg='contents of test file did not match what was written')
80
81     # python3 only this will save/load unicode
82     def test_save_load_utfcontents(self):
83         if PY3:
84             self.conn.savefile(test_file, utf_contents.encode('utf8'))
85
86             contents = self.conn.loadfile(test_file)
87             self.assertEquals(contents.decode('utf8'), utf_contents,
88                               msg='contents of test file did not match what was written')
89
90     # with python2 this will save/load str type
91     # with python3 this will save/load bytes type
92     def test_save_binary_contents(self):
93         self.conn.savefile(test_file, binary_contents);
94
95         contents = self.conn.loadfile(test_file)
96         self.assertEquals(contents, binary_contents,
97                           msg='contents of test file did not match what was written')