Mocking a Subject property of mocked service to be subscription in the Angular unit test
Nel mio test di unità angolare il mio servizio simulato ha due proprietà:
public messageChange: Subject<ChatMessage> = new Subject<ChatMessage>();
public gameChange: Subject<GameState> = new Subject<GameState>();
E nel mio SUT li uso nel mio costruttore:
this._subChat = this.hub.messageChange.subscribe((message: ChatMessage) => {
this.message = message;
this.messageChange.next(this.message);
});
this._subGame = this.hub.gameChange.subscribe((game: GameState) => {
this.game.setGame(game);
});
In questo momento sto cercando di utilizzare questi 2 approcci per falsificare le proprietà dal servizio deriso:
- Oggetto di riproduzione mock di test unità angolare
- Come spiare una proprietà di valore (piuttosto che un metodo) con Jasmine
Riht ora il mio test assomiglia a questo:
describe('SignalRService', () => {
let signalrService: SignalRService;
const hubServiceMock = jasmine.createSpyObj('HubConnectionService', [
'isConnectionStarted',
]);
const messageChange = new Subject();
const gameChange = new Subject();
beforeEach(() => {
signalrService = new SignalRService(
hubServiceMock
);
let msg = {} as ChatMessage;
let gam = {} as GameState;
messageChange.next(msg);
gameChange.next(gam);
});
it('Service_ShouldBeCreated', () => {
spyOnProperty(hubServiceMock, 'messageChange', 'get').and.returnValue(
messageChange
);
spyOnProperty(hubServiceMock, 'gameChange', 'get').and.returnValue(
gameChange
);
expect(signalrService).toBeTruthy();
});
}
Quindi nel test creo:
servizio mock
hubServiceMock
,falso
messageChange = new Subject();
,falso
gameChange = new Subject();
,corro per entrambi
.next
,e ho impostato la spia per le proprietà:
spyOnProperty(hubServiceMock, 'messageChange', 'get').and.returnValue( messageChange );
spyOnProperty(hubServiceMock, 'gameChange', 'get').and.returnValue( gameChange );
Perché non funziona per me? Ricevo un errore:
Impossibile leggere la proprietà "iscriviti" di undefined
Risposte
Non funziona perché hubServiceMock
non ha i soggetti falsi nel suo messageChange
e gameChange
, è necessario impostarli prima di chiamare new SignalRService(hubServiceMock)
.
const hubServiceMock = jasmine.createSpyObj('HubConnectionService', [
'isConnectionStarted',
]);
const messageChange = new Subject();
const gameChange = new Subject();
// add this
hubServiceMock.messageChange = messageChange;
hubServiceMock.gameChange = gameChange;
allora dovrebbe funzionare, forse sono necessari piccoli aggiustamenti.
Suggerirei di usare un beffardo lib per questi casi per evitare il dolore.
Ad esempio con ng-mocks , il test potrebbe essere simile a:
describe('SignalRService', () => {
beforeEach(() => MockBuilder(SignalRService, ITS_MODULE));
const hubServiceMock = {
messageChange: new Subject(),
gameChange: new Subject(),
};
beforeEach(() => MockInstance(HubConnectionService, hubServiceMock));
it('Service_ShouldBeCreated', () => {
const signalrService = MockRender(SignalRService).point.componentInstance;
expect(signalrService).toBeTruthy();
hubServiceMock.messageChange.next({});
hubServiceMock.gameChange.next({});
// next assertions.
});
}
Ho finito con l'approccio, dove ho iniettato un servizio deriso come questo:
hubServiceMock = TestBed.inject(HubConnectionService);
Poi prendo in giro i miei in Subject
questo modo:
it('Service_ShouldBeCreated', () => {
spyOn(hubServiceMock.messageChange, 'next');
spyOn(hubServiceMock.gameChange, 'next');
expect(signalrService).toBeTruthy();
});
E in altri test posso usare metodi di servizio deriso come questo:
let spyIsConnectionStarted = spyOn(hubServiceMock, 'isConnectionStarted');
spyIsConnectionStarted.and.returnValue(true);