OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 AUTHOR = "Chrome OS Team" | 5 AUTHOR = "Chrome OS Team" |
6 NAME = "desktopui_ScreenSaverUnlock" | 6 NAME = "desktopui_ScreenLocker" |
7 PURPOSE = "Verify screen saver can be unlocked." | 7 PURPOSE = "Verify screen locker is functional." |
8 CRITERIA = """ | 8 CRITERIA = """ |
9 This test will fail if the screen cannot be unlocked with the correct password, | 9 This test will fail if the screen cannot be locked with ctrl-alt-l, or |
| 10 cannot be unlocked with the correct password, |
10 or if the screen is unlocked with an incorrect password. | 11 or if the screen is unlocked with an incorrect password. |
11 """ | 12 """ |
12 TIME = "SHORT" | 13 TIME = "SHORT" |
13 TEST_CATEGORY = "Functional" | 14 TEST_CATEGORY = "Functional" |
14 TEST_CLASS = "desktopui" | 15 TEST_CLASS = "desktopui" |
15 TEST_TYPE = "client" | 16 TEST_TYPE = "client" |
16 | 17 |
17 DOC = """ | 18 DOC = """ |
18 This test checks if the screen saver can be unlocked | 19 This test checks if the screen locker can lock and unlock the screen. |
19 """ | 20 """ |
20 | 21 |
21 job.run_test('desktopui_ScreenSaverUnlock', tag='success', is_control='False') | 22 job.run_test('desktopui_ScreenLocker') |
22 | 23 |
23 job.run_test('desktopui_ScreenSaverUnlock', tag='control', is_control='True') | 24 |
OLD | NEW |