Я написал много модульных тестов для тестирования наблюдаемых, но по какой-то причине этот тест не работает так, как другие, которые я написал, но я не понимаю, в чем проблема.
Я бы хотел, чтобы макет ChangePasswordFacade.successful $ возвращал Observable, который возвращает true.Несмотря на то, что я ранее использовал стратегию насмешки ниже, она не работает.Я попытался ввести ChangePasswordFacade в тест.Я попытался использовать фиктивную успешную функцию $ в useValue поставщика TestBed.И я попробовал подход ниже.Все они выдают успешные $ как ложные.Как я могу по-другому это высмеять, чтобы вернуть истину?
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PasswordChangeModalComponent } from './password-change-modal.component';
import { ReactiveFormsModule } from '@angular/forms';
import { PasswordChangeFormComponent } from '../../..';
import { DefaultPopoverComponent } from '@bis-angular/shared-components/pattern-library';
import { Store, StoreModule } from '@ngrx/store';
import {
ChangePasswordFacade,
UserInformationFacade,
changePasswordInitialState,
CHANGEPASSWORD_FEATURE_KEY,
changePasswordReducer
} from '@bis-angular/users';
import { configureTestSuite } from 'ng-bullet';
import { of } from 'rxjs';
describe('PasswordChangeModalComponent', () => {
let component: PasswordChangeModalComponent;
let fixture: ComponentFixture<PasswordChangeModalComponent>;
const childDefaultPopoverComponent = jasmine.createSpyObj('DefaultPopoverComponent', ['hideModal', 'showModal']);
const childPasswordChangeFormComponent = jasmine.createSpyObj('PasswordChangeFormComponent', ['setFormControlsToEmpty']);
const changePasswordFacadeSpy = jasmine.createSpyObj('ChangePasswordFacade', ['resetState']);
configureTestSuite(() => {
TestBed.configureTestingModule({
imports: [
ReactiveFormsModule,
StoreModule.forRoot({}),
StoreModule.forFeature(CHANGEPASSWORD_FEATURE_KEY, changePasswordReducer, {
initialState: changePasswordInitialState
})
],
declarations: [PasswordChangeFormComponent, DefaultPopoverComponent, PasswordChangeModalComponent],
providers: [Store, UserInformationFacade, ChangePasswordFacade]
});
});
beforeEach(() => {
fixture = TestBed.createComponent(PasswordChangeModalComponent);
component = fixture.componentInstance;
fixture.detectChanges();
component.defaultPopoverComponent = childDefaultPopoverComponent;
component.watchSuccessful = { unsubscribe: () => {} };
spyOn(component.watchSuccessful, 'unsubscribe');
const service = TestBed.get(ChangePasswordFacade);
spyOn(service, 'successful$').and.returnValue(of(true));
});
describe('showPasswordChangeModal function ', () => {
it('should call showModal and then not hide if not successful ', () => {
spyOn(component, 'hidePasswordChangeModal');
component.successful$.subscribe((successful: boolean) => {
expect(component.hidePasswordChangeModal).toHaveBeenCalled();
expect(changePasswordFacadeSpy.resetState).toHaveBeenCalled();
expect(component.watchSuccessful.unsubscribe).toHaveBeenCalled();
});
component.showPasswordChangeModal();
expect(childDefaultPopoverComponent.showModal).toHaveBeenCalled();
});
});
});
import { Injectable } from '@angular/core';
import { select, Store } from '@ngrx/store';
import { ChangePasswordPartialState } from './change-password.reducer';
import { changePasswordQuery } from './change-password.selectors';
import { ChangePassword, ChangePasswordResetState } from './change-password.actions';
import { NewPassword } from '@bis-angular/users';
@Injectable()
export class ChangePasswordFacade {
successful$ = this.store.pipe(select(changePasswordQuery.getSuccessful));
initiated$ = this.store.pipe(select(changePasswordQuery.getInitiated));
constructor(private store: Store<ChangePasswordPartialState>) {}
changePassword(newPassword: NewPassword, userId: string) {
this.store.dispatch(new ChangePassword(newPassword, userId));
}
resetState() {
this.store.dispatch(new ChangePasswordResetState());
}
}