PhantomJS不支持HTML5音频标签,这使我很难测试我的Angular2应用程序。我一直在寻找解决方案,但不幸的是我无法找到一种方法来模拟Audio对象或以某种方式解决这个问题。我有一个Angular2服务,如下所示:
import {Injectable} from 'angular2/core';
@Injectable()
export class MyService {
var snd;
constructor() {
this.snd = new Audio('Assets/sound.wav');
}
simpleFunction() {
return true;
}
}
我的测试看起来像这样:
import {describe, expect, it} from 'angular2/testing';
import {Component} from 'angular2/core';
import {MyService} from 'my.service';
export function main() {
describe('My service', () => {
var myService: MyService = new MyService();
it('should work', () => {
expect(myService.simpleFunction).toEqual(true);
});
});
}
这当然是一个简化版本,但它证明了我遇到的问题。当我运行测试时,我收到此错误:
ReferenceError: Can't find variable: Audio
我无法弄清楚如何避免在我的测试中发生这种情况。我在我的服务中试过这个:
if (Audio !== undefined)
要在分配'snd'变量之前检查,但我仍然得到相同的结果。
答案 0 :(得分:2)
我认为你可以像这样模拟丢失的Audio构造函数:
import {describe, expect, it} from 'angular2/testing';
import {Component} from 'angular2/core';
import {MyService} from 'my.service';
export function main() {
describe('My service', () => {
beforeEach(() => {
if (!window.Audio) {
window.Audio = function() {
return {
play: function() {},
pause: function() {},
// ... etc
};
};
}
});
var myService: MyService = new MyService();
it('should work', () => {
expect(myService.simpleFunction).toEqual(true);
});
});
}