如何在角度2测试中测试下拉切换操作?

时间:2017-10-12 15:03:03

标签: angular unit-testing typescript karma-jasmine ngx-bootstrap

我正在尝试测试下拉切换功能。但我无法让它发挥作用。我还将BsDropdownModule导入到spec文件中。 注意:我正在使用ngx-bootstrap。

这是我试过的:

HTML

<div class="btnBox" dropdown placement="bottom right">
    <button class="btnIcon dropdown-toggle" dropdownToggle>
    </button>
    <ul class="btnOptionBox dropdown-menu dropdown-menu-right" *dropdownMenu>
       <li class="iconBtn" (click)="someFun()" type="button"><span>Edit</span></li>
       <li class="iconBtn" (click)="someFun1()" type="button"><span>Delete</span></li>
    </ul>
 </div>

测试规范:

it("Should show options when toggle option is clicked",() => {
     fixture.detectChanges();
     let toggleButton = fixture.debugElement.queryAll(By.css('[dropdownToggle]'));
     toggleButton[0].nativeElement.click();
     fixture.detectChanges();
     /*Unable to access li tag directly. That's why I have used it's parent*/
     let list = fixture.debugElement.queryAll(By.css('div.ellipsisBox'));  
     console.log(list[0]); /*Shows the list in the children array*/
     console.log(list[0].children);  /*Doesn't show the list*/
});

有人能建议正确的方法吗?

1 个答案:

答案 0 :(得分:4)

我设法解决了这个问题。这只是一个愚蠢的错误。列表中的数据由异步进程填充。所以我应该在点击下拉按钮后使用fakeAsynctick()。在将数据填充到列表中之前,视图已更新。这导致了这个问题。这是固定代码:

it("Should show options when toggle option is clicked",fakeAsync(() => {
     fixture.detectChanges();
     let toggleButton = fixture.debugElement.queryAll(By.css('[dropdownToggle]'));
     toggleButton[0].nativeElement.click();
     tick();
     fixture.detectChanges();
     let list = fixture.debugElement.queryAll(By.css('ul.btnOptionBox'));  
     console.log(list[0]);
}));