Bug 815643 - Part 7: Add a basic API test for ConvolverNode; r=roc

--HG--
extra : rebase_source : be90de45e240fec45875a65235104d2d92716a14
This commit is contained in:
Ehsan Akhgari 2013-06-10 16:09:38 -04:00
Родитель 05a4ee9f4a
Коммит f7d0ddbba6
2 изменённых файлов: 36 добавлений и 0 удалений

Просмотреть файл

@ -51,6 +51,7 @@ MOCHITEST_FILES := \
test_channelMergerNodeWithVolume.html \
test_channelSplitterNode.html \
test_channelSplitterNodeWithVolume.html \
test_convolverNode.html \
test_currentTime.html \
test_delayNode.html \
test_delayNodeSmallMaxDelay.html \

Просмотреть файл

@ -0,0 +1,35 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Test the ConvolverNode interface</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="webaudio.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();
addLoadEvent(function() {
SpecialPowers.setBoolPref("media.webaudio.enabled", true);
var context = new AudioContext();
var conv = context.createConvolver();
is(conv.channelCount, 2, "Convolver node has 2 input channels by default");
is(conv.channelCountMode, "clamped-max", "Correct channelCountMode for the Convolver node");
is(conv.channelInterpretation, "speakers", "Correct channelCountInterpretation for the Convolver node");
is(conv.buffer, null, "Default buffer value");
conv.buffer = context.createBuffer(2, 1024, 22050);
is(conv.normalize, true, "Default normalize value");
SpecialPowers.clearUserPref("media.webaudio.enabled");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>