這篇“Angular單元測試編寫的技巧有哪些”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Angular單元測試編寫的技巧有哪些”文章吧。
創(chuàng)新互聯(lián)從2013年創(chuàng)立,公司以成都網(wǎng)站制作、成都做網(wǎng)站、系統(tǒng)開發(fā)、網(wǎng)絡推廣、文化傳媒、企業(yè)宣傳、平面廣告設計等為主要業(yè)務,適用行業(yè)近百種。服務企業(yè)客戶超過千家,涉及國內(nèi)多個省份客戶。擁有多年網(wǎng)站建設開發(fā)經(jīng)驗。為企業(yè)提供專業(yè)的網(wǎng)站建設、創(chuàng)意設計、宣傳推廣等服務。 通過專業(yè)的設計、獨特的風格,為不同客戶提供各種風格的特色服務。
測試思路:
1.能單元測試,盡量單元測試優(yōu)先
2.不能單元測試,通過封裝一層進行測試,譬如把測試的封裝到一個組件,但又有弱于集成測試
3.集成測試
4.E2E 測試
其中component,默認是Angular使用以下語法創(chuàng)建的待測試對象的instance
beforeEach(() => { fixture = TestBed.createComponent(BannerComponent); component = fixture.componentInstance; fixture.detectChanges(); });
1.函數(shù)調(diào)用,且沒有返回值
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(); })
結(jié)構(gòu)指令,常用語隱藏、顯示、for循環(huán)展示這類功能
# code @Directive({ selector: '[ImageURlError]' }) export class ImageUrlErrorDirective implements OnChanges { constructor(private el: ElementRef) {} @HostListener('error') public error() { this.el.nativeElement.style.display = 'none'; } }
如何測試?
測試思路:
圖片加載錯誤,才觸發(fā),那么想辦法觸發(fā)下錯誤即可
指令一般都依附在組件上使用,在組件image元素上,dispath下errorEvent即可
#1.添加一個自定義組件, 并添加上自定義指令 @Component({ template: `` }) class TestHostComponent { } #2.把自定義組件視圖實例化,并派發(fā)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); //派發(fā)事件即可,此時error()方法就會被執(zhí)行到 });
angular中public修飾的,spec.ts是可以訪問到;但是 private,protected修飾的,則不可以;
敲黑板
如果打算走單元測試,一個個方法測試,那么請合理使用public --- 難度 *
如果不打算一個個方法的進行測試,那么可以通過組織數(shù)據(jù),調(diào)用入口,把方法通過集成測試 -- 難度 ***
click事件的觸發(fā),有直接js調(diào)用click,也有模仿鼠標觸發(fā)click事件。
# xx.component.ts @Component({ selecotr: 'dashboard-hero-list' }) class DashBoardHeroComponent { public cards = [{ click: () => { ..... } }] } # html`
如何測試?
測試思路:
直接測試組件,不利用Host
利用code返回的包含click事件的對象集合,逐個調(diào)用click ,這樣code coverage 會得到提高
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 參考思路:
思路一:
利用TestHostComponent,包裹一下需要測試的組件
然后利用 fixture.nativeElement.querySelector('.card')找到組件上綁定click元素;
元素上,觸發(fā)dispatchEvent,即可 ,
思路二:
直接測試組件,不利用Host
然后利用 fixture.nativeElement.querySelector('.card'),找到綁定click元素;
使用 triggerEventHandler('click')。
以上就是關于“Angular單元測試編寫的技巧有哪些”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關的知識內(nèi)容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。