summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_analyserNode.html
blob: 0793eeb2cb4a82da53c1b4cab3829c3c81c1b508 (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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE HTML>
<html>
<head>
  <title>Test AnalyserNode</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="webaudio.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">

function testNode() {
  var context = new AudioContext();
  var buffer = context.createBuffer(1, 2048, context.sampleRate);
  for (var i = 0; i < 2048; ++i) {
    buffer.getChannelData(0)[i] = Math.sin(440 * 2 * Math.PI * i / context.sampleRate);
  }

  var destination = context.destination;

  var source = context.createBufferSource();

  var analyser = context.createAnalyser();

  source.buffer = buffer;

  source.connect(analyser);
  analyser.connect(destination);

  is(analyser.channelCount, 2, "analyser node has 2 input channels by default");
  is(analyser.channelCountMode, "max", "Correct channelCountMode for the analyser node");
  is(analyser.channelInterpretation, "speakers", "Correct channelCountInterpretation for the analyser node");

  is(analyser.fftSize, 2048, "Correct default value for fftSize");
  is(analyser.frequencyBinCount, 1024, "Correct default value for frequencyBinCount");
  expectException(function() {
    analyser.fftSize = 0;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 1;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 8;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 100; // non-power of two
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 2049;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 4097;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 8193;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 16385;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 32769;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.fftSize = 65536;
  }, DOMException.INDEX_SIZE_ERR);
  analyser.fftSize = 1024;
  is(analyser.frequencyBinCount, 512, "Correct new value for frequencyBinCount");

  is(analyser.minDecibels, -100, "Correct default value for minDecibels");
  is(analyser.maxDecibels, -30, "Correct default value for maxDecibels");
  expectException(function() {
    analyser.minDecibels = -30;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.minDecibels = -29;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.maxDecibels = -100;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.maxDecibels = -101;
  }, DOMException.INDEX_SIZE_ERR);

  ok(Math.abs(analyser.smoothingTimeConstant - 0.8) < 0.001, "Correct default value for smoothingTimeConstant");
  expectException(function() {
    analyser.smoothingTimeConstant = -0.1;
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser.smoothingTimeConstant = 1.1;
  }, DOMException.INDEX_SIZE_ERR);
  analyser.smoothingTimeConstant = 0;
  analyser.smoothingTimeConstant = 1;
}

function testConstructor() {
  var context = new AudioContext();

  var analyser = new AnalyserNode(context);
  is(analyser.channelCount, 2, "analyser node has 2 input channels by default");
  is(analyser.channelCountMode, "max", "Correct channelCountMode for the analyser node");
  is(analyser.channelInterpretation, "speakers", "Correct channelCountInterpretation for the analyser node");

  is(analyser.fftSize, 2048, "Correct default value for fftSize");
  is(analyser.frequencyBinCount, 1024, "Correct default value for frequencyBinCount");
  is(analyser.minDecibels, -100, "Correct default value for minDecibels");
  is(analyser.maxDecibels, -30, "Correct default value for maxDecibels");
  ok(Math.abs(analyser.smoothingTimeConstant - 0.8) < 0.001, "Correct default value for smoothingTimeConstant");

  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 0 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 1 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 8 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 100 }); // non-power of two
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 2049 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 4097 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 8193 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 16385 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 32769 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { fftSize: 65536 });
  }, DOMException.INDEX_SIZE_ERR);
  analyser = new AnalyserNode(context, { fftSize: 1024 });
  is(analyser.frequencyBinCount, 512, "Correct new value for frequencyBinCount");

  expectException(function() {
    analyser = new AnalyserNode(context, { minDecibels: -30 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { minDecibels: -29 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { maxDecibels: -100 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { maxDecibels: -101 });
  }, DOMException.INDEX_SIZE_ERR);

  expectException(function() {
    analyser = new AnalyserNode(context, { smoothingTimeConstant: -0.1 });
  }, DOMException.INDEX_SIZE_ERR);
  expectException(function() {
    analyser = new AnalyserNode(context, { smoothingTimeConstant: -1.1 });
  }, DOMException.INDEX_SIZE_ERR);
  analyser = new AnalyserNode(context, { smoothingTimeConstant: 0 });
  analyser = new AnalyserNode(context, { smoothingTimeConstant: 1 });
}

SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {

  testNode();
  testConstructor();

  SimpleTest.finish();
});

</script>
</pre>
</body>
</html>