class TestClockAlarmInLockscreen(PasscodeTestCase): _input_passcode = '1337' def setUp(self): PasscodeTestCase.setUp(self) self.set_passcode_to_1337() self.data_layer.set_setting('lockscreen.passcode-lock.enabled', True) self.clock = Clock(self.marionette) self.clock.launch() def test_clock_set_alarm_in_lockscreen(self): """ Dismiss alarm in lockscreen https://moztrap.mozilla.org/manage/cases/15805/ """ alarm_label_text = 'Test Alarm' # Set the time on the device so that it starts with 0 seconds _seconds_since_epoch = self.marionette.execute_script(""" var today = new Date(); var yr = today.getFullYear(); var mth = today.getMonth(); var day = today.getDate(); return new Date(yr, mth, day, 1, 0, 0).getTime();""") self.data_layer.set_time(_seconds_since_epoch) alarm = self.clock.switch_view('alarm') new_alarm = alarm.tap_new_alarm() new_alarm.type_alarm_label(alarm_label_text) time_picker = new_alarm.tap_time() time_picker.add_minute() time_picker.tap_done() self.clock = new_alarm.tap_done() self.clock.dismiss_banner() self.assertTrue(alarm.alarm_items[0].is_alarm_active) self.device.lock() self.alarm_alert = AlarmAlertScreen(self.marionette) self.alarm_alert.wait_for_alarm_to_trigger() # Check that the alarm name is the one we set self.assertEqual(self.alarm_alert.alarm_label, alarm_label_text) self.alarm_alert.tap_stop_alarm() self.assertTrue(self.device.is_locked)
class TestClockCreateNewAlarm(GaiaTestCase): def setUp(self): GaiaTestCase.setUp(self) self.clock = Clock(self.marionette) self.clock.launch() def test_clock_create_new_alarm(self): """ Add an alarm and set label of the new alarm https://moztrap.mozilla.org/manage/case/1772/ https://moztrap.mozilla.org/manage/case/1775/ """ # Set the time on the device _seconds_since_epoch = self.marionette.execute_script(""" var today = new Date(); var yr = today.getFullYear(); var mth = today.getMonth(); var day = today.getDate(); return new Date(yr, mth, day, 1, 0, 0).getTime();""") alarm_label_text = "test4321" # get the number of alarms set, before adding the new alarm initial_alarms_count = len(self.clock.alarms) self.data_layer.set_time(_seconds_since_epoch) # create a new alarm with the default values that are available new_alarm = self.clock.tap_new_alarm() # Ensure label has the default placeholder and text self.assertEquals(new_alarm.alarm_label_placeholder, 'Alarm name') # set label new_alarm.type_alarm_label(alarm_label_text) self.clock = new_alarm.tap_done() # verify the banner-countdown message appears alarm_msg = self.clock.banner_notification self.assertTrue('The alarm is set for' in alarm_msg, 'Actual banner message was: "' + alarm_msg + '"') self.clock.dismiss_banner() # ensure the new alarm has been added and it is displayed self.assertTrue(initial_alarms_count < len(self.clock.alarms), 'Alarms count did not increment') # verify the label of alarm alarms = self.clock.alarms self.assertEqual(len(alarms), 1) self.assertEqual(alarms[0].label, alarm_label_text) alarm_time = self.clock.alarms[0].time() # tap to Edit alarm edit_alarm = alarms[0].tap() # Set the alarm time to 1 min more than the current time time_picker = edit_alarm.tap_time() time_picker.add_minute() time_picker.tap_done() edit_alarm.tap_done() self.clock.dismiss_banner() self.assertNotEqual(self.clock.alarms[0].time, alarm_time) # turn off the alarm self.clock.alarms[0].tap_checkbox() self.clock.alarms[0].wait_for_checkbox_to_change_state(False) self.assertFalse(self.clock.alarms[0].is_alarm_active, 'user should be able to turn on the alarm.') # turn on the alarm self.clock.alarms[0].tap_checkbox() self.clock.dismiss_banner() self.assertTrue(self.clock.alarms[0].is_alarm_active, 'user should be able to turn off the alarm.') self.device.touch_home_button() self.marionette.switch_to_frame() self.alarm_alert = AlarmAlertScreen(self.marionette) self.alarm_alert.wait_for_alarm_to_trigger() # Check that the alarm name is the one we set self.assertEqual(self.alarm_alert.alarm_label, alarm_label_text) self.alarm_alert.tap_stop_alarm() # Switch back to top level now that Clock app is gone self.wait_for_condition( lambda m: self.apps.displayed_app.name == Homescreen.name)
class TestClockCreateNewAlarm(GaiaTestCase): def setUp(self): GaiaTestCase.setUp(self) # Set the time on the device _seconds_since_epoch = self.marionette.execute_script(""" var today = new Date(); var yr = today.getFullYear(); var mth = today.getMonth(); var day = today.getDate(); return new Date(yr, mth, day, 1, 0, 0).getTime();""") self.data_layer.set_time(_seconds_since_epoch) self.clock = Clock(self.marionette) self.clock.launch() def test_clock_create_new_alarm(self): """ Add an alarm and set label of the new alarm https://moztrap.mozilla.org/manage/case/1772/ https://moztrap.mozilla.org/manage/case/1775/ """ alarm_label_text = "test4321" # get the number of alarms set, before adding the new alarm initial_alarms_count = len(self.clock.alarms) # create a new alarm with the default values that are available new_alarm = self.clock.tap_new_alarm() # Ensure label has the default placeholder and text self.assertEquals(new_alarm.alarm_label_placeholder, 'Alarm name') # set label new_alarm.type_alarm_label(alarm_label_text) self.clock = new_alarm.tap_done() # verify the banner-countdown message appears alarm_msg = self.clock.banner_notification self.assertTrue('The alarm is set for' in alarm_msg, 'Actual banner message was: "' + alarm_msg + '"') self.clock.dismiss_banner() # ensure the new alarm has been added and it is displayed self.assertTrue(initial_alarms_count < len(self.clock.alarms), 'Alarms count did not increment') # verify the label of alarm alarms = self.clock.alarms self.assertEqual(len(alarms), 1) self.assertEqual(alarms[0].label, alarm_label_text) alarm_time = self.clock.alarms[0].time() # tap to Edit alarm edit_alarm = alarms[0].tap() # Set the alarm time to 1 min more than the current time time_picker = edit_alarm.tap_time() time_picker.spin_minute() time_picker.tap_done() edit_alarm.tap_done() self.clock.dismiss_banner() self.assertNotEqual(self.clock.alarms[0].time, alarm_time) # turn off the alarm self.clock.alarms[0].tap_checkbox() self.clock.alarms[0].wait_for_checkbox_to_change_state(False) self.assertFalse(self.clock.alarms[0].is_alarm_active, 'user should be able to turn on the alarm.') # turn on the alarm self.clock.alarms[0].tap_checkbox() self.clock.dismiss_banner() self.assertTrue(self.clock.alarms[0].is_alarm_active, 'user should be able to turn off the alarm.') self.device.touch_home_button() self.marionette.switch_to_frame() self.alarm_alert = AlarmAlertScreen(self.marionette) self.alarm_alert.wait_for_alarm_to_trigger() # Check that the alarm name is the one we set self.assertEqual(self.alarm_alert.alarm_label, alarm_label_text) self.alarm_alert.tap_stop_alarm() # Switch back to top level now that Clock app is gone self.wait_for_condition(lambda m: self.apps.displayed_app.name == Homescreen.name)