From 9465b9ce6f26d5db0477110a59da1a9306567d7b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 4 Jan 2012 20:49:08 +0100 Subject: s4:pygensec/tests: check that the client and server have the same session key metze --- source4/scripting/python/samba/tests/gensec.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4/scripting/python') diff --git a/source4/scripting/python/samba/tests/gensec.py b/source4/scripting/python/samba/tests/gensec.py index 53e2292311..ab38d18505 100644 --- a/source4/scripting/python/samba/tests/gensec.py +++ b/source4/scripting/python/samba/tests/gensec.py @@ -88,4 +88,7 @@ class GensecTests(samba.tests.TestCase): test_wrapped = self.gensec_server.wrap(test_string) test_unwrapped = self.gensec_client.unwrap(test_wrapped) self.assertEqual(test_string, test_unwrapped) - + + client_session_key = self.gensec_client.session_key() + server_session_key = self.gensec_server.session_key() + self.assertEqual(client_session_key, server_session_key) -- cgit