mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 13:40:09 +01:00
* configure.in (LT_*): add notes on how the libtool versioning works to save thinking. Increment soname to indicate protocol breakage (though really the library interface hasn't changed I guess) * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated): verify the GUID received from server matches what we were expecting, if we had an expectation * dbus/dbus-auth.c (send_ok): send GUID along with the OK command (_dbus_auth_get_guid_from_server): new function (send_begin): parse the OK args * doc/dbus-specification.xml: add GUID to the auth protocol
22 lines
555 B
Text
22 lines
555 B
Text
## this tests that a client can fallback to a secondary auth mech
|
|
|
|
CLIENT
|
|
|
|
## Will try EXTERNAL by default first without first calling AUTH alone.
|
|
|
|
EXPECT_COMMAND AUTH
|
|
SEND 'REJECTED EXTERNAL DBUS_COOKIE_SHA1 DBUS_TEST_NONEXISTENT_MECH'
|
|
|
|
## Will try EXTERNAL again.
|
|
|
|
EXPECT_COMMAND AUTH
|
|
SEND 'REJECTED EXTERNAL DBUS_COOKIE_SHA1 DBUS_TEST_NONEXISTENT_MECH'
|
|
|
|
## And this time we get DBUS_COOKIE_SHA1
|
|
|
|
EXPECT_COMMAND AUTH
|
|
## of course real DBUS_COOKIE_SHA1 would not send this here...
|
|
SEND 'OK 1234deadbeef'
|
|
|
|
EXPECT_COMMAND BEGIN
|
|
EXPECT_STATE AUTHENTICATED
|