зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1204793 - Testcase for checking the agent active state when changing the volume. r=baku
--HG-- extra : rebase_source : cc9c4b231b66eb51eae4556bf0738b57e5d46bfd
This commit is contained in:
Родитель
abd0ec462b
Коммит
7cb7d44fc1
|
@ -0,0 +1,126 @@
|
|||
"use strict";
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
browserElementTestHelpers.setEnabledPref(true);
|
||||
browserElementTestHelpers.addPermission();
|
||||
|
||||
var fileURL = 'http://example.org/tests/dom/browser-element/mochitest/file_browserElement_ActiveStateChangeOnChangingMutedOrVolume.html';
|
||||
var generator = runTests();
|
||||
var testFrame;
|
||||
var ac;
|
||||
|
||||
function assert(aVal, aMessage) {
|
||||
return (!aVal) ? error(aMessage) : 0;
|
||||
}
|
||||
|
||||
function error(aMessage) {
|
||||
ok(false, "Error : " + aMessage);
|
||||
finish();
|
||||
}
|
||||
|
||||
function continueTest() {
|
||||
try {
|
||||
generator.next();
|
||||
} catch (e if e instanceof StopIteration) {
|
||||
error("Stop test because of exception!");
|
||||
}
|
||||
}
|
||||
|
||||
function finish() {
|
||||
document.body.removeChild(testFrame);
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
function setCommand(aArg) {
|
||||
assert(!!ac, "Audio channel doesn't exist!");
|
||||
info("# Command = " + aArg);
|
||||
|
||||
testFrame.src = fileURL + '#' + aArg;
|
||||
var expectedActive = false;
|
||||
switch (aArg) {
|
||||
case 'play':
|
||||
case 'unmute':
|
||||
case 'volume-1':
|
||||
expectedActive = true;
|
||||
break;
|
||||
case 'pause':
|
||||
case 'mute':
|
||||
case 'volume-0':
|
||||
expectedActive = false;
|
||||
break;
|
||||
default :
|
||||
error("Undefined command!");
|
||||
}
|
||||
|
||||
ac.onactivestatechanged = () => {
|
||||
ac.onactivestatechanged = null;
|
||||
ac.isActive().onsuccess = (e) => {
|
||||
is(expectedActive, e.target.result,
|
||||
"Correct active state = " + expectedActive);
|
||||
continueTest();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function runTests() {
|
||||
setCommand('play');
|
||||
yield undefined;
|
||||
|
||||
setCommand('mute');
|
||||
yield undefined;
|
||||
|
||||
setCommand('unmute');
|
||||
yield undefined;
|
||||
|
||||
setCommand('volume-0');
|
||||
yield undefined;
|
||||
|
||||
setCommand('volume-1');
|
||||
yield undefined;
|
||||
|
||||
setCommand('pause');
|
||||
yield undefined;
|
||||
|
||||
finish();
|
||||
yield undefined;
|
||||
}
|
||||
|
||||
function setupTestFrame() {
|
||||
testFrame = document.createElement('iframe');
|
||||
testFrame.setAttribute('mozbrowser', 'true');
|
||||
testFrame.setAttribute('mozapp', 'http://example.org/manifest.webapp');
|
||||
testFrame.src = fileURL;
|
||||
|
||||
function loadend() {
|
||||
testFrame.removeEventListener('mozbrowserloadend', loadend);
|
||||
ok("allowedAudioChannels" in testFrame, "allowedAudioChannels exist");
|
||||
var channels = testFrame.allowedAudioChannels;
|
||||
is(channels.length, 1, "1 audio channel by default");
|
||||
|
||||
ac = channels[0];
|
||||
|
||||
ok(ac instanceof BrowserElementAudioChannel, "Correct class");
|
||||
ok("isActive" in ac, "isActive exists");
|
||||
ok("onactivestatechanged" in ac, "onactivestatechanged exists");
|
||||
|
||||
generator.next();
|
||||
}
|
||||
|
||||
function alertError(e) {
|
||||
testFrame.removeEventListener('mozbrowsershowmodalprompt', alertError);
|
||||
var message = e.detail.message
|
||||
error(message);
|
||||
}
|
||||
|
||||
testFrame.addEventListener('mozbrowserloadend', loadend);
|
||||
testFrame.addEventListener('mozbrowsershowmodalprompt', alertError);
|
||||
document.body.appendChild(testFrame);
|
||||
}
|
||||
|
||||
addEventListener('testready', function() {
|
||||
SpecialPowers.pushPrefEnv({'set': [["b2g.system_manifest_url", "http://mochi.test:8888/manifest.webapp"]]},
|
||||
function() {
|
||||
SimpleTest.executeSoon(setupTestFrame);
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<script type="application/javascript;version=1.7">
|
||||
var audio = new Audio();
|
||||
audio.src = "audio.ogg";
|
||||
audio.loop = true;
|
||||
|
||||
function runCommands()
|
||||
{
|
||||
switch(location.hash) {
|
||||
case '#play':
|
||||
audio.play();
|
||||
break;
|
||||
case '#mute':
|
||||
audio.muted = true;
|
||||
break;
|
||||
case '#unmute':
|
||||
audio.muted = false;
|
||||
break;
|
||||
case '#volume-0':
|
||||
audio.volume = 0.0;
|
||||
break;
|
||||
case '#volume-1':
|
||||
audio.volume = 1.0;
|
||||
break;
|
||||
case '#pause':
|
||||
audio.pause();
|
||||
break;
|
||||
default :
|
||||
alert("Undefined command!");
|
||||
}
|
||||
}
|
||||
window.addEventListener('hashchange', runCommands);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -124,3 +124,4 @@ disabled = bug 924771
|
|||
[test_browserElement_oop_getWebManifest.html]
|
||||
[test_browserElement_oop_OpenWindowEmpty.html]
|
||||
skip-if = (toolkit == 'gonk') # Test doesn't work on B2G emulator
|
||||
[test_browserElement_oop_ActiveStateChangeOnChangingMutedOrVolume.html]
|
||||
|
|
|
@ -5,6 +5,7 @@ support-files =
|
|||
../../../dom/media/test/short-video.ogv
|
||||
async.js
|
||||
browserElementTestHelpers.js
|
||||
browserElement_ActiveStateChangeOnChangingMutedOrVolume.js
|
||||
browserElement_Alert.js
|
||||
browserElement_AlertInFrame.js
|
||||
browserElement_AllowEmbedAppsInNestedOOIframe.js
|
||||
|
@ -84,6 +85,7 @@ support-files =
|
|||
browserElement_GetContentDimensions.js
|
||||
browserElement_AudioChannel.js
|
||||
browserElement_AudioChannel_nested.js
|
||||
file_browserElement_ActiveStateChangeOnChangingMutedOrVolume.html
|
||||
file_browserElement_AlertInFrame.html
|
||||
file_browserElement_AlertInFrame_Inner.html
|
||||
file_browserElement_AllowEmbedAppsInNestedOOIframe.html
|
||||
|
@ -258,3 +260,4 @@ disabled = bug 774100
|
|||
[test_browserElement_inproc_getStructuredData.html]
|
||||
[test_browserElement_inproc_OpenWindowEmpty.html]
|
||||
skip-if = (toolkit == 'gonk') # Test doesn't work on B2G emulator
|
||||
[test_browserElement_inproc_ActiveStateChangeOnChangingMutedOrVolume.html]
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Test ActiveStateChangeOnChangingMutedOrVolume</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<script type="application/javascript" src="browserElementTestHelpers.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<script type="application/javascript;version=1.7" src="browserElement_ActiveStateChangeOnChangingMutedOrVolume.js">
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Test ActiveStateChangeOnChangingMutedOrVolume</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<script type="application/javascript" src="browserElementTestHelpers.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<script type="application/javascript;version=1.7" src="browserElement_ActiveStateChangeOnChangingMutedOrVolume.js">
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче