summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webaudio/the-audio-api/the-stereopanner-interface/ctor-stereopanner.html
blob: 9409f1ffce2110c177332388988d7ddb559d3ae2 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
  <head>
    <title>
      Test Constructor: StereoPanner
    </title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/webaudio/resources/audit-util.js"></script>
    <script src="/webaudio/resources/audit.js"></script>
    <script src="/webaudio/resources/audionodeoptions.js"></script>
  </head>
  <body>
    <script id="layout-test-code">
      let context;

      let audit = Audit.createTaskRunner();

      audit.define('initialize', (task, should) => {
        context = initializeContext(should);
        task.done();
      });

      audit.define('invalid constructor', (task, should) => {
        testInvalidConstructor(should, 'StereoPannerNode', context);
        task.done();
      });

      audit.define('default constructor', (task, should) => {
        let prefix = 'node0';
        let node = testDefaultConstructor(should, 'StereoPannerNode', context, {
          prefix: prefix,
          numberOfInputs: 1,
          numberOfOutputs: 1,
          channelCount: 2,
          channelCountMode: 'clamped-max',
          channelInterpretation: 'speakers'
        });

        testDefaultAttributes(should, node, prefix, [{name: 'pan', value: 0}]);

        task.done();
      });

      audit.define('test AudioNodeOptions', (task, should) => {
        // Can't use testAudioNodeOptions because the constraints for this node
        // are not supported there.
        let node;

        // An array of tests.
        [{
          // Test that we can set the channel count to 1 or 2 and that other
          // channel counts throw an error.
          attribute: 'channelCount',
          tests: [
            {value: 1}, {value: 2}, {value: 0, error: 'NotSupportedError'},
            {value: 3, error: 'NotSupportedError'},
            {value: 99, error: 'NotSupportedError'}
          ]
        },
         {
           // Test channelCountMode.  A mode of "max" is illegal, but others are
           // ok.  But also throw an error of unknown values.
           attribute: 'channelCountMode',
           tests: [
             {value: 'clamped-max'}, {value: 'explicit'},
             {value: 'max', error: 'NotSupportedError'},
             {value: 'foobar', error: TypeError}
           ]
         },
         {
           // Test channelInterpretation can be set for valid values and an
           // error is thrown for others.
           attribute: 'channelInterpretation',
           tests: [
             {value: 'speakers'}, {value: 'discrete'},
             {value: 'foobar', error: TypeError}
           ]
         }].forEach(entry => {
          entry.tests.forEach(testItem => {
            let options = {};
            options[entry.attribute] = testItem.value;

            const testFunction = () => {
              node = new StereoPannerNode(context, options);
            };
            const testDescription =
                `new StereoPannerNode(c, ${JSON.stringify(options)})`;

            if (testItem.error) {
              testItem.error === TypeError
              ? should(testFunction, testDescription).throw(TypeError)
              : should(testFunction, testDescription)
                  .throw(DOMException, 'NotSupportedError');
            } else {
              should(testFunction, testDescription).notThrow();
              should(node[entry.attribute], `node.${entry.attribute}`)
                  .beEqualTo(options[entry.attribute]);
            }
          });
        });

        task.done();
      });

      audit.define('constructor with options', (task, should) => {
        let node;
        let options = {
          pan: 0.75,
        };

        should(
            () => {
              node = new StereoPannerNode(context, options);
            },
            'node1 = new StereoPannerNode(, ' + JSON.stringify(options) + ')')
            .notThrow();
        should(
            node instanceof StereoPannerNode,
            'node1 instanceof StereoPannerNode')
            .beEqualTo(true);

        should(node.pan.value, 'node1.pan.value').beEqualTo(options.pan);

        task.done();
      });

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