1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-01 05:47:28 +03:00

Remove length arguments, add tests for unixinfo.GidToSid and unixinfo.UidToSid.

(This used to be commit cae61e32e5b61a02c2986b74bd1d7e58460b1e80)
This commit is contained in:
Jelmer Vernooij 2008-04-08 14:58:38 +02:00
parent 90c8841bef
commit ad823b04da
2 changed files with 9 additions and 3 deletions

View File

@ -30,7 +30,7 @@ class RpcEchoTests(unittest.TestCase):
self.assertEquals(2, self.conn.AddOne(1))
def test_echodata(self):
self.assertEquals([1,2,3], self.conn.EchoData(3, [1, 2, 3]))
self.assertEquals([1,2,3], self.conn.EchoData([1, 2, 3]))
def test_call(self):
self.assertEquals(u"foobar", self.conn.TestCall(u"foobar"))

View File

@ -26,5 +26,11 @@ class UnixinfoTests(unittest.TestCase):
self.conn = unixinfo.unixinfo("ncalrpc:", get_loadparm())
def test_getpwuid(self):
(count, infos) = self.conn.GetPWUid(1, [0])
self.assertEquals(1, len(infos))
infos = self.conn.GetPWUid(range(512))
self.assertEquals(512, len(infos))
def test_gidtosid(self):
self.conn.GidToSid(1000)
def test_uidtosid(self):
self.conn.UidToSid(1000)