Angular怎么进行单元测试?下面本篇给大家整理分享4个Angular单元测试编写的高阶技巧,希望对大家有所帮助!
测试思路:
测试难度,也是逐渐加大的,耗费的时间也是越多的。那么想测试的简单,那么在开发的时候,就有意识的,去把思路理清楚,code写的简单高效些~。
本文使用的测试技术栈:Angular12 +Jasmine, 虽然其他测试技术语法不同,但是整体思路差不多。【相关教程推荐:《angular教程》】
Tips: Jasmine 测试用例判定,方法有哪些,可以在这里找到,戳我
其中component,默认是Angular使用以下语法创建的待测试对象的instance
beforeEach(() => { fixture = TestBed.createComponent(BannerComponent); component = fixture.componentInstance; fixture.detectChanges(); });
1.函数调用,且没有返回值
function test(index:number ,fn:Function){ if(fn){ fn(index); } }
请问如何测试?
反例: 直接测试返回值undefined
const res = component.test(1,() => {})); expect(res).tobeUndefined();
推荐做法:
# 利用Jasmine it('should get correct data when call test',() =>{ const param = { fn:() => {} } spyOn(param,'fn') component.test(1,param.fn); expect(param.fn).toHaveBeenCalled(); })
结构指令,常用语隐藏、显示、for循环展示这类功能
# code @Directive({ selector: '[ImageURlError]' }) export class ImageUrlErrorDirective implements OnChanges { constructor(private el: ElementRef) {} @HostListener('error') public error() { this.el.nativeElement.style.display = 'none'; } }
如何测试?
测试思路:
#1.添加一个自定义组件, 并添加上自定义指令 @Component({ template: `<div> <image src="https://xxx.ss.png" ImageURlError></image> </div>` }) class TestHostComponent { } #2.把自定义组件视图实例化,并派发errorEvent beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [ TestHostComponent, ImageURlError ] }); })); beforeEach(() => { fixture = TestBed.createComponent(TestHostComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should allow numbers only', () => { const event = new ErrorEvent('error', {} as any); const image = fixture.debugElement.query(By.directive(ImageURlError)); image.nativeElement.dispatchEvent(event); //派发事件即可,此时error()方法就会被执行到 });
angular中public修饰的,spec.ts是可以访问到;但是 private,protected修饰的,则不可以;
敲黑板
click事件的触发,有直接js调用click,也有模仿鼠标触发click事件。
# xx.component.ts @Component({ selecotr: 'dashboard-hero-list' }) class DashBoardHeroComponent { public cards = [{ click: () => { ..... } }] } # html <dashboard-hero-list [cards]="cards" class="card"> </dashboard-hero-list>`
如何测试?
测试思路:
it('should get correct data when call click',() => { const cards = component.cards; cards?.forEach(card => { if(card.click){ card.click(new Event('click')); } }); expect(cards?.length).toBe(1); });
其余 click 参考思路:
思路一:
思路二:
直接测试组件,不利用Host
然后利用 fixture.nativeElement.querySelector('.card'),找到绑定click元素;
使用 triggerEventHandler('click');
更多编程相关知识,请访问:编程视频!!
以上是4个Angular单元测试编写的小技巧,快来看看!的详细内容。更多信息请关注PHP中文网其他相关文章!