我正在测试一个使用基于可观察服务的组件来获取一些数据并将其显示为i18n目的。
由于特定需要,i18n服务是自定义的。
组件在开发模式下工作(在某些模板中使用,工作正常)但测试失败。
@Component({
selector : "i18n",
template : '<span [innerHTML]="text"></span><span #wrapper hidden="true"><ng-content></ng-content><span>',
encapsulation: ViewEncapsulation.None
})
export class I18nComponent implements OnChanges {
constructor(private i18n:I18n) {
}
@ViewChild('wrapper')
content:ElementRef;
@Input('key')
key:string;
@Input('domain')
domain:string;
@Input('variables')
variables:Variables = [];
@Input("plural")
plural:number;
text:string;
ngOnChanges():any {
this.i18n.get(this.key, this.content.nativeElement.innerHTML, this.variables, this.domain).subscribe((res) => {
this.text = res;
});
}
}
public get(key:string,
defaultValue?:string,
variables:Variables = {},
domain?:string):Observable<string>{
const catalog = {
"StackOverflowDomain":
{
"my-key":"my-value"
}
};
return Observable.of(catalog[domain][key]).delay(300);
}
Variables
:
export interface Variables {
[key:string]:any;
}
describe("I18n component", () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers : [
I18n,
{
provide : I18N_CONFIG,
useValue: {
defaultLocale : "fr_FR",
variable_start: '~',
variable_end : '~'
}
},
{
provide : I18N_LOADERS,
useClass: MockLocaleLoader,
multi : true
}
],
declarations: [
I18nComponent
]
});
fixture = TestBed.createComponent<I18nComponent>(I18nComponent);
comp = fixture.componentInstance;
});
fit("can call I18n.get.", fakeAsync(() => {
comp.content.nativeElement.innerHTML = "nope";
comp.key = "test";
comp.domain = "test domain";
comp.ngOnChanges();
tick();
fixture.detectChanges();
expect(comp.text).toBe("test value");
}));
});
测试失败并显示消息:
预期未定义为'测试值'。
错误:1个周期性计时器仍在队列中。
因为i18n.get
在检查断言之前没有完成其工作,所以comp.text仍然是undefined
。
tick
方法调用中添加一个非常高的值,没有任何改动(尝试使用5000)。ngOnChanges
返回Promise<void>
之后立即解析的this.text = res;
,并使用{{1}中的fakeAsync
方法更改done
区域进行简单测试} then
。它有效,但comp.ngOnChanges
不应返回ngOnChanges
,我想要一个干净的解决方案。答案 0 :(得分:3)
请注意,async和fakeasync不如jasmine.done
那么强大和包容从(撰写本文时)的确切说明: https://angular.io/guide/testing#component-fixture
它说: &#34;使用done编写测试函数虽然比async和fakeAsync更麻烦,但却是一种可行且偶尔必需的技术。例如,在测试涉及intervalTimer的代码时,您无法调用async或fakeAsync,这在测试异步时是常见的Observable&#34;