submitEl.triggerEventHandler不是Angular 5中的函数

时间:2018-05-14 12:36:42

标签: angular unit-testing jasmine

您好我正在Angular5 Jasmine中编写单元测试用例。我正在尝试提交表格。我正在编写提交表格的单元测试用例。以下是我的表格。

<form *ngIf="formResetToggle" class="form-horizontal" name="scopesEditorForm" #f="ngForm" novalidate (ngSubmit)="f.form.valid && isScopeValid() ? saveScope() : showErrorAlert('Please enter mandatory fields')">
     <input autofocus type="text" id="scopename" name="scopename" placeholder="Enter scope name" class="form-control" [(ngModel)]="scopeEdit.scopevalue" #scopename="ngModel" required />
     <button type="button" (click)="editorModal.hide()" class="btn btn-default" data-dismiss="modal">Cancel</button>
</form>

以下是我的spec.ts文件。

describe('ScopeEditorComponent', () => {

    let component: ScopeEditorComponent;
    let fixture: ComponentFixture<ScopeEditorComponent>;
    let submitEl: DebugElement;
    let scopeValue: DebugElement;

      beforeEach(async(() => {
        TestBed.configureTestingModule({
            imports: [
                HttpClientModule,
                 RouterTestingModule,
                 ],
            declarations: [
                ScopeEditorComponent,
                SearchBoxComponent,
                GroupByPipe,
            ]
 fixture = TestBed.createComponent(ScopeEditorComponent);
        component = fixture.componentInstance;
        service = new PermissionEndpointMock();
        fixture.detectChanges();


        submitEl = fixture.debugElement.query(By.css('button')).nativeElement;
        scopeValue = fixture.debugElement.query(By.css('#scopename'));
  }));

 it('should create the scope component', async(() => {
        expect(component).toBeTruthy();
    }));
     it('add scope', () => {
        let scope: Scope;
        scopeValue.nativeElement.value = "test@example.com";

        // Subscribe to the Observable and store the user in a local variable.
        component.addscopeEventEmitter.subscribe((value) => scope = value);
        // This sync emits the event and the subscribe callback gets executed above
        submitEl.triggerEventHandler('click', null);

        // Now we can check to make sure the emitted value is correct
        expect(scope.scopeid).toBe("123456");
    });

下面的代码抛出错误,submitEl.triggerEventHandler不是函数。有人可以帮我解决这个问题吗?谢谢

4 个答案:

答案 0 :(得分:2)

尝试使用

submitEl = fixture.debugElement.nativeElement.querySelector('button');

然后

submitEl.click();

答案 1 :(得分:0)

triggerEventHandler未在nativeElement上定义;在describe内,更改

submitEl = fixture.debugElement.query(By.css('button')).nativeElement;

submitEl = fixture.debugElement.query(By.css('button'));

答案 2 :(得分:0)

我已经尝试过这种方式:

submitEl = fixture.debugElement.nativeElement.querySelector('button');
submitEl.click();

但是,不幸的是,它仅发出click事件,但没有从组件启动click处理程序。 我发现的唯一方法就是显式调用处理程序:

component.editorModal.hide()

答案 3 :(得分:0)

关于 triggerEventHandler() 方法的三个重要事实:

  1. 仅当使用 Angular 事件绑定、@HostListener() 或 @Output 装饰器(以及较少使用的 Renderer.listen())在本机元素上声明事件处理程序时,它才会调用事件处理程序。
  2. 不会自动触发变更检测;我们需要自己调用它。
  3. 与开发人员的想法或做法不同,无需使用 fakeAsync — 处理程序将同步执行。