summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/idle-detection/page-visibility.https.html
blob: 550683f704c99efc73e6de2412b56fb2664699ba (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<link rel="help" href="https://github.com/samuelgoto/idle-detection">
<title>Tests the Idle Detection API</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/test-only-api.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/page-visibility/resources/window_state_context.js"></script>
<script src="resources/idle-detection-helper.js"></script>
<script>
'use strict';

promise_setup(async t => {
  await test_driver.set_permission({ name: 'idle-detection' }, 'granted');
  if (isChromiumBased) {
    await loadChromiumResources();
  }
})

promise_test(async t => {
  let monitor;

  expect(addMonitor).andReturn(async (monitorPtr) => {
      monitor = monitorPtr;
      return {
        error: IdleDetectorError.SUCCESS,
        state: {
          idleTime: null,
          screenLocked: false
        }
      };
    });

  const controller = new AbortController();
  t.add_cleanup(() => {
    controller.abort();
  });
  const detector = new IdleDetector();
  const watcher = new EventWatcher(t, detector, ["change"]);
  const initial_state = watcher.wait_for("change");

  await detector.start({threshold: 60000, signal: controller.signal});
  await initial_state;

  assert_equals(detector.userState, "active");
  assert_false(document.hidden);

  const {minimize, restore} = window_state_context(t);

  await minimize();
  monitor.update(
          {
            idleTime: { milliseconds: 0 },
            screenLocked: false
          },
          /*is_overridden_by_devtools=*/true
        );

  // Assert that the detector works while the page is not visible.
  await watcher.wait_for("change");
  assert_equals(detector.userState, "idle");
  assert_true(document.hidden);

  await restore();
  monitor.update(
          {
            idleTime: null,
            screenLocked: false
          },
          /*is_overridden_by_devtools=*/true
        );

  await watcher.wait_for("change");
  assert_equals(detector.userState, "active");
  assert_false(document.hidden);
}, 'Page visibility.');

</script>