mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
ed71d8141b
no longer using AMD (require.js) style imports, and beginning to move to es6 "import/export" statements everywhere.
53 lines
1.1 KiB
JavaScript
53 lines
1.1 KiB
JavaScript
import FFT from "Tone/component/FFT";
|
|
import Test from "helper/Test";
|
|
import Basic from "helper/Basic";
|
|
import Noise from "Tone/source/Noise";
|
|
|
|
describe("FFT", function(){
|
|
|
|
Basic(FFT);
|
|
|
|
it("handles input connection", function(){
|
|
var fft = new FFT();
|
|
Test.connect(fft);
|
|
fft.dispose();
|
|
});
|
|
|
|
it("can get and set properties", function(){
|
|
var fft = new FFT();
|
|
fft.set({
|
|
"size" : 128
|
|
});
|
|
var values = fft.get();
|
|
expect(values.size).to.equal(128);
|
|
fft.dispose();
|
|
});
|
|
|
|
it("can correctly set the size", function(){
|
|
var fft = new FFT(512);
|
|
expect(fft.size).to.equal(512);
|
|
fft.size = 1024;
|
|
expect(fft.size).to.equal(1024);
|
|
fft.dispose();
|
|
});
|
|
|
|
it("can run waveform analysis", function(done){
|
|
var noise = new Noise();
|
|
var fft = new FFT(256);
|
|
noise.connect(fft);
|
|
noise.start();
|
|
|
|
setTimeout(function(){
|
|
var analysis = fft.getValue();
|
|
expect(analysis.length).to.equal(256);
|
|
for (var i = 0; i < analysis.length; i++){
|
|
expect(analysis[i]).is.within(-Infinity, 0);
|
|
}
|
|
fft.dispose();
|
|
noise.dispose();
|
|
done();
|
|
}, 300);
|
|
});
|
|
|
|
});
|
|
|