Angular - Жасмин - Сброс и перезагрузка компонента - PullRequest
0 голосов
/ 24 апреля 2020

Я хочу шпионить за услугой более одного раза. Для этого я использовал оператор jasmine.getEnv().allowRespy(true);.

Когда я это сделал, я понял, что мне нужно пересоздать свой компонент, чтобы изменения произошли. Я делаю это с:

fixture = TestBed.createComponent(CardDisplayPageComponent);
component = fixture.debugElement.componentInstance;
fixture.detectChanges();

Я получаю такой код:

 it('should have a datasource when cache has data', () => {
    spyOn(cacheService, 'getFromCache').and.returnValue([CARD_GENERIC_DATA_MOCK]);

    fixture = TestBed.createComponent(CardDisplayPageComponent);
    component = fixture.debugElement.componentInstance;
    fixture.detectChanges();

    expect(component.dataSource).toBeTruthy();
  })


  it('should have a datasource when cache does not have data', () => {
    spyOn(cacheService, 'getFromCache').and.returnValue([undefined]);
    spyOn(seasonsFetchingService, 'getTransformedData').and.returnValue(of(CARD_PAGE_GENERIC_DATA_MOCK));

    fixture = TestBed.createComponent(CardDisplayPageComponent);
    component = fixture.debugElement.componentInstance;
    fixture.detectChanges();

    expect(component.dataSource).toBeTruthy();
  })

Есть ли способ избежать этого дублирования?

1 Ответ

0 голосов
/ 24 апреля 2020

Зачем это делать, сделать эти сервисы public в компоненте constructor, а затем поставить шпиона как component.cacheService

it('should have a datasource when cache has data', () => {
    spyOn(component.cacheService, 'getFromCache').and.returnValue([CARD_GENERIC_DATA_MOCK]);
    fixture.detectChanges();
    expect(component.dataSource).toBeTruthy();
  })


  it('should have a datasource when cache does not have data', () => {
    spyOn(component.cacheService, 'getFromCache').and.returnValue([undefined]);
    spyOn(component.seasonsFetchingService,'getTransformedData').and.returnValue(of(CARD_PAGE_GENERIC_DATA_MOCK));
    expect(component.dataSource).toBeTruthy();
  })


Что-то еще, чтобы искать здесь в моей статье

...