11

テキスト入力があり、変更をリッスンしています。

mycomponent.ts

ngOnInit() {
    this.searchInput = new Control();
    this.searchInput.valueChanges
        .distinctUntilChanged()
        .subscribe(newValue => this.search(newValue))
}
search(query) {
    // do something to search
}

mycomponent.html

<search-box>
    <input type="text" [ngFormControl]="searchInput" >
</search-box>

アプリケーションを実行するとすべて正常に動作しますが、単体テストを行いたいと考えています。

だからここに私が試したものがあります

mycomponent.spec.ts

beforeEach(done => {
    createComponent().then(fix => {
        cmpFixture = fix
        mockResponse()
        instance = cmpFixture.componentInstance
        cmpFixture.detectChanges();
        done();
    })
})
describe('on searching on the list', () => {
        let compiled, input
        beforeEach(() => {
            cmpFixture.detectChanges();
            compiled = cmpFixture.debugElement.nativeElement;
            spyOn(instance, 'search').and.callThrough()
            input = compiled.querySelector('search-box > input')
            input.value = 'fake-search-query'
            cmpFixture.detectChanges();
        })
        it('should call the .search() method', () => {
            expect(instance.search).toHaveBeenCalled()
        })
    })

.search()メソッドが呼び出されないため、テストは失敗します。

テストに変更を認識させるには、別の方法で設定する必要があると思いますvalueが、その方法は本当にわかりません。

誰にもアイデアがありますか?

4

3 に答える 3

25

少し遅いかもしれませんが、input入力要素の値を設定した後、コードがイベントをディスパッチしていないようです:

// ...    
input.value = 'fake-search-query';
input.dispatchEvent(new Event('input'));
cmpFixture.detectChanges();
// ...

Angular 2 テスト内からの入力 html フィールドの更新

于 2016-10-15T11:01:34.047 に答える
0

@input、サブスクリプション、双方向データバインディングを備えたカスタムコンポーネント

カスタム コンポーネントを取得した場合、アプリケーションの単体テストを成功させるには、アプリケーションをさらに変更する必要があります。

ここで要点を見てください。これにより、いくつかのアイデアが得られ ます

ここを注意深く読んで ください。

于 2021-11-22T11:12:03.380 に答える