mirror of
https://github.com/samba-team/samba.git
synced 2025-07-22 16:59:09 +03:00
Remove length arguments, add tests for unixinfo.GidToSid and unixinfo.UidToSid.
(This used to be commit cae61e32e5
)
This commit is contained in:
@ -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"))
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user