From f161fa3ac8e437600e64354652114e99edac32bb Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 20 Sep 2010 20:19:16 -0700 Subject: testrpc: Convert from a single unit test to a simple test script, be more verbose. --- .../scripting/python/samba/tests/dcerpc/testrpc.py | 50 ++++++++++++++-------- 1 file changed, 32 insertions(+), 18 deletions(-) (limited to 'source4/scripting') diff --git a/source4/scripting/python/samba/tests/dcerpc/testrpc.py b/source4/scripting/python/samba/tests/dcerpc/testrpc.py index 48e5296a74..d3f97d767e 100644 --- a/source4/scripting/python/samba/tests/dcerpc/testrpc.py +++ b/source4/scripting/python/samba/tests/dcerpc/testrpc.py @@ -13,7 +13,7 @@ from samba.dcerpc import drsuapi samba.talloc_enable_null_tracking() -class RpcTests(samba.tests.TestCase): +class RpcTests(object): '''test type behaviour of pidl generated python RPC code''' def check_blocks(self, object, num_expected): @@ -21,7 +21,9 @@ class RpcTests(samba.tests.TestCase): nblocks = samba.talloc_total_blocks(object) if object is None: nblocks -= self.initial_blocks - #print nblocks, num_expected) + leaked_blocks = (nblocks - num_expected) + if leaked_blocks != 0: + print "Leaked %d blocks" % leaked_blocks def check_type(self, interface, typename, type): print "Checking type %s" % typename @@ -43,28 +45,34 @@ class RpcTests(samba.tests.TestCase): continue else: print "ERROR: Failed to instantiate %s.%s" % (typename, n) - raise + self.errcount += 1 + continue except: print "ERROR: Failed to instantiate %s.%s" % (typename, n) - raise + self.errcount += 1 + continue # now try setting the value back try: print "Setting %s.%s" % (typename, n) setattr(v, n, value) - except: - print "ERROR: Failed to set %s.%s" % (typename, n) - raise + except Exception, e: + if issubclass(e, AttributeError) and str(e).endswith("is read-only"): + # readonly, ignore + continue + else: + print "ERROR: Failed to set %s.%s: %r: %s" % (typename, n, e.__class__, e) + self.errcount += 1 + continue # and try a comparison try: if value != getattr(v, n): - print "ERROR: Comparison failed for %s.%s" % (typename, n) - raise - except: - print "ERROR: compare exception for %s.%s" % (typename, n) - raise - + print "ERROR: Comparison failed for %s.%s != %r" % (typename, n, value) + continue + except Exception, e: + print "ERROR: compare exception for %s.%s: %r: %s" % (typename, n, e.__class__, e) + continue def check_interface(self, interface, iname): errcount = self.errcount @@ -76,7 +84,7 @@ class RpcTests(samba.tests.TestCase): if isinstance(value, str): #print "%s=\"%s\"" % (n, value) pass - elif isinstance(value, int): + elif isinstance(value, int) or isinstance(value, long): #print "%s=%d" % (n, value) pass elif isinstance(value, type): @@ -87,13 +95,11 @@ class RpcTests(samba.tests.TestCase): except: print "ERROR: Failed to check_type %s.%s" % (iname, n) self.errcount += 1 - pass else: print "UNKNOWN: %s=%s" % (n, value) if self.errcount - errcount != 0: print "Found %d errors in %s" % (self.errcount - errcount, iname) - def check_all_interfaces(self): for iname in dir(samba.dcerpc): if iname[0] == '_': @@ -106,8 +112,16 @@ class RpcTests(samba.tests.TestCase): self.check_interface(iface, iname) self.check_blocks(None, initial_blocks) - def test_run(self): + def run(self): self.initial_blocks = samba.talloc_total_blocks(None) self.errcount = 0 self.check_all_interfaces() - self.assertEquals(self.errcount, 0) + return self.errcount + +tests = RpcTests() +errcount = tests.run() +if errcount == 0: + sys.exit(0) +else: + print "%d failures" % errcount + sys.exit(1) -- cgit