mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-06 17:08:48 +00:00
e739c4f1f3
makes getting/setting through interface easier
84 lines
2.4 KiB
JavaScript
84 lines
2.4 KiB
JavaScript
define(["helper/Basic", "Tone/source/FMOscillator", "helper/Offline",
|
|
"helper/SourceTests", "helper/OscillatorTests", "helper/Test", "helper/CompareToFile"],
|
|
function(BasicTests, FMOscillator, Offline, SourceTests, OscillatorTests, Test, CompareToFile){
|
|
|
|
describe("FMOscillator", function(){
|
|
|
|
//run the common tests
|
|
BasicTests(FMOscillator);
|
|
SourceTests(FMOscillator);
|
|
OscillatorTests(FMOscillator);
|
|
|
|
it("matches a file", function(){
|
|
return CompareToFile(function(){
|
|
var osc = new FMOscillator().toMaster();
|
|
osc.start(0);
|
|
}, "fmOscillator.wav", 0.01);
|
|
});
|
|
|
|
context("Frequency Modulation", function(){
|
|
|
|
it("can pass in parameters in the constructor", function(){
|
|
var fmOsc = new FMOscillator({
|
|
"type" : "triangle2",
|
|
"harmonicity" : 3,
|
|
"modulationType" : "square3"
|
|
});
|
|
expect(fmOsc.type).to.equal("triangle2");
|
|
expect(fmOsc.harmonicity.value).to.be.closeTo(3, 0.001);
|
|
expect(fmOsc.modulationType).to.equal("square3");
|
|
fmOsc.dispose();
|
|
});
|
|
|
|
it("can set the harmonicity", function(){
|
|
var fmOsc = new FMOscillator();
|
|
fmOsc.harmonicity.value = 0.2;
|
|
expect(fmOsc.harmonicity.value).to.be.closeTo(0.2, 0.001);
|
|
fmOsc.dispose();
|
|
});
|
|
|
|
it("can set the modulationIndex", function(){
|
|
var fmOsc = new FMOscillator({
|
|
"modulationIndex" : 3,
|
|
});
|
|
expect(fmOsc.modulationIndex.value).to.be.closeTo(3, 0.001);
|
|
fmOsc.modulationIndex.value = 0.2;
|
|
expect(fmOsc.modulationIndex.value).to.be.closeTo(0.2, 0.001);
|
|
fmOsc.dispose();
|
|
});
|
|
|
|
it("can connect a signal to the harmonicity", function(){
|
|
var fmOsc = new FMOscillator();
|
|
Test.connect(fmOsc.harmonicity);
|
|
fmOsc.dispose();
|
|
});
|
|
|
|
it("can set the modulationType", function(){
|
|
var fmOsc = new FMOscillator();
|
|
fmOsc.modulationType = "triangle5";
|
|
expect(fmOsc.modulationType).to.equal("triangle5");
|
|
fmOsc.dispose();
|
|
});
|
|
|
|
it("can get/set the baseType", function(){
|
|
var osc = new FMOscillator();
|
|
osc.type = "sine5";
|
|
expect(osc.baseType).to.equal("sine");
|
|
osc.baseType = "triangle";
|
|
expect(osc.type).to.equal("triangle5");
|
|
expect(osc.partialCount).to.equal(5);
|
|
osc.partialCount = 2;
|
|
expect(osc.type).to.equal("triangle2");
|
|
osc.baseType = "custom";
|
|
expect(osc.type).to.equal("custom");
|
|
osc.partials = [1, 2, 3];
|
|
expect(osc.baseType).to.equal("custom");
|
|
osc.baseType = "square";
|
|
expect(osc.type).to.equal("square");
|
|
osc.dispose();
|
|
});
|
|
|
|
});
|
|
});
|
|
|
|
});
|