Tone.js/Tone/event/Pattern.test.ts

172 lines
4.6 KiB
TypeScript
Raw Permalink Normal View History

import { BasicTests } from "../../test/helper/Basic.js";
import { Pattern } from "./Pattern.js";
import { Offline } from "../../test/helper/Offline.js";
import { Time } from "../core/type/Time.js";
2019-11-07 19:39:28 +00:00
import { expect } from "chai";
describe("Pattern", () => {
BasicTests(Pattern);
context("Constructor", () => {
it("takes a callback, an array of values and a pattern name", () => {
return Offline(() => {
const callback = function () {};
2019-11-07 19:39:28 +00:00
const pattern = new Pattern(callback, [0, 1, 2, 3], "down");
expect(pattern.callback).to.equal(callback);
expect(pattern.values).to.deep.equal([0, 1, 2, 3]);
expect(pattern.pattern).to.equal("down");
pattern.dispose();
});
});
it("can be constructed with no arguments", () => {
return Offline(() => {
const pattern = new Pattern();
pattern.dispose();
});
});
it("can pass in arguments in options object", () => {
return Offline(() => {
const callback = function () {};
2019-11-07 19:39:28 +00:00
const pattern = new Pattern({
callback: callback,
iterations: 4,
probability: 0.3,
interval: "8t",
values: [1, 2, 3],
pattern: "upDown",
2019-11-07 19:39:28 +00:00
});
expect(pattern.callback).to.equal(callback);
expect(pattern.interval.valueOf()).to.equal(
Time("8t").valueOf()
);
2019-11-07 19:39:28 +00:00
expect(pattern.iterations).to.equal(4);
expect(pattern.values).to.deep.equal([1, 2, 3]);
expect(pattern.probability).to.equal(0.3);
expect(pattern.pattern).to.equal("upDown");
pattern.dispose();
});
});
});
context("Get/Set", () => {
it("can set values with object", () => {
return Offline(() => {
const callback = function () {};
2019-11-07 19:39:28 +00:00
const pattern = new Pattern();
pattern.set({
callback: callback,
values: ["a", "b", "c"],
});
expect(pattern.callback).to.equal(callback);
expect(pattern.values).to.deep.equal(["a", "b", "c"]);
pattern.dispose();
});
});
it("can set get a the values as an object", () => {
return Offline(() => {
const callback = function () {};
2019-11-07 19:39:28 +00:00
const pattern = new Pattern({
callback: callback,
pattern: "random",
probability: 0.3,
});
const values = pattern.get();
expect(values.pattern).to.equal("random");
values.pattern = "upDown";
expect(values.pattern).to.equal("upDown");
expect(values.probability).to.equal(0.3);
pattern.dispose();
});
});
});
context("Callback", () => {
it("is invoked after it's started", () => {
let invoked = false;
return Offline(({ transport }) => {
const values = ["a", "b", "c"];
2019-11-07 19:39:28 +00:00
let index = 0;
const pattern = new Pattern(() => {
2019-11-07 19:39:28 +00:00
invoked = true;
expect(pattern.value).to.equal(values[index]);
expect(pattern.index).to.equal(index);
2019-11-07 19:39:28 +00:00
index++;
}, values).start(0);
2019-11-07 19:39:28 +00:00
transport.start();
}, 0.2).then(() => {
expect(invoked).to.be.true;
});
});
it("passes in the scheduled time and pattern note to the callback", () => {
2019-11-07 19:39:28 +00:00
let invoked = false;
return Offline(({ transport }) => {
const startTime = 0.05;
const pattern = new Pattern(
(time, note) => {
expect(time).to.be.a("number");
expect(time - startTime).to.be.closeTo(0.3, 0.01);
expect(note).to.be.equal("a");
expect(pattern.value).to.equal("a");
expect(pattern.index).to.be.equal(0);
invoked = true;
},
["a"],
"up"
);
2019-11-07 19:39:28 +00:00
transport.start(startTime);
pattern.start(0.3);
}, 0.4).then(() => {
expect(invoked).to.be.true;
});
});
it("passes in the next note of the pattern", () => {
let counter = 0;
return Offline(({ transport }) => {
const values = ["a", "b", "c"];
const pattern = new Pattern(
(time, note) => {
expect(note).to.equal(values[counter % 3]);
expect(pattern.value).to.equal(values[counter % 3]);
expect(pattern.index).to.be.equal(counter % 3);
counter++;
},
values,
"up"
).start(0);
2019-11-07 19:39:28 +00:00
pattern.interval = "16n";
transport.start(0);
}, 0.7).then(() => {
expect(counter).to.equal(6);
});
});
it("can modify the pattern type and values", () => {
let counter = 0;
return Offline(({ transport }) => {
const values = ["a", "b", "c"];
const pattern = new Pattern(
(time, note) => {
expect(note).to.equal(values[counter % 3]);
expect(pattern.value).to.equal(values[counter % 3]);
expect(pattern.index).to.be.equal(counter % 3);
counter++;
},
["a"],
"down"
).start(0);
pattern.interval = "16n";
pattern.pattern = "up";
pattern.values = values;
transport.start(0);
}, 0.7).then(() => {
expect(counter).to.equal(6);
});
});
2019-11-07 19:39:28 +00:00
});
});