From 684aa5adef7c8f61e626983ef2a79156fcb14f3d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 2 May 2006 05:14:00 +0000 Subject: r15389: Add some better torture tests for LdbMessage. Fix up behaviour of Ldb.__setitem__() function. It should overwrite the element data. Add wrapper for ldb_msg_sanity_check(). (This used to be commit d67e055f86a62d0e61fd20d75b252a6211618f7b) --- source4/scripting/swig/torture/torture_ldb.py | 81 ++++++++++++++++++++++++--- 1 file changed, 73 insertions(+), 8 deletions(-) (limited to 'source4/scripting/swig') diff --git a/source4/scripting/swig/torture/torture_ldb.py b/source4/scripting/swig/torture/torture_ldb.py index 311a2b1d66..fe79f4f843 100755 --- a/source4/scripting/swig/torture/torture_ldb.py +++ b/source4/scripting/swig/torture/torture_ldb.py @@ -1,18 +1,83 @@ #!/usr/bin/python +# +# A torture test for the Python Ldb bindings. Also a short guide on +# how the API works. +# -import Ldb, sys +from Ldb import * -def test(cond, msg): +# Helpers + +def t(cond, msg): + """Test a condition.""" if not cond: - print 'FAILED:', msg - sys.exit(1) + raise RuntimeError('FAILED: %s' % msg) +# # Torture LdbMessage +# + +m = LdbMessage() + +# Empty message + +t(m.keys() == [], 'empty msg') +t(m.dn == None, 'empty dn') + +t(m.sanity_check() == LDB_ERR_INVALID_DN_SYNTAX, 'sanity check') + +# Test invalid dn + +try: + m.dn = 'invalid dn' +except LdbError, arg: + if arg[0] != LDB_ERR_INVALID_DN_SYNTAX: + raise +else: + t(False, 'LdbError not raised') + +# Test valid dn + +m.dn = 'name=spotty' +t(m.dn == 'name=spotty', 'specified dn') + +t(m.sanity_check() == LDB_SUCCESS, 'sanity check') + +# Test some single-valued attributes -m = Ldb.LdbMessage() m['animal'] = 'dog' m['name'] = 'spotty' -test(m.keys() == ['animal', 'name'], 'keys() test failed') -test(m.values() == [['dog'], ['spotty']], 'values() test failed') -test(m.items() == [('animal', ['dog']), ('name', ['spotty'])], 'items() test failed') +t(m.keys() == ['animal', 'name'], 'keys() test failed') +t(m.values() == [['dog'], ['spotty']], 'values() test failed') +t(m.items() == [('animal', ['dog']), ('name', ['spotty'])], + 'items() test failed') + +t(m.sanity_check() == LDB_SUCCESS, 'sanity check') + +m['animal'] = 'canine' +t(m['animal'] == ['canine'], 'replace value failed') + +# Test a multi-valued attribute + +names = ['spotty', 'foot'] +m['name'] = names + +t(m['name'] == names, 'multi-valued attr failed') + +t(m.sanity_check() == LDB_SUCCESS, 'sanity check') + +# Test non-string attributes + +try: + m['foo'] = 42 +except TypeError: + pass +else: + t(False, 'TypeError not raised') + +# +# Torture Ldb +# + +l = Ldb('foo.ldb') -- cgit