Tone.js/test/helper/OscillatorTests.js

74 lines
2 KiB
JavaScript
Raw Normal View History

2018-05-18 16:07:20 +00:00
define(["helper/OutputAudio", "Tone/source/Oscillator", "helper/Offline", "helper/Test", "Tone/core/Tone"],
2018-03-06 05:02:49 +00:00
function(OutputAudio, Oscillator, Offline, Test, Tone){
2015-08-21 21:03:48 +00:00
2017-12-30 16:26:29 +00:00
return function(Constr, args){
2015-08-21 21:03:48 +00:00
2017-12-30 16:26:29 +00:00
context("Oscillator Tests", function(){
2015-08-21 21:03:48 +00:00
2017-12-30 16:26:29 +00:00
it("can be created with an options object", function(){
var instance = new Constr({
"frequency" : 200,
"detune" : -20
});
expect(instance.frequency.value).to.equal(200);
expect(instance.detune.value).to.equal(-20);
instance.dispose();
2015-08-21 21:03:48 +00:00
});
2017-12-30 16:26:29 +00:00
it("can set/set the frequency", function(){
var instance = new Constr(args);
instance.frequency.value = 110;
expect(instance.frequency.value).to.equal(110);
instance.start();
instance.frequency.value = 220;
expect(instance.frequency.value).to.equal(220);
instance.dispose();
});
2015-08-21 21:03:48 +00:00
2017-12-30 16:26:29 +00:00
it("can set/set the detune", function(){
var instance = new Constr(args);
instance.detune.value = -50;
expect(instance.detune.value).to.equal(-50);
instance.start();
instance.detune.value = 92;
expect(instance.detune.value).to.equal(92);
instance.dispose();
});
2015-08-21 21:03:48 +00:00
2017-12-30 16:26:29 +00:00
it("can connect to detune and frequency", function(){
var instance = new Constr(args);
Test.connect(instance.frequency);
Test.connect(instance.detune);
instance.dispose();
});
2015-08-21 21:03:48 +00:00
2017-12-30 16:26:29 +00:00
it("can get/set the phase", function(){
var osc = new Constr({
"phase" : 180,
});
expect(osc.phase).to.be.closeTo(180, 0.001);
osc.phase = 270;
expect(osc.phase).to.be.closeTo(270, 0.001);
osc.dispose();
2015-08-21 21:03:48 +00:00
});
2018-03-06 05:02:49 +00:00
it("has a restart method", function(){
var osc = new Constr();
expect(osc.restart).to.exist;
expect(osc.restart).is.not.equal(Tone.noOp);
osc.dispose();
});
2017-12-30 16:26:29 +00:00
it("does not clip in volume", function(){
return Offline(function(){
new Constr(args).toMaster().start(0);
}).then(function(buffer){
expect(buffer.max()).to.be.at.most(1);
});
});
2017-12-29 18:50:57 +00:00
2017-12-30 16:26:29 +00:00
});
2015-08-21 21:03:48 +00:00
2017-12-30 16:26:29 +00:00
};
});