mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-29 13:03:06 +00:00
77 lines
1.7 KiB
TypeScript
77 lines
1.7 KiB
TypeScript
|
import { expect } from "chai";
|
||
|
// import Test from "helper/Test";
|
||
|
import { BasicTests } from "test/helper/Basic";
|
||
|
import { connectFrom } from "test/helper/Connect";
|
||
|
import { Noise } from "../../source/Noise";
|
||
|
import { Analyser } from "./Analyser";
|
||
|
|
||
|
describe("Analyser", () => {
|
||
|
|
||
|
BasicTests(Analyser);
|
||
|
|
||
|
it("handles input connection", () => {
|
||
|
const anl = new Analyser();
|
||
|
connectFrom().connect(anl);
|
||
|
anl.dispose();
|
||
|
});
|
||
|
|
||
|
it("can get and set properties", () => {
|
||
|
const anl = new Analyser();
|
||
|
anl.set({
|
||
|
size: 32,
|
||
|
smoothing: 0.2,
|
||
|
});
|
||
|
const values = anl.get();
|
||
|
expect(values.size).to.equal(32);
|
||
|
expect(values.smoothing).to.equal(0.2);
|
||
|
anl.dispose();
|
||
|
});
|
||
|
|
||
|
it("can correctly set the size", () => {
|
||
|
const anl = new Analyser("fft", 512);
|
||
|
expect(anl.size).to.equal(512);
|
||
|
anl.size = 1024;
|
||
|
expect(anl.size).to.equal(1024);
|
||
|
anl.dispose();
|
||
|
});
|
||
|
|
||
|
it("can run fft analysis", () => {
|
||
|
const anl = new Analyser("fft", 512);
|
||
|
const analysis = anl.getValue();
|
||
|
expect(analysis.length).to.equal(512);
|
||
|
for (let i = 0; i < analysis.length; i++) {
|
||
|
expect(analysis[i]).is.lessThan(0);
|
||
|
}
|
||
|
anl.dispose();
|
||
|
});
|
||
|
|
||
|
it("can run waveform analysis", function(done) {
|
||
|
const noise = new Noise();
|
||
|
const anl = new Analyser("waveform", 256);
|
||
|
noise.connect(anl);
|
||
|
noise.start();
|
||
|
|
||
|
setTimeout(() => {
|
||
|
const analysis = anl.getValue();
|
||
|
expect(analysis.length).to.equal(256);
|
||
|
for (let i = 0; i < analysis.length; i++) {
|
||
|
expect(analysis[i]).is.within(-1, 1);
|
||
|
}
|
||
|
anl.dispose();
|
||
|
noise.dispose();
|
||
|
done();
|
||
|
}, 300);
|
||
|
});
|
||
|
|
||
|
it("throws an error if an invalid type is set", () => {
|
||
|
const anl = new Analyser("fft", 512);
|
||
|
expect(() => {
|
||
|
// @ts-ignore
|
||
|
anl.type = "invalid";
|
||
|
}).to.throw(Error);
|
||
|
anl.dispose();
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|