Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(16)

Side by Side Diff: txzookeeper/tests/test_client.py

Issue 5976074: Managed Connections for txzk
Patch Set: Managed Connections for txzk Created 13 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 # 1 #
2 # Copyright (C) 2010-2011, 2011 Canonical Ltd. All Rights Reserved 2 # Copyright (C) 2010-2011, 2011 Canonical Ltd. All Rights Reserved
3 # 3 #
4 # This file is part of txzookeeper. 4 # This file is part of txzookeeper.
5 # 5 #
6 # Authors: 6 # Authors:
7 # Kapil Thangavelu 7 # Kapil Thangavelu
8 # 8 #
9 # txzookeeper is free software: you can redistribute it and/or modify 9 # txzookeeper is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU Lesser General Public License as published by 10 # it under the terms of the GNU Lesser General Public License as published by
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after
1043 1043
1044 def test_property_session_timeout(self): 1044 def test_property_session_timeout(self):
1045 """ 1045 """
1046 The negotiated session timeout is available as a property on the 1046 The negotiated session timeout is available as a property on the
1047 client. If the client isn't connected, the value is None. 1047 client. If the client isn't connected, the value is None.
1048 """ 1048 """
1049 self.assertEqual(self.client.session_timeout, None) 1049 self.assertEqual(self.client.session_timeout, None)
1050 d = self.client.connect() 1050 d = self.client.connect()
1051 1051
1052 def verify_session_timeout(client): 1052 def verify_session_timeout(client):
1053 self.assertEqual(client.session_timeout, 4000) 1053 self.assertIn(client.session_timeout, (4000, 10000))
1054 1054
1055 d.addCallback(verify_session_timeout) 1055 d.addCallback(verify_session_timeout)
1056 return d 1056 return d
1057 1057
1058 def test_property_unrecoverable(self): 1058 def test_property_unrecoverable(self):
1059 """ 1059 """
1060 The unrecoverable property specifies whether the connection can be 1060 The unrecoverable property specifies whether the connection can be
1061 recovered or must be discarded. 1061 recovered or must be discarded.
1062 """ 1062 """
1063 d = self.client.connect() 1063 d = self.client.connect()
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1239 1239
1240 def test_invalid_connection_error_callback(self): 1240 def test_invalid_connection_error_callback(self):
1241 self.assertRaises(TypeError, 1241 self.assertRaises(TypeError,
1242 self.client.set_connection_error_callback, 1242 self.client.set_connection_error_callback,
1243 None) 1243 None)
1244 1244
1245 def test_invalid_session_callback(self): 1245 def test_invalid_session_callback(self):
1246 self.assertRaises(TypeError, 1246 self.assertRaises(TypeError,
1247 self.client.set_session_callback, 1247 self.client.set_session_callback,
1248 None) 1248 None)
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b