1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
MARIONETTE_TIMEOUT = 10000;
var Services = SpecialPowers.Services;
function testScreenState(on, expected, msg) {
// send event to RadioInterface
Services.obs.notifyObservers(null, 'screen-state-changed', on);
// maybe rild/qemu needs some time to process the event
window.setTimeout(function() {
runEmulatorCmd('gsm report creg', function(result) {
is(result.pop(), 'OK', '\'gsm report creg\' successful');
ok(result.indexOf(expected) !== -1, msg);
runNextTest();
})}, 1000);
}
function testScreenStateDisabled() {
testScreenState('off', '+CREG: 1', 'screen is disabled');
}
function testScreenStateEnabled() {
testScreenState('on', '+CREG: 2', 'screen is enabled');
}
var tests = [
testScreenStateDisabled,
testScreenStateEnabled
];
function runNextTest() {
let test = tests.shift();
if (!test) {
cleanUp();
return;
}
test();
}
function cleanUp() {
finish();
}
runNextTest();
|