[gnome-settings-daemon] power: Check for "no blank" before blanking
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-settings-daemon] power: Check for "no blank" before blanking
- Date: Mon, 21 Jan 2013 15:47:28 +0000 (UTC)
commit 4b1c68f2819153bb02f2aa921a2914fdb0e877ee
Author: Bastien Nocera <hadess hadess net>
Date: Mon Jan 21 10:19:47 2013 +0100
power: Check for "no blank" before blanking
plugins/power/test.py | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
---
diff --git a/plugins/power/test.py b/plugins/power/test.py
index 5029905..58ad4c8 100755
--- a/plugins/power/test.py
+++ b/plugins/power/test.py
@@ -179,15 +179,20 @@ class PowerPluginTest(gsdtestcase.GSDTestCase):
self.obj_screensaver.SetActive(True)
self.assertTrue(self.obj_screensaver.GetActive(), 'screensaver not turned on')
- # wait for short fade timeout, should blank
- self.check_blank(11)
+ # blank is supposed to happen straight away
+ self.check_blank(2)
- # wiggle the mouse now and check for unblank
+ # wiggle the mouse now and check for unblank; this is expected to pop up
+ # the locked screen saver
self.reset_idle_timer()
- self.check_unblank(1)
+ self.check_unblank(2)
+
+ # Check for no blank before the normal blank timeout
+ self.check_no_blank(gsdpowerconstants.SCREENSAVER_TIMEOUT_BLANK - 4)
+ self.assertTrue(self.obj_screensaver.GetActive(), 'screensaver not turned on')
# and check for blank after the blank timeout
- self.check_blank(gsdpowerconstants.SCREENSAVER_TIMEOUT_BLANK + 1)
+ self.check_blank(10)
def test_sleep_inactive_battery(self):
'''sleep-inactive-battery-timeout'''
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]