diff options
author | Havoc Pennington <hp@redhat.com> | 2003-05-09 04:15:56 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-05-09 04:15:56 +0000 |
commit | 4a3aba6cee5e9a6cc592603e9225d8ca3b61396e (patch) | |
tree | 3aeb2f5ed731c0fa43d9eed11b3fc0e6a856f7d9 /test/data | |
parent | 41b63ca07a84b970f81845b99e0ac93afb8642e7 (diff) |
2003-05-08 Havoc Pennington <hp@pobox.com>
* dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
data from getting written, and there wasn't a good reason to
use _exit really.
* test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
dbus_verbose lines in test coverage
(main): add list of functions sorted by # of untested blocks
to the coverage report
* dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
* dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
* dbus/dbus-message-handler.c (_dbus_message_handler_test):
extend test coverage
* test/data/auth/cancel.auth-script: test canceling an
authentication
* dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
aren't used. in CVS history if we end up needing them.
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/auth/cancel.auth-script | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/data/auth/cancel.auth-script b/test/data/auth/cancel.auth-script new file mode 100644 index 0000000..a99c612 --- /dev/null +++ b/test/data/auth/cancel.auth-script @@ -0,0 +1,19 @@ +## this tests canceling EXTERNAL + +SERVER +SEND 'AUTH EXTERNAL USERID_BASE64' +EXPECT_COMMAND OK +EXPECT_STATE WAITING_FOR_INPUT +SEND 'CANCEL' +EXPECT_COMMAND REJECTED +EXPECT_STATE WAITING_FOR_INPUT + +## now start over and see if it works +SEND 'AUTH EXTERNAL USERID_BASE64' +EXPECT_COMMAND OK +EXPECT_STATE WAITING_FOR_INPUT +SEND 'BEGIN' +EXPECT_STATE AUTHENTICATED + + + |