Bug 1214215: Part 3 - disable functional tests temporarily until bug 1229926 is resolved. r=Standard8

This commit is contained in:
Mike de Boer 2015-12-03 11:12:57 +01:00
parent a0a723f7cf
commit 60cdb632cf

View File

@ -263,41 +263,41 @@ class Test1BrowserCall(MarionetteTestCase):
def test_1_browser_call(self):
self.switch_to_panel()
self.local_start_a_conversation()
# self.local_start_a_conversation()
# Check the self video in the conversation window
self.local_check_room_self_video()
# # Check the self video in the conversation window
# self.local_check_room_self_video()
# make sure that the media start time is not initialized
self.local_check_media_start_time_uninitialized()
# # make sure that the media start time is not initialized
# self.local_check_media_start_time_uninitialized()
room_url = self.local_get_and_verify_room_url()
# room_url = self.local_get_and_verify_room_url()
# load the link clicker interface into the current content browser
self.standalone_load_and_join_room(room_url)
# # load the link clicker interface into the current content browser
# self.standalone_load_and_join_room(room_url)
# Check we get the video streams
self.standalone_check_remote_video()
self.local_check_remote_video()
# # Check we get the video streams
# self.standalone_check_remote_video()
# self.local_check_remote_video()
# Check text messaging
self.check_text_messaging()
# # Check text messaging
# self.check_text_messaging()
# since bi-directional media is connected, make sure we've set
# the start time
self.local_check_media_start_time_initialized()
# # since bi-directional media is connected, make sure we've set
# # the start time
# self.local_check_media_start_time_initialized()
# Check that screenshare was automatically started
self.standalone_check_remote_screenshare()
# # Check that screenshare was automatically started
# self.standalone_check_remote_screenshare()
# We hangup on the remote (standalone) side, because this also leaves
# the local chatbox with the local publishing media still connected,
# which means that the local_check_connection_length below
# verifies that the connection is noted at the time the remote media
# drops, rather than waiting until the window closes.
self.remote_leave_room()
# # We hangup on the remote (standalone) side, because this also leaves
# # the local chatbox with the local publishing media still connected,
# # which means that the local_check_connection_length below
# # verifies that the connection is noted at the time the remote media
# # drops, rather than waiting until the window closes.
# self.remote_leave_room()
self.local_check_connection_length_noted()
# self.local_check_connection_length_noted()
def tearDown(self):
self.loop_test_servers.shutdown()