Tone.js/Tone/core/context/OfflineContext.test.ts

65 lines
1.8 KiB
TypeScript
Raw Normal View History

2019-05-23 18:00:49 +00:00
import { expect } from "chai";
import { OfflineContext } from "./OfflineContext";
context("OfflineContext", () => {
it("can be created an disposed", () => {
const ctx = new OfflineContext(1, 0.1, 44100);
ctx.dispose();
});
it("is setup with 0 lookAhead and offline clockSource", () => {
const ctx = new OfflineContext(1, 0.1, 44100);
expect(ctx.lookAhead).to.equal(0);
expect(ctx.clockSource).to.equal("offline");
return ctx.dispose();
});
it("now = currentTime", () => {
const ctx = new OfflineContext(1, 0.1, 44100);
expect(ctx.currentTime).to.equal(ctx.now());
return ctx.dispose();
});
2019-10-30 22:59:15 +00:00
it("closing shouldn't do anything", () => {
const ctx = new OfflineContext(1, 0.1, 44100);
return ctx.close();
});
2019-05-23 18:00:49 +00:00
it("can render audio", () => {
const ctx = new OfflineContext(1, 0.2, 44100);
const osc = ctx.createOscillator();
2019-06-23 19:04:13 +00:00
osc.connect(ctx.rawContext.destination);
2019-05-23 18:00:49 +00:00
osc.start(0.1);
return ctx.render().then(buffer => {
expect(buffer).to.have.property("length");
expect(buffer).to.have.property("sampleRate");
2019-05-23 18:00:49 +00:00
const array = buffer.getChannelData(0);
for (let i = 0; i < array.length; i++) {
if (array[i] !== 0) {
expect(i / array.length).to.be.closeTo(0.5, 0.01);
break;
}
}
});
});
it("can render audio not async", () => {
const ctx = new OfflineContext(1, 0.2, 44100);
const osc = ctx.createOscillator();
osc.connect(ctx.rawContext.destination);
osc.start(0.1);
return ctx.render(false).then(buffer => {
expect(buffer).to.have.property("length");
expect(buffer).to.have.property("sampleRate");
const array = buffer.getChannelData(0);
for (let i = 0; i < array.length; i++) {
if (array[i] !== 0) {
expect(i / array.length).to.be.closeTo(0.5, 0.01);
break;
}
}
});
});
2019-05-23 18:00:49 +00:00
});