svn rev #21867: trunk/src/kadmin/passwd/unit-test/kpasswd.0/

raeburn@MIT.EDU raeburn at MIT.EDU
Mon Feb 2 14:29:55 EST 2009


http://src.mit.edu/fisheye/changelog/krb5/?cs=21867
Commit By: raeburn
Log Message:
ticket: 6358
subject: speed up kpasswd tests

Reorder some tests and tune delays, so that we don't need to run for
much more than twice the min-password-life interval when testing that
functionality.  (This could be made faster if we can assume that
init_db will always have been run immediately before the tests start.)

In my tests, this cuts something like 11 seconds off the run time (now
down to about 65 seconds).


Changed Files:
U   trunk/src/kadmin/passwd/unit-test/kpasswd.0/changing.exp
Modified: trunk/src/kadmin/passwd/unit-test/kpasswd.0/changing.exp
===================================================================
--- trunk/src/kadmin/passwd/unit-test/kpasswd.0/changing.exp	2009-02-02 18:42:06 UTC (rev 21866)
+++ trunk/src/kadmin/passwd/unit-test/kpasswd.0/changing.exp	2009-02-02 19:29:52 UTC (rev 21867)
@@ -12,6 +12,23 @@
 # Here are the tests
 #
 
+# Under "make check", init_db will just have been run and we could
+# jump right into the too-soon test.  But if someone is working with
+# the test suite manually, init_db may have been run a while ago.
+# So, force some known state, first.
+verbose "(sleeping 30 seconds so pol2 password can be changed)"
+sleep 30
+
+test_win {pol2} {successful change} pol2 pol222222 polbbbbbb
+
+set pol2_time [expr 31 + [timestamp]]
+
+test_3pass {pol2} {D.15: too soon to change password} pol2 \
+	polbbbbbb pol333333 pol333333 \
+	4 {Password cannot be changed because it was changed too recently.  Please wait until .*[12][0-9][0-9][0-9] before you change it.  If you need to change your password before then, contact your system security administrator.}
+
+#
+
 test_3pass {test2} {D.5: different new passwords} test2 test2 test2 foobar \
 	4 {New passwords do not match - password not changed.}
 
@@ -89,17 +106,11 @@
 test_win {pol1} {successful change} pol1 polBBBBBB polCCCCCC
 test_win {pol1} {successful change} pol1 polCCCCCC pol111111
 
-verbose "(sleeping 30 seconds)"
-catch "exec sleep 30"
+# Now delay a little longer (if needed) and try changing pol2's
+# password again.
+set delay [expr $pol2_time - [timestamp]]
+verbose "(sleeping $delay seconds)"
+sleep $delay
 
-test_win {pol2} {successful change} pol2 pol222222 polbbbbbb
+test_win {pol2} {password min life passed} pol2 polbbbbbb pol333333
 
-test_3pass {pol2} {D.15: too soon to change password} pol2 \
-	polbbbbbb pol222222 pol222222 \
-	4 {Password cannot be changed because it was changed too recently.  Please wait until .*[12][0-9][0-9][0-9] before you change it.  If you need to change your password before then, contact your system security administrator.}
-
-verbose "(sleeping 30 seconds)"
-catch "exec sleep 30"
-
-test_win {pol2} {password min life passed} pol2 polbbbbbb pol222222
-




More information about the cvs-krb5 mailing list