OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |