summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webaudio/the-audio-api/the-audioworklet-interface/audioworkletnode-construction.https.html
blob: 8b7704a781b712c0129b650da898ed79baad794c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
  <head>
    <title>
      Test the construction of AudioWorkletNode with real-time context
    </title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/webaudio/resources/audit.js"></script>
  </head>
  <body>
    <script id="layout-test-code">
      let audit = Audit.createTaskRunner();

      let realtimeContext = new AudioContext();

      let filePath = 'processors/dummy-processor.js';

      // Test if an exception is thrown correctly when AWN constructor is
      // invoked before resolving |.addModule()| promise.
      audit.define(
          {label: 'construction-before-module-loading'},
          (task, should) => {
            should(() => new AudioWorkletNode(realtimeContext, 'dummy'),
                   'Creating a node before loading a module should throw.')
                .throw(DOMException, 'InvalidStateError');

            task.done();
          });

      // Test the construction of AudioWorkletNode after the resolution of
      // |.addModule()|. Also the constructor must throw an exception when
      // a unregistered node name was given.
      audit.define(
          {label: 'construction-after-module-loading'},
          (task, should) => {
            realtimeContext.audioWorklet.addModule(filePath).then(() => {
              let dummyWorkletNode =
                  new AudioWorkletNode(realtimeContext, 'dummy');
              should(dummyWorkletNode instanceof AudioWorkletNode,
                     '"dummyWorkletNode" is an instance of AudioWorkletNode')
                  .beTrue();
              should(() => new AudioWorkletNode(realtimeContext, 'foobar'),
                     'Unregistered name "foobar" must throw an exception.')
                  .throw();
              task.done();
            });
          });

      audit.run();
    </script>
  </body>
</html>