gpt4 book ai didi

angular - 如何测试 Action 是否在 NgRX 中发送?

转载 作者:行者123 更新时间:2023-12-04 12:23:18 25 4
gpt4 key购买 nike

我有一个在构造函数中分派(dispatch) Action 的组件:

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
constructor(store: Store<State>) {
store.dispatch(action1());
store.dispatch(action2());
}
}
我需要测试 action1 和 action2 是否被调度。我正在尝试使用 MockStore 来做到这一点:
import {MockStore, provideMockStore} from '@ngrx/store/testing';

let store: MockStore;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [
AppComponent
],
providers: [
provideMockStore({ initialState }),
],
}).compileComponents();
store = TestBed.inject(MockStore);
});
这是我的测试:
it('should dispatch an action1 in constructor', () => {
TestBed.createComponent(AppComponent);

const expected = cold('a', {a: action1()});

expect(store.scannedActions$).toBeObservable(expected);
});

it('should dispatch an action2 in constructor', () => {
TestBed.createComponent(AppComponent);

const expected = cold('a', {a: action2()});

expect(store.scannedActions$).toBeObservable(expected);
});
这很奇怪,但只通过了一项测试。这取决于 dispatch() 调用的顺序。
store.scannedActions$ 只包含一个值。如果组件代码是:
constructor(store: Store<State>) {
store.dispatch(action1());
store.dispatch(action2());
}
那么 store.scannedActions$ 只包含 action2()如果组件代码是:
constructor(store: Store<State>) {
store.dispatch(action2());
store.dispatch(action1());
}
那么 store.scannedActions$ 只包含 action1()如何测试这两个 Action ?

最佳答案

好像scannedActions$即使它是复数 (actions) 也只存储了最后一个调度的 Action,查看它的 interface .
我只会用 spyOn并监视 store.dispatch看看它是否是用正确的 Action 调用的。

import {MockStore, provideMockStore} from '@ngrx/store/testing';

let store: MockStore;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [
AppComponent
],
providers: [
provideMockStore({ initialState }),
],
}).compileComponents();
store = TestBed.inject(MockStore);
});

it('should dispatch action1 and action 2 in constructor', () => {
const dispatchSpy = spyOn(store, 'dispatch').and.callThrough(); // spy on the store
// dispatch but still call the actual implementation
TestBed.createComponent(AppComponent);
fixture.detectChanges(); // used to call ngOnInit, maybe it is not needed

expect(dispatchSpy).toHaveBeenCalledWith(action1());
expect(dispatchSpy).toHaveBeenCalledWith(action2());
});

关于angular - 如何测试 Action 是否在 NgRX 中发送?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65108648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com