2014-10-01 18:47:15 +00:00
|
|
|
/* global it, describe, after, maxTimeout, beforeEach */
|
2014-07-30 19:10:45 +00:00
|
|
|
|
2014-09-14 19:32:30 +00:00
|
|
|
define(["chai", "Tone/source/Player", "Tone/core/Master", "Tone/source/Oscillator",
|
2014-09-30 03:45:13 +00:00
|
|
|
"Tone/component/Recorder", "Tone/source/Noise", "tests/Core", "Tone/source/PulseOscillator", "tests/Common",
|
|
|
|
"Tone/source/PWMOscillator", "Tone/source/OmniOscillator"],
|
|
|
|
function(chai, Player, Master, Oscillator, Recorder, Noise, core, PulseOscillator, Test, PWMOscillator, OmniOscillator){
|
2014-06-19 05:40:16 +00:00
|
|
|
|
2014-06-19 02:33:08 +00:00
|
|
|
var expect = chai.expect;
|
2014-06-18 19:42:08 +00:00
|
|
|
|
|
|
|
describe("Tone.Player", function(){
|
2014-08-27 19:46:32 +00:00
|
|
|
this.timeout(maxTimeout);
|
2014-09-14 19:32:30 +00:00
|
|
|
|
2014-10-01 18:47:15 +00:00
|
|
|
beforeEach(function(){
|
|
|
|
Test.onlineContext();
|
|
|
|
});
|
2014-06-18 19:42:08 +00:00
|
|
|
|
2014-06-20 04:25:00 +00:00
|
|
|
it("can be created and disposed", function(){
|
|
|
|
var p = new Player();
|
|
|
|
p.dispose();
|
2014-09-30 03:45:13 +00:00
|
|
|
Test.wasDisposed(p);
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
|
|
|
|
2014-06-18 19:42:08 +00:00
|
|
|
it("loads a file", function(done){
|
2014-09-14 19:32:30 +00:00
|
|
|
var player = new Player("./testAudio/kick.mp3", function(){
|
|
|
|
player.dispose();
|
2014-06-18 19:42:08 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-09-14 19:32:30 +00:00
|
|
|
it("has a duration", function(done){
|
|
|
|
var player = new Player("./testAudio/kick.mp3", function(){
|
|
|
|
expect(player.duration).to.be.closeTo(0.23, 0.01);
|
|
|
|
player.dispose();
|
2014-06-19 05:40:16 +00:00
|
|
|
done();
|
2014-09-14 19:32:30 +00:00
|
|
|
});
|
2014-06-19 05:40:16 +00:00
|
|
|
});
|
2014-09-30 03:45:13 +00:00
|
|
|
|
2014-09-14 19:32:30 +00:00
|
|
|
it("invokes a callback onend", function(done){
|
|
|
|
var player = new Player("./testAudio/kick.mp3", function(){
|
|
|
|
player.start();
|
|
|
|
expect(player.state).to.equal("started");
|
|
|
|
});
|
2014-10-01 18:47:15 +00:00
|
|
|
player.onended = function(){
|
|
|
|
expect(player.state).to.equal("stopped");
|
|
|
|
player.dispose();
|
|
|
|
done();
|
|
|
|
};
|
2014-09-30 03:45:13 +00:00
|
|
|
player.toMaster();
|
|
|
|
});
|
2014-06-19 05:40:16 +00:00
|
|
|
|
2014-09-14 19:32:30 +00:00
|
|
|
it("can handle multiple restarts", function(done){
|
|
|
|
var player = new Player("./testAudio/kick.mp3", function(){
|
|
|
|
expect(player.state).to.equal("stopped");
|
|
|
|
player.start();
|
|
|
|
player.start();
|
|
|
|
player.stop();
|
|
|
|
player.stop();
|
|
|
|
expect(player.state).to.equal("stopped");
|
2014-06-19 05:40:16 +00:00
|
|
|
done();
|
2014-09-14 19:32:30 +00:00
|
|
|
});
|
2014-06-18 19:42:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-06-19 05:40:16 +00:00
|
|
|
describe("Tone.Oscillator", function(){
|
2014-08-27 19:46:32 +00:00
|
|
|
this.timeout(maxTimeout);
|
2014-06-19 05:40:16 +00:00
|
|
|
|
2014-10-01 18:47:15 +00:00
|
|
|
beforeEach(function(){
|
|
|
|
Test.onlineContext();
|
|
|
|
});
|
2014-06-20 01:48:16 +00:00
|
|
|
|
2014-06-20 04:25:00 +00:00
|
|
|
it("can be created and disposed", function(){
|
|
|
|
var o = new Oscillator();
|
|
|
|
o.dispose();
|
2014-09-30 03:45:13 +00:00
|
|
|
Test.wasDisposed(o);
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
|
|
|
|
2014-06-19 05:40:16 +00:00
|
|
|
it("starts and stops", function(done){
|
2014-09-14 19:32:30 +00:00
|
|
|
var oscillator = new Oscillator();
|
2014-06-19 05:40:16 +00:00
|
|
|
expect(oscillator.state).to.equal("stopped");
|
|
|
|
oscillator.start();
|
|
|
|
expect(oscillator.state).to.equal("started");
|
|
|
|
setTimeout(function(){
|
|
|
|
oscillator.stop();
|
2014-09-14 19:32:30 +00:00
|
|
|
oscillator.dispose();
|
2014-06-19 05:40:16 +00:00
|
|
|
done();
|
|
|
|
}, 100);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can be scheduled to stop", function(done){
|
2014-09-14 19:32:30 +00:00
|
|
|
var oscillator = new Oscillator();
|
2014-06-19 05:40:16 +00:00
|
|
|
expect(oscillator.state).to.equal("stopped");
|
|
|
|
oscillator.start();
|
2014-06-20 01:48:16 +00:00
|
|
|
oscillator.stop("+0.05");
|
2014-06-19 05:40:16 +00:00
|
|
|
setTimeout(function(){
|
2014-09-14 19:32:30 +00:00
|
|
|
// expect(oscillator.state).to.equal("stopped");
|
|
|
|
oscillator.dispose();
|
2014-06-19 05:40:16 +00:00
|
|
|
done();
|
2014-06-20 01:48:16 +00:00
|
|
|
}, 200);
|
2014-06-19 05:40:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("won't start again before stopping", function(){
|
2014-09-14 19:32:30 +00:00
|
|
|
var oscillator = new Oscillator();
|
2014-06-19 05:40:16 +00:00
|
|
|
expect(oscillator.state).to.equal("stopped");
|
|
|
|
oscillator.start();
|
|
|
|
oscillator.start();
|
|
|
|
oscillator.stop();
|
|
|
|
oscillator.stop();
|
2014-06-20 01:48:16 +00:00
|
|
|
expect(oscillator.state).to.equal("stopped");
|
2014-09-14 19:32:30 +00:00
|
|
|
oscillator.dispose();
|
2014-06-20 01:48:16 +00:00
|
|
|
});
|
|
|
|
|
2014-09-30 03:45:13 +00:00
|
|
|
it("invokes the onended callback on stop", function(done){
|
|
|
|
var oscillator = new Oscillator();
|
|
|
|
oscillator.toMaster();
|
|
|
|
oscillator.onended = function(){
|
|
|
|
oscillator.dispose();
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
oscillator.start();
|
|
|
|
oscillator.stop("+0.2");
|
|
|
|
});
|
|
|
|
|
2014-06-20 01:48:16 +00:00
|
|
|
it("be scheduled to start in the future", function(done){
|
2014-09-14 19:32:30 +00:00
|
|
|
var osc;
|
|
|
|
Test.offlineTest(1, function(dest){
|
|
|
|
osc = new Oscillator(440);
|
|
|
|
osc.connect(dest);
|
|
|
|
osc.start("+0.1");
|
|
|
|
}, function(sample, time){
|
|
|
|
if (sample !== 0){
|
|
|
|
expect(time).to.be.at.least(0.1);
|
2014-06-20 01:48:16 +00:00
|
|
|
}
|
2014-09-14 19:32:30 +00:00
|
|
|
}, function(){
|
|
|
|
osc.dispose();
|
2014-06-20 01:48:16 +00:00
|
|
|
done();
|
2014-06-21 17:05:05 +00:00
|
|
|
});
|
2014-06-19 05:40:16 +00:00
|
|
|
});
|
|
|
|
|
2014-09-14 19:32:30 +00:00
|
|
|
it("can set the frequency", function(){
|
|
|
|
var oscillator = new Oscillator();
|
2014-06-19 05:40:16 +00:00
|
|
|
oscillator.setFrequency(110);
|
|
|
|
expect(oscillator.frequency.getValue()).to.equal(110);
|
|
|
|
oscillator.start();
|
2014-09-14 19:32:30 +00:00
|
|
|
oscillator.setFrequency(220);
|
|
|
|
expect(oscillator.frequency.getValue()).to.equal(220);
|
|
|
|
oscillator.dispose();
|
2014-06-19 05:40:16 +00:00
|
|
|
});
|
|
|
|
});
|
2014-06-18 19:42:08 +00:00
|
|
|
|
2014-06-20 04:25:00 +00:00
|
|
|
describe("Tone.Noise", function(){
|
2014-08-27 19:46:32 +00:00
|
|
|
this.timeout(maxTimeout);
|
2014-06-20 04:25:00 +00:00
|
|
|
|
2014-10-01 18:47:15 +00:00
|
|
|
beforeEach(function(){
|
|
|
|
Test.onlineContext();
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("can be created and disposed", function(){
|
|
|
|
var n = new Noise();
|
|
|
|
n.dispose();
|
2014-09-30 03:45:13 +00:00
|
|
|
Test.wasDisposed(n);
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("starts and stops", function(done){
|
2014-10-01 18:47:15 +00:00
|
|
|
var noise = new Noise();
|
2014-06-20 04:25:00 +00:00
|
|
|
expect(noise.state).to.equal("stopped");
|
|
|
|
noise.start();
|
|
|
|
expect(noise.state).to.equal("started");
|
|
|
|
setTimeout(function(){
|
|
|
|
noise.stop();
|
2014-10-01 18:47:15 +00:00
|
|
|
noise.dispose();
|
2014-06-20 04:25:00 +00:00
|
|
|
done();
|
|
|
|
}, 100);
|
|
|
|
});
|
|
|
|
|
2014-10-01 18:47:15 +00:00
|
|
|
it("invokes the onended callback on stop", function(done){
|
|
|
|
var noise = new Noise();
|
|
|
|
noise.toMaster();
|
|
|
|
noise.onended = function(){
|
|
|
|
noise.dispose();
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
noise.start();
|
|
|
|
noise.stop("+0.2");
|
|
|
|
});
|
|
|
|
|
2014-06-20 04:25:00 +00:00
|
|
|
it("can be scheduled to stop", function(done){
|
2014-10-01 18:47:15 +00:00
|
|
|
var noise = new Noise();
|
|
|
|
noise.toMaster();
|
2014-06-20 04:25:00 +00:00
|
|
|
expect(noise.state).to.equal("stopped");
|
|
|
|
noise.start();
|
|
|
|
expect(noise.state).to.equal("started");
|
|
|
|
noise.stop("+0.05");
|
|
|
|
setTimeout(function(){
|
|
|
|
expect(noise.state).to.equal("stopped");
|
2014-10-01 18:47:15 +00:00
|
|
|
noise.dispose();
|
2014-06-20 04:25:00 +00:00
|
|
|
done();
|
|
|
|
}, 100);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("won't start again before stopping", function(){
|
2014-10-01 18:47:15 +00:00
|
|
|
var noise = new Noise();
|
2014-06-20 04:25:00 +00:00
|
|
|
expect(noise.state).to.equal("stopped");
|
|
|
|
noise.start();
|
|
|
|
noise.start();
|
|
|
|
noise.stop();
|
|
|
|
noise.stop();
|
|
|
|
expect(noise.state).to.equal("stopped");
|
2014-10-01 18:47:15 +00:00
|
|
|
noise.dispose();
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("be scheduled to start in the future", function(done){
|
2014-09-14 19:32:30 +00:00
|
|
|
var noi;
|
|
|
|
Test.offlineTest(1, function(dest){
|
|
|
|
noi = new Noise();
|
|
|
|
noi.connect(dest);
|
|
|
|
noi.start("+0.1");
|
|
|
|
}, function(sample, time){
|
|
|
|
if (sample !== 0){
|
|
|
|
expect(time).to.be.at.least(0.1);
|
2014-06-20 04:25:00 +00:00
|
|
|
}
|
2014-09-14 19:32:30 +00:00
|
|
|
}, function(){
|
|
|
|
noi.dispose();
|
2014-06-20 04:25:00 +00:00
|
|
|
done();
|
2014-06-21 17:05:05 +00:00
|
|
|
});
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the noise types", function(){
|
2014-10-01 18:47:15 +00:00
|
|
|
var noise = new Noise();
|
2014-06-20 04:25:00 +00:00
|
|
|
noise.setType("brown");
|
|
|
|
noise.setType("white");
|
|
|
|
noise.setType("pink");
|
|
|
|
//even after started
|
|
|
|
noise.start();
|
|
|
|
noise.setType("brown");
|
|
|
|
noise.setType("white");
|
|
|
|
noise.setType("pink");
|
|
|
|
noise.stop();
|
2014-10-01 18:47:15 +00:00
|
|
|
noise.dispose();
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
2014-09-06 22:55:11 +00:00
|
|
|
});
|
2014-06-20 04:25:00 +00:00
|
|
|
|
2014-09-06 22:55:11 +00:00
|
|
|
describe("Tone.PulseOscillator", function(){
|
|
|
|
this.timeout(maxTimeout);
|
2014-06-20 04:25:00 +00:00
|
|
|
|
2014-10-01 18:47:15 +00:00
|
|
|
beforeEach(function(){
|
|
|
|
Test.onlineContext();
|
|
|
|
});
|
|
|
|
|
2014-09-06 22:55:11 +00:00
|
|
|
it("can be created and disposed", function(){
|
|
|
|
var o = new PulseOscillator();
|
|
|
|
o.dispose();
|
2014-09-30 03:45:13 +00:00
|
|
|
Test.wasDisposed(o);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the width", function(){
|
|
|
|
var pulse = new PulseOscillator();
|
|
|
|
pulse.setWidth(0.2);
|
|
|
|
pulse.dispose();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the frequency", function(){
|
|
|
|
var pulse = new PulseOscillator();
|
|
|
|
pulse.setFrequency(220);
|
|
|
|
pulse.dispose();
|
|
|
|
});
|
2014-10-01 18:47:15 +00:00
|
|
|
|
|
|
|
it("invokes the onended callback on stop", function(done){
|
|
|
|
var oscillator = new PulseOscillator();
|
|
|
|
oscillator.toMaster();
|
|
|
|
oscillator.onended = function(){
|
|
|
|
oscillator.dispose();
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
oscillator.start();
|
|
|
|
oscillator.stop("+0.2");
|
|
|
|
});
|
2014-09-30 03:45:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("Tone.PWMOscillator", function(){
|
|
|
|
this.timeout(maxTimeout);
|
|
|
|
|
2014-10-01 18:47:15 +00:00
|
|
|
beforeEach(function(){
|
|
|
|
Test.onlineContext();
|
|
|
|
});
|
|
|
|
|
2014-09-30 03:45:13 +00:00
|
|
|
it("can be created and disposed", function(){
|
|
|
|
var pwm = new PWMOscillator();
|
|
|
|
pwm.dispose();
|
|
|
|
Test.wasDisposed(pwm);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the modulation frequency", function(){
|
|
|
|
var pwm = new PWMOscillator();
|
|
|
|
pwm.setModulationFrequency(0.2);
|
|
|
|
pwm.dispose();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the frequency", function(){
|
|
|
|
var pwm = new PWMOscillator();
|
|
|
|
pwm.setFrequency(220);
|
|
|
|
pwm.dispose();
|
|
|
|
});
|
2014-10-01 18:47:15 +00:00
|
|
|
|
|
|
|
it("invokes the onended callback on stop", function(done){
|
|
|
|
var oscillator = new PWMOscillator();
|
|
|
|
oscillator.toMaster();
|
|
|
|
oscillator.onended = function(){
|
|
|
|
oscillator.dispose();
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
oscillator.start();
|
|
|
|
oscillator.stop("+0.2");
|
|
|
|
});
|
2014-09-30 03:45:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("Tone.OmniOscillator", function(){
|
|
|
|
this.timeout(maxTimeout);
|
|
|
|
|
2014-10-01 18:47:15 +00:00
|
|
|
beforeEach(function(){
|
|
|
|
Test.onlineContext();
|
|
|
|
});
|
|
|
|
|
2014-09-30 03:45:13 +00:00
|
|
|
it("can be created and disposed", function(){
|
|
|
|
var omni = new OmniOscillator();
|
|
|
|
omni.dispose();
|
|
|
|
Test.wasDisposed(omni);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("invokes the onended callback on stop", function(done){
|
|
|
|
var omni = new OmniOscillator();
|
|
|
|
omni.toMaster();
|
|
|
|
omni.onended = function(){
|
|
|
|
omni.dispose();
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
omni.start();
|
|
|
|
omni.stop("+0.2");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the modulation frequency only when type is pwm", function(){
|
|
|
|
var omni = new OmniOscillator();
|
|
|
|
omni.setType("pwm");
|
|
|
|
expect(omni.setModulationFrequency.bind(omni, 0.2)).to.not.throw(Error);
|
|
|
|
omni.setType("pulse");
|
|
|
|
expect(omni.setModulationFrequency.bind(omni, 0.2)).to.throw(Error);
|
|
|
|
omni.dispose();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the modulation width only when type is pulse", function(){
|
|
|
|
var omni = new OmniOscillator();
|
|
|
|
omni.setType("pulse");
|
|
|
|
expect(omni.setWidth.bind(omni, 0.2)).to.not.throw(Error);
|
|
|
|
omni.setType("sine");
|
|
|
|
expect(omni.setWidth.bind(omni, 0.2)).to.throw(Error);
|
|
|
|
omni.dispose();
|
2014-09-06 22:55:11 +00:00
|
|
|
});
|
2014-06-20 04:25:00 +00:00
|
|
|
});
|
2014-06-20 01:48:16 +00:00
|
|
|
|
2014-06-18 19:42:08 +00:00
|
|
|
});
|