mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
import { expect } from "chai";
|
|
import { BasicTests } from "test/helper/Basic";
|
|
import { Noise } from "../../source/Noise";
|
|
import { Analyser } from "./Analyser";
|
|
|
|
describe("Analyser", () => {
|
|
|
|
BasicTests(Analyser);
|
|
|
|
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);
|
|
analysis.forEach(val => {
|
|
expect(val).is.lessThan(0);
|
|
});
|
|
anl.dispose();
|
|
});
|
|
|
|
it("can run waveform analysis", (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);
|
|
analysis.forEach(val => {
|
|
expect(val).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();
|
|
});
|
|
|
|
});
|