2019-01-27 18:05:20 +00:00
|
|
|
import Offline from "helper/Offline";
|
|
|
|
import EqualPowerGain from "Tone/signal/EqualPowerGain";
|
|
|
|
import Basic from "helper/Basic";
|
|
|
|
import Test from "helper/Test";
|
|
|
|
import Oscillator from "Tone/source/Oscillator";
|
|
|
|
import Signal from "Tone/signal/Signal";
|
|
|
|
import PassAudio from "helper/PassAudio";
|
|
|
|
import Tone from "Tone/core/Tone";
|
2015-08-24 21:29:19 +00:00
|
|
|
|
2019-01-27 18:05:20 +00:00
|
|
|
describe("EqualPowerGain", function(){
|
2015-08-24 21:29:19 +00:00
|
|
|
|
2019-01-27 18:05:20 +00:00
|
|
|
Basic(EqualPowerGain);
|
2015-08-24 21:29:19 +00:00
|
|
|
|
2019-01-27 18:05:20 +00:00
|
|
|
context("Equal Power Gain", function(){
|
2015-08-24 21:29:19 +00:00
|
|
|
|
2019-01-27 18:05:20 +00:00
|
|
|
it("handles input and output connections", function(){
|
|
|
|
var eqGain = new EqualPowerGain();
|
|
|
|
Test.connect(eqGain);
|
|
|
|
eqGain.connect(Test);
|
|
|
|
eqGain.dispose();
|
|
|
|
});
|
2015-08-24 21:29:19 +00:00
|
|
|
|
2019-01-27 18:05:20 +00:00
|
|
|
it("passes audio through", function(){
|
|
|
|
return PassAudio(function(input){
|
|
|
|
var eqGain = new EqualPowerGain().toMaster();
|
|
|
|
input.connect(eqGain);
|
2015-08-24 21:29:19 +00:00
|
|
|
});
|
2019-01-27 18:05:20 +00:00
|
|
|
});
|
2015-08-24 21:29:19 +00:00
|
|
|
|
2019-01-27 18:05:20 +00:00
|
|
|
it("scales the input on an equal power scale", function(){
|
|
|
|
var eqGain;
|
|
|
|
return Offline(function(){
|
|
|
|
var sig = new Signal(0);
|
|
|
|
eqGain = new EqualPowerGain();
|
|
|
|
sig.connect(eqGain);
|
|
|
|
eqGain.toMaster();
|
|
|
|
sig.setValueAtTime(0, 0);
|
|
|
|
sig.linearRampToValueAtTime(1, 0.1);
|
|
|
|
}, 0.1).then(function(buffer){
|
|
|
|
buffer.forEach(function(sample, time){
|
|
|
|
expect(sample).to.be.closeTo(Tone.equalPowerScale(time*10), 0.01);
|
2015-08-24 21:29:19 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-12-30 16:26:29 +00:00
|
|
|
});
|
2019-01-27 18:05:20 +00:00
|
|
|
|