| Index: third_party/WebKit/LayoutTests/webaudio/constant-source-basic.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/constant-source-basic.html b/third_party/WebKit/LayoutTests/webaudio/constant-source-basic.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2ea5b95ee8fec330908b2fca21f1a0b2d2c22226
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/constant-source-basic.html
|
| @@ -0,0 +1,88 @@
|
| +<!doctype html>
|
| +<html>
|
| + <head>
|
| + <title>Basic ConstantSourceNode Tests</title>
|
| + <script src="../resources/testharness.js"></script>
|
| + <script src="../resources/testharnessreport.js"></script>
|
| + <script src="resources/audio-testing.js"></script>
|
| + </head>
|
| +
|
| + <body>
|
| + <script>
|
| + var context = new AudioContext();
|
| +
|
| + var audit = Audit.createTaskRunner();
|
| +
|
| + audit.defineTask("createConstantSource()", function (taskDone) {
|
| + var node;
|
| + var success = true;
|
| +
|
| + success = Should("node = context.createConstantSource()", function () {
|
| + node = context.createConstantSource();
|
| + }).notThrow();
|
| + success = Should("node instance of ConstantSourceNode",
|
| + node instanceof ConstantSourceNode)
|
| + .beEqualTo(true) && success;
|
| +
|
| + success = verifyNodeDefaults(node) && success;
|
| +
|
| + Should("createConstantSource()", success)
|
| + .summarize(
|
| + "correctly created",
|
| + "incorrectly created");
|
| +
|
| + taskDone();
|
| + });
|
| +
|
| + audit.defineTask("new ConstantSourceNode()", function (taskDone) {
|
| + var node;
|
| + var success = true;
|
| +
|
| + success = Should("node = new ConstantSourceNode()", function () {
|
| + node = new ConstantSourceNode(context);
|
| + }).notThrow();
|
| + success = Should("node instance of ConstantSourceNode",
|
| + node instanceof ConstantSourceNode)
|
| + .beEqualTo(true) && success;
|
| +
|
| +
|
| + success = verifyNodeDefaults(node) && success;
|
| +
|
| + Should("new ConstantSourceNode(context)", success)
|
| + .summarize(
|
| + "correctly created",
|
| + "incorrectly created");
|
| +
|
| + taskDone();
|
| + });
|
| +
|
| + function verifyNodeDefaults(node) {
|
| + var success = true;
|
| +
|
| + success = Should("node.numberOfInputs", node.numberOfInputs)
|
| + .beEqualTo(0);
|
| + success = Should("node.numberOfOutputs", node.numberOfOutputs)
|
| + .beEqualTo(1) && success;
|
| + success = Should("node.channelCount", node.channelCount)
|
| + .beEqualTo(2) && success;
|
| + success = Should("node.channelCountMode", node.channelCountMode)
|
| + .beEqualTo("max") && success;
|
| + success = Should("node.channelInterpretation", node.channelInterpretation)
|
| + .beEqualTo("speakers") && success;
|
| +
|
| + success = Should("node.offset.value", node.offset.value)
|
| + .beEqualTo(1) && success;
|
| + success = Should("node.offset.defaultValue", node.offset.defaultValue)
|
| + .beEqualTo(1) && success;
|
| + success = Should("node.offset.minValue", node.offset.minValue)
|
| + .beEqualTo(Math.fround(-3.4028235e38)) && success;
|
| + success = Should("node.offset.maxValue", node.offset.maxValue)
|
| + .beEqualTo(Math.fround(3.4028235e38)) && success;
|
| +
|
| + return success;
|
| + }
|
| +
|
| + audit.runTasks();
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|