Adjust t_general.py organization
authorGreg Hudson <ghudson@mit.edu>
Tue, 24 Apr 2012 17:04:21 +0000 (17:04 +0000)
committerGreg Hudson <ghudson@mit.edu>
Tue, 24 Apr 2012 17:04:21 +0000 (17:04 +0000)
Move some tests out of the multipass_realms loop since they aren't
enctype-dependent.  Fix the success message not to mention kvno
wrapping.  Don't start kadmind in the multipass_realms loop since we
don't use it.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25820 dc483132-0cff-0310-8789-dd5450dbe970

src/tests/t_general.py

index 73d2b080b1343935c4f28b2c4aafc313066effdc..ea823b8f55327f8a2690e299f87cb979837e89f7 100755 (executable)
@@ -1,16 +1,7 @@
 #!/usr/bin/python
 from k5test import *
 
-for realm in multipass_realms(create_host=False):
-    # Create a policy and see if it survives a dump/load.
-    realm.run_kadminl('addpol fred')
-    dumpfile = os.path.join(realm.testdir, 'dump')
-    realm.run_as_master([kdb5_util, 'dump', dumpfile])
-    realm.run_as_master([kdb5_util, 'load', dumpfile])
-    output = realm.run_kadminl('getpols')
-    if 'fred\n' not in output:
-        fail('Policy not preserved across dump/load.')
-
+for realm in multipass_realms(create_host=False, start_kadmind=False):
     # Check that kinit fails appropriately with the wrong password.
     output = realm.run_as_client([kinit, realm.user_princ], input='wrong\n',
                                  expected_code=1)
@@ -29,14 +20,23 @@ for realm in multipass_realms(create_host=False):
     realm.klist('user/fast@%s' % realm.realm)
 
     # Test kinit against kdb keytab
-    realm.run_as_master([kinit, "-k", "-t",
-                         "KDB:", realm.user_princ])
-
-
-    # Test kdestroy and klist of a non-existent ccache.
-    realm.run_as_client([kdestroy])
-    output = realm.run_as_client([klist], expected_code=1)
-    if 'No credentials cache found' not in output:
-        fail('Expected error message not seen in klist output')
-
-success('Dump/load, FAST kinit, kdestroy, kvno wrapping')
+    realm.run_as_master([kinit, "-k", "-t", "KDB:", realm.user_princ])
+
+realm = K5Realm(create_host=False, start_kadmind=False)
+
+# Create a policy and see if it survives a dump/load.
+realm.run_kadminl('addpol fred')
+dumpfile = os.path.join(realm.testdir, 'dump')
+realm.run_as_master([kdb5_util, 'dump', dumpfile])
+realm.run_as_master([kdb5_util, 'load', dumpfile])
+output = realm.run_kadminl('getpols')
+if 'fred\n' not in output:
+    fail('Policy not preserved across dump/load.')
+
+# Test kdestroy and klist of a non-existent ccache.
+realm.run_as_client([kdestroy])
+output = realm.run_as_client([klist], expected_code=1)
+if 'No credentials cache found' not in output:
+    fail('Expected error message not seen in klist output')
+
+success('Dump/load, FAST kinit, kdestroy')