summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webaudio/the-audio-api/the-iirfilternode-interface/test-iirfilternode.html
blob: 61c11ffc5083a90ba7a29183a521a7aacac38f72 (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
<!doctype html>
<meta charset=utf-8>
<title>Test the IIRFilterNode Interface</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
test(function(t) {
  var ac = new AudioContext();

  function check_args(arg1, arg2, err, desc) {
    test(function() {
      assert_throws(err, function() {
        ac.createIIRFilter(arg1, arg2)
      })
    }, desc)
  }

  check_args([], [1.0], 'NotSupportedError',
             'feedforward coefficients can not be empty');

  check_args([1.0], [], 'NotSupportedError',
             'feedback coefficients can not be empty');

  var coeff = new Float32Array(21)
  coeff[0] = 1.0;

  check_args(coeff, [1.0], 'NotSupportedError',
             'more than 20 feedforward coefficients can not be used');

  check_args([1.0], coeff, 'NotSupportedError',
             'more than 20 feedback coefficients can not be used');

  check_args([0.0, 0.0], [1.0], 'InvalidStateError',
             'at least one feedforward coefficient must be non-zero');

  check_args([0.5, 0.5], [0.0], 'InvalidStateError',
             'the first feedback coefficient must be non-zero');

}, "IIRFilterNode coefficients are checked properly");

test(function(t) {
  var ac = new AudioContext();

  var frequencies = new Float32Array([-1.0, ac.sampleRate*0.5 - 1.0, ac.sampleRate]);
  var magResults = new Float32Array(3);
  var phaseResults = new Float32Array(3);

  var filter = ac.createIIRFilter([0.5, 0.5], [1.0]);
  filter.getFrequencyResponse(frequencies, magResults, phaseResults);

  assert_true(isNaN(magResults[0]), "Invalid input frequency should give NaN magnitude response");
  assert_true(!isNaN(magResults[1]), "Valid input frequency should not give NaN magnitude response");
  assert_true(isNaN(magResults[2]), "Invalid input frequency should give NaN magnitude response");
  assert_true(isNaN(phaseResults[0]), "Invalid input frequency should give NaN phase response");
  assert_true(!isNaN(phaseResults[1]), "Valid input frequency should not give NaN phase response");
  assert_true(isNaN(phaseResults[2]), "Invalid input frequency should give NaN phase response");

}, "IIRFilterNode getFrequencyResponse handles invalid frequencies properly");
</script>