У меня есть угловой сервис, который общается с нашим API.Некоторые запросы на одни и те же данные могут кэшироваться локально, чтобы помочь вещам чувствовать себя немного быстрее.
Вот в основном то, что происходит в методе службы, который выполняет некоторое кэширование:
private thingCache: IThing[] = [];
getThing$(thingId: string): Observable<IThing> {
const cachedThing = this.thingCache.find(( => l.id === thingId);
if (cachedThing) {
return of(cachedThing);
}
const fetchedThing$ = this.http.get<IThing>(`http://our-api/thing/${thingId}`)
.pipe(tap((thing: IThing) => {
//add any retrieved login to the cache
//we already checked above that it's not in the cache, so we know we are adding a new one here
this.thingCache.push(thing);
}));
return fetchedThing$;
}
Так что вtest Мне нужно проверить, что первый вызов происходит из фактического HTTP-запроса GET, а любой вызов после этого - нет.Какой лучший способ сделать это?
Вот как я проверяю первый звонок, который работает
describe('Service: api', () => {
let service: ApiService;
let httpMock: HttpTestingController;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [ HttpClientTestingModule ],
providers: [ ApiService ]
});
service = TestBed.get(ApiService);
httpMock = TestBed.get(HttpTestingController);
});
afterEach(() => {
httpMock.verify();
});
it('should GET a thing when calling getThing$() with a thing ID', () => {
service.getThing$('1234-5678-9012').subscribe((value: IThing) => {
expect(value).toEqual({
id: '148e265b-b284-84b7-b8b3-441854f15783', otherData: 'foo'
} as IThing);
}, () => {
fail('The subscription to getThing$() has errored out!');
});
const req = httpMock.expectOne('http://our-api/thing/1234-5678-9012');
expect(req.request.method).toEqual('GET');
req.flush({
id: '148e265b-b284-84b7-b8b3-441854f15783', otherData: 'foo'
} as IThing);
});
});