From 407a3c80b6c1a24a8bf9e6f2df8b0cceefe2347b Mon Sep 17 00:00:00 2001 From: tcocagne Date: Mon, 29 Oct 2012 22:58:47 -0500 Subject: Fixed data structure initialiation bug reported by kaliuga --- srp/test_srp.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'srp/test_srp.py') diff --git a/srp/test_srp.py b/srp/test_srp.py index 37cf4c3..d33fae2 100644 --- a/srp/test_srp.py +++ b/srp/test_srp.py @@ -26,7 +26,6 @@ sys.path.insert(0, os.path.join('build', plat_dir) ) - import srp import srp._pysrp as _pysrp import srp._ctsrp as _ctsrp @@ -121,7 +120,16 @@ class SRPTests( unittest.TestCase ): def test_all2(self): self.doit( _ctsrp, _pysrp, _srp, hash_alg=srp.SHA224, ng_type=srp.NG_4096 ) - + def test_authenticated_on_init(self): + usr = _pysrp.User('test', 'test') + self.assertTrue(not usr.authenticated()) + + usr = _ctsrp.User('test', 'test') + self.assertTrue(not usr.authenticated()) + + usr = _srp.User('test', 'test') + self.assertTrue(not usr.authenticated()) + #----------------------------------------------------------------------------------- # Performance Testing -- cgit v1.2.3