summaryrefslogtreecommitdiffstats
path: root/dom/media/mediasession/test/test_setactionhandler.html
blob: e0fba77d806e5f719d191989cb0331cb9787c8de (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
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE HTML>
<html>
<head>
  <title></title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<script>

SimpleTest.waitForExplicitFinish();

const ACTIONS = [
  "play",
  "pause",
  "seekbackward",
  "seekforward",
  "previoustrack",
  "nexttrack",
  "skipad",
  "seekto",
  "stop",
];

(async function testSetActionHandler() {
  await setupPreference();

  for (const action of ACTIONS) {
    info(`Test setActionHandler for '${action}'`);
    generateAction(action);
    ok(true, "it's ok to do " + action + " without any handler");

    let expectedDetails = generateActionDetails(action);

    let fired = false;
    await setHandlerAndTakeAction(action, details => {
      ok(hasSameValue(details, expectedDetails), "get expected details for " + action);
      fired = !fired;
      clearActionHandler(action);
    });

    generateAction(action);
    ok(fired, "handler of " + action + " is cleared");
  }

  SimpleTest.finish();
})();

function setupPreference() {
  return SpecialPowers.pushPrefEnv({"set": [
    ["dom.media.mediasession.enabled", true],
  ]});
}

function generateAction(action) {
  let details = generateActionDetails(action);
  SpecialPowers.wrap(navigator.mediaSession).notifyHandler(details);
}

function generateActionDetails(action) {
  let details = { action };
  if (action == "seekbackward" || action == "seekforward") {
    details.seekOffset = 3.14159;
  } else if (action == "seekto") {
    details.seekTime = 1.618;
  }
  return details;
}

function setHandlerAndTakeAction(action, handler) {
  let promise = new Promise(resolve => {
    navigator.mediaSession.setActionHandler(action, details => {
      handler(details);
      resolve();
    });
  });
  generateAction(action);
  return promise;
}

function hasSameValue(a, b) {
  // The order of the object matters when stringify the object.
  return JSON.stringify(a) == JSON.stringify(b);
}

function clearActionHandler(action) {
  navigator.mediaSession.setActionHandler(action, null);
}

</script>
</body>
</html>