gpt4 book ai didi

angular - NgRx 8 测试 provideMockStore - 状态切片的 setState

转载 作者:行者123 更新时间:2023-12-04 16:28:37 28 4
gpt4 key购买 nike

我的 NgRx 实现有一个智能组件测试,如下所示:

describe( 'Component', () => {
let store: MockStore<State>;

beforeEach( async( () => {
TestBed.configureTestingModule( {
/* ... */
providers: [
provideMockStore( { initialState: fromReducer.initialState } )
]
} ).compileComponents();
store = TestBed.get<Store<State>>( Store );
} ) );

it( 'should load items in #ngOnInit', () => {
store.setState( {
item: {
...fromReducer.initialState,
entities: { [item.id]: item },
},
otherFeature: null,
otherFeature: null,
otherFeature: null
} );
component.items$.subscribe( items =>
store.select( ItemStoreSelectors.selectItems ).subscribe( fromStore => expect( items ).toEqual( fromStore ) )
);
} );
});

我用 provideMockStoresetState模拟我的 NgRx 状态。这样一切正常,但我真的不喜欢它的这一部分:

store.setState( {
item: {
...fromReducer.initialState,
entities: { [item.id]: item },
},
otherFeature: null,
otherFeature: null,
otherFeature: null
} );

我必须将我状态的所有其他特征切片添加到 setState功能。否则 Typescript 会抛出错误。

所以最好我不想设置根状态,而是像这样的特定功能切片:

store.setState( {
...fromReducer.initialState,
entities: { [item.id]: item },
} );

我找不到任何关于如何使用 provideMockStore 的文档对于状态的特定切片 here .

最佳答案

我建议在这里采取不同的方法。你应该做的是独立地对你的选择器和组件进行单元测试。

NgRx 8 允许 mock selectors .在您的组件中使用它来验证组件的逻辑是否正确。

然后,单独对您的选择器进行单元测试,以验证您的选择器是否按预期工作。

通过这种方式,测试是独立的,而不是脆弱的,并且是真正的单元测试。

编辑:我链接的文档是官方的,但是模拟选择器的另一种方法是:

  beforeEach(() => {
TestBed.configureTestingModule({
providers: [
provideMockStore({
selectors: [
{
selector: yourSelectorNameHere,
value: someMockValueHere
}
]
})
]
});

关于angular - NgRx 8 测试 provideMockStore - 状态切片的 setState,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57287487/

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