Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: third_party/WebKit/LayoutTests/webaudio/constructor/constantsource.html

Issue 2134813002: Implement ConstantSourceNode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/webaudio/constructor/constantsource.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/constructor/constantsource.html b/third_party/WebKit/LayoutTests/webaudio/constructor/constantsource.html
new file mode 100644
index 0000000000000000000000000000000000000000..a705de5050dadc0af664da3929da7f5c29a98d6f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/webaudio/constructor/constantsource.html
@@ -0,0 +1,74 @@
+<!doctype html>
+<html>
+ <head>
+ <title>Test Constructor: ConstantSource</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;
+
+ var audit = Audit.createTaskRunner();
+
+ audit.defineTask("initialize", function (taskDone) {
+ Should("context = new OfflineAudioContext(...)", function () {
+ context = new OfflineAudioContext(1, 1, 48000);
+ }).notThrow();
+ taskDone();
+ });
+
+ audit.defineTask("invalid constructor", function (taskDone) {
+ var node;
+ var success = true;
+
+ succes = Should("new ConstantSourceNode()", function () {
+ node = new ConstantSourceNode();
+ }).throw("TypeError");
+ success = Should("new ConstantSourceNode(1)", function () {
+ node = new ConstantSourceNode(1);
+ }).throw("TypeError") && success;
+ success = Should("new ConstantSourceNode(context, 42)", function () {
+ node = new ConstantSourceNode(context, 42);
+ }).throw("TypeError") && success;
+
+ Should("*** Invalid constructors", success)
+ .summarize(
+ "correctly threw errors",
+ "did not throw errors in all cases");
+ taskDone();
+ });
+
+ audit.defineTask("default constructor", function (taskDone) {
+ var node;
+ var success = true;
+
+ success = Should("node = new ConstantSourceNode(context)", function () {
+ node = new ConstantSourceNode(context);
+ }).notThrow();
+ success = Should("node instanceOf ConstantSourceNode", node instanceof ConstantSourceNode)
+ .beEqualTo(true) && success;
+ success = Should("node.offset.value", node.offset.value)
+ .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("*** new AnalyserNode(context)", success)
+ .summarize(
+ "constructed node with correct attributes",
+ "did not construct correct node correctly")
+
+ taskDone();
+ });
+
+ audit.runTasks();
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698