From 1e2665df19a866d5676abec566b9d8f190ecdc80 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 12 Feb 2015 12:23:47 +0100 Subject: Update the test suite. - monkey-patch our own monkey-patched idle_call to run events immediatly rather than adding them to the event queue, and add a fake transport with a fake socket. - remove the test file related to xep_0059 as it relies on blocking behavior, and comment out one xep_0030 test uses xep_0059 - remove many instances of threading and sleep()s because they do nothing except waste time and introduce race conditions. - keep exactly two sleep() in IoT xeps because they rely on timeouts --- tests/test_stream_xep_0325.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'tests/test_stream_xep_0325.py') diff --git a/tests/test_stream_xep_0325.py b/tests/test_stream_xep_0325.py index 0d4ab907..62c49e6b 100644 --- a/tests/test_stream_xep_0325.py +++ b/tests/test_stream_xep_0325.py @@ -189,7 +189,7 @@ class TestStreamControl(SlixTest): """) - time.sleep(.5) + time.sleep(0.5) self.assertEqual(myDevice._get_field_value("Temperature"), "17"); @@ -213,8 +213,6 @@ class TestStreamControl(SlixTest): """) - time.sleep(.5) - self.assertEqual(myDevice._get_field_value("Temperature"), "15"); self.assertFalse(myDevice.has_control_field("Voltage", "int")); @@ -259,8 +257,6 @@ class TestStreamControl(SlixTest): """) - time.sleep(.5) - self.assertEqual(results, ["OK"]); def testRequestSetErrorAPI(self): @@ -305,8 +301,6 @@ class TestStreamControl(SlixTest): """) - time.sleep(.5) - self.assertEqual(results, ["OtherError"]); def testServiceDiscoveryClient(self): -- cgit v1.2.3