python: samba.tests.core: Port and enable core tests in Python 3
[samba.git] / python / samba / tests / core.py
1 # Unix SMB/CIFS implementation.
2 # Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2008
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17
18 """Samba Python tests."""
19
20 import ldb
21 import os
22 import samba
23 from samba import arcfour_encrypt, string_to_byte_array
24 from samba.tests import TestCase, TestCaseInTempDir
25
26 class SubstituteVarTestCase(TestCase):
27
28     def test_empty(self):
29         self.assertEquals("", samba.substitute_var("", {}))
30
31     def test_nothing(self):
32         self.assertEquals("foo bar",
33                 samba.substitute_var("foo bar", {"bar": "bla"}))
34
35     def test_replace(self):
36         self.assertEquals("foo bla",
37                 samba.substitute_var("foo ${bar}", {"bar": "bla"}))
38
39     def test_broken(self):
40         self.assertEquals("foo ${bdkjfhsdkfh sdkfh ",
41             samba.substitute_var("foo ${bdkjfhsdkfh sdkfh ", {"bar": "bla"}))
42
43     def test_unknown_var(self):
44         self.assertEquals("foo ${bla} gsff",
45                 samba.substitute_var("foo ${bla} gsff", {"bar": "bla"}))
46
47     def test_check_all_substituted(self):
48         samba.check_all_substituted("nothing to see here")
49         self.assertRaises(Exception, samba.check_all_substituted,
50                 "Not subsituted: ${FOOBAR}")
51
52 class ArcfourTestCase(TestCase):
53
54     def test_arcfour_direct(self):
55         key = '12345678'
56         plain = 'abcdefghi'
57         crypt_expected = b'\xda\x91Z\xb0l\xd7\xb9\xcf\x99'
58         crypt_calculated = arcfour_encrypt(key, plain)
59         self.assertEquals(crypt_expected, crypt_calculated)
60
61 class StringToByteArrayTestCase(TestCase):
62
63     def test_byte_array(self):
64         expected = [218, 145, 90, 176, 108, 215, 185, 207, 153]
65         calculated = string_to_byte_array('\xda\x91Z\xb0l\xd7\xb9\xcf\x99')
66         self.assertEquals(expected, calculated)
67
68 class LdbExtensionTests(TestCaseInTempDir):
69
70     def test_searchone(self):
71         path = self.tempdir + "/searchone.ldb"
72         l = samba.Ldb(path)
73         try:
74             l.add({"dn": "foo=dc", "bar": "bla"})
75             self.assertEquals(b"bla",
76                 l.searchone(basedn=ldb.Dn(l, "foo=dc"), attribute="bar"))
77         finally:
78             del l
79             os.unlink(path)