summaryrefslogtreecommitdiffstats
path: root/dom/media/mediasource/test
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/mediasource/test')
-rw-r--r--dom/media/mediasource/test/mochitest.toml2
-rw-r--r--dom/media/mediasource/test/test_BufferedSeekCanPlayThrough.html46
-rw-r--r--dom/media/mediasource/test/test_EndOfStream.html2
-rw-r--r--dom/media/mediasource/test/test_EndOfStream_mp4.html2
-rw-r--r--dom/media/mediasource/test/test_ExperimentalAsync.html4
-rw-r--r--dom/media/mediasource/test/test_SetModeThrows.html2
6 files changed, 53 insertions, 5 deletions
diff --git a/dom/media/mediasource/test/mochitest.toml b/dom/media/mediasource/test/mochitest.toml
index b9ed95b2bb..7e60af8929 100644
--- a/dom/media/mediasource/test/mochitest.toml
+++ b/dom/media/mediasource/test/mochitest.toml
@@ -270,3 +270,5 @@ skip-if = [
["test_WaitingOnMissingData_mp4.html"]
["test_WaitingToEndedTransition_mp4.html"]
+
+["test_BufferedSeekCanPlayThrough.html"]
diff --git a/dom/media/mediasource/test/test_BufferedSeekCanPlayThrough.html b/dom/media/mediasource/test/test_BufferedSeekCanPlayThrough.html
new file mode 100644
index 0000000000..5c789a7b6e
--- /dev/null
+++ b/dom/media/mediasource/test/test_BufferedSeekCanPlayThrough.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html><head>
+<meta http-equiv="content-type" content="text/html; charset=windows-1252">
+ <title>MSE: Don't get stuck buffering for too long when we have frames to show</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();
+
+runWithMSE(async (ms, v) => {
+ logEvents(v);
+ await once(ms, "sourceopen");
+ ok(true, "Receive a sourceopen event");
+ ms.addEventListener("sourceopen", () => ok(false, "No more sourceopen"));
+ const sb = ms.addSourceBuffer("video/mp4");
+ ok(sb, "Create a SourceBuffer");
+ sb.addEventListener("error", e => {
+ ok(false, "Got Error: " + e);
+ SimpleTest.finish();
+ });
+
+ // Load just the beginning of the media, and the end. Verify
+ // that canplaythrough isn't fired, and waiting is fired.
+ await fetchAndLoad(sb, "bipbop/bipbop_video", ["init"], ".mp4");
+ await fetchAndLoad(sb, "bipbop/bipbop_video", ["1"], ".m4s");
+ await fetchAndLoad(sb, "bipbop/bipbop_video", ["9"], ".m4s");
+ // Slighly before the end of the first segment.
+ v.currentTime = v.buffered.end(0) - 0.1;
+ v.onseeked = function() {
+ is(v.readyState, HTMLMediaElement.HAVE_FUTURE_DATA,
+ "readyState is HAVE_FUTURE_DATA after seeking close to a large gap");
+ SimpleTest.finish();
+ }
+ v.oncanplaythrough = function() {
+ ok(false, "Should not have received canplaythrough");
+ SimpleTest.finish();
+ }
+});
+</script>
+</pre>
+</body>
+</html>
diff --git a/dom/media/mediasource/test/test_EndOfStream.html b/dom/media/mediasource/test/test_EndOfStream.html
index b926869f1f..bcaf2ee54d 100644
--- a/dom/media/mediasource/test/test_EndOfStream.html
+++ b/dom/media/mediasource/test/test_EndOfStream.html
@@ -12,7 +12,7 @@
SimpleTest.waitForExplicitFinish();
-runWithMSE(async (ms, v) => {
+runWithMSE(async (ms) => {
await once(ms, "sourceopen");
const sb = ms.addSourceBuffer("video/webm");
diff --git a/dom/media/mediasource/test/test_EndOfStream_mp4.html b/dom/media/mediasource/test/test_EndOfStream_mp4.html
index 9319b80390..140641565d 100644
--- a/dom/media/mediasource/test/test_EndOfStream_mp4.html
+++ b/dom/media/mediasource/test/test_EndOfStream_mp4.html
@@ -12,7 +12,7 @@
SimpleTest.waitForExplicitFinish();
-runWithMSE(async (ms, v) => {
+runWithMSE(async (ms) => {
await once(ms, "sourceopen");
const sb = ms.addSourceBuffer("video/mp4");
diff --git a/dom/media/mediasource/test/test_ExperimentalAsync.html b/dom/media/mediasource/test/test_ExperimentalAsync.html
index 6617716f26..e64a9befeb 100644
--- a/dom/media/mediasource/test/test_ExperimentalAsync.html
+++ b/dom/media/mediasource/test/test_ExperimentalAsync.html
@@ -61,7 +61,7 @@ runWithMSE(async function(ms, el) {
await once(el, "seeked");
dump("dump: seeked to " + seekTime);
is(el.currentTime, seekTime, "correctly seeked to " + seekTime);
- await audiosb.appendBufferAsync(audioBuffer).catch(async function(ex2) {
+ await audiosb.appendBufferAsync(audioBuffer).catch(async function() {
ok(false, "Shouldn't throw another time when data can be evicted");
dump(JSON.stringify(await SpecialPowers.wrap(el).mozRequestDebugInfo()));
SimpleTest.finish();
@@ -73,7 +73,7 @@ runWithMSE(async function(ms, el) {
await audiosb.removeAsync(ms.duration + 1, Infinity).catch(async function(ex4) {
ok(true, "remove promise got rejected with start > duration");
is(ex4.name, "TypeError");
- await audiosb.removeAsync(0, Infinity).catch(function(ex5) {
+ await audiosb.removeAsync(0, Infinity).catch(function() {
ok(false, "shouldn't throw");
});
ok(true, "remove succeeded");
diff --git a/dom/media/mediasource/test/test_SetModeThrows.html b/dom/media/mediasource/test/test_SetModeThrows.html
index c715854b41..c81cb1b70f 100644
--- a/dom/media/mediasource/test/test_SetModeThrows.html
+++ b/dom/media/mediasource/test/test_SetModeThrows.html
@@ -13,7 +13,7 @@
SimpleTest.waitForExplicitFinish();
// MSE supports setting mode now. make sure it does not throw.
-runWithMSE(function(ms, v) {
+runWithMSE(function(ms) {
ms.addEventListener("sourceopen", () => {
const sb = ms.addSourceBuffer("video/webm");