summaryrefslogtreecommitdiffstats
path: root/dom/media/mediasource/test/test_PlayEventsAutoPlaying.html
blob: 3e395c799d1c6ce5fb37d9d5ecd1a321ecbcb553 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>MSE: basic functionality</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="mediasource.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();

// This test checks that readyState is properly set and the appropriate events are being fired accordingly:
// 1. Ensure that play/playing aren't fired before any media data been added.
// 2. Load 1.6s of data and ensure that canplay, play and playing events are fired.

runWithMSE(async (ms, el) => {
  el.controls = true;
  el.autoplay = true;
  const eventCounts = { play: 0, playing: 0 };
  await once(ms, "sourceopen");
  logEvents(el);
  ok(true, "Receive a sourceopen event");

  const forbiddenEvents = e => {
    ok(el.readyState >= el.HAVE_FUTURE_DATA, "Must not have received event too early");
    is(eventCounts[e.type], 0, "event should have only be fired once");
    eventCounts[e.type]++;
  };
  el.addEventListener("play", forbiddenEvents);
  el.addEventListener("playing", forbiddenEvents);

  const videosb = ms.addSourceBuffer("video/mp4");
  el.addEventListener("error", e => {
    ok(false, `should not fire ${e.type} event`);
    SimpleTest.finish();
  });
  is(el.readyState, el.HAVE_NOTHING, "readyState is HAVE_NOTHING");
  let p = once(el, "loadedmetadata");
  await fetchAndLoad(videosb, "bipbop/bipbop_video", ["init"], ".mp4");
  await p;
  ok(true, "got loadedmetadata event");
  // We're only adding 1.6s worth of data, not enough for readyState to change to HAVE_ENOUGH_DATA
  // So we end the media source so that all the playable data is available.
  p = Promise.all(["loadeddata", "canplay", "play", "playing", "ended"].map(e => once(el, e)));
  await fetchAndLoad(videosb, "bipbop/bipbop_video", range(1, 3), ".m4s");
  ms.endOfStream();
  await p;
  ok(true, "got all required event");
  SimpleTest.finish();
});

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