Symbol and Version services tests

This commit is contained in:
Dominik Ziajka 2018-03-30 12:01:59 +02:00
parent 51f4fe4627
commit c913c351cc
2 changed files with 80 additions and 5 deletions

View File

@ -1,15 +1,90 @@
import { TestBed, inject } from '@angular/core/testing';
import { HttpClient } from '@angular/common/http';
import { HttpTestingController, HttpClientTestingModule } from '@angular/common/http/testing';
import { HttpServer } from './http-server.service';
import { Server } from '../models/server';
import { Node } from '../../cartography/shared/models/node';
import { Port } from '../models/port';
import { getTestServer } from './testing';
import { SymbolService } from './symbol.service';
import { Symbol } from '../../cartography/shared/models/symbol';
describe('SymbolService', () => {
let httpClient: HttpClient;
let httpTestingController: HttpTestingController;
let httpServer: HttpServer;
let service: SymbolService;
let server: Server;
beforeEach(() => {
TestBed.configureTestingModule({
providers: [SymbolService]
imports: [
HttpClientTestingModule
],
providers: [
HttpServer,
SymbolService
]
});
httpClient = TestBed.get(HttpClient);
httpTestingController = TestBed.get(HttpTestingController);
httpServer = TestBed.get(HttpServer);
service = TestBed.get(SymbolService);
server = getTestServer();
});
// it('should be created', inject([SymbolService], (service: SymbolService) => {
// expect(service).toBeTruthy();
// }));
afterEach(() => {
httpTestingController.verify();
});
it('should be created', inject([SymbolService], (service: SymbolService) => {
expect(service).toBeTruthy();
}));
it('should list symbols', inject([SymbolService], (service: SymbolService) => {
service.list(server).subscribe();
const req = httpTestingController.expectOne(
'http://127.0.0.1:3080/v2/symbols');
expect(req.request.method).toEqual("GET");
}));
it('should get raw symbol', inject([SymbolService], (service: SymbolService) => {
service.raw(server, ':my/tested.png').subscribe();
const req = httpTestingController.expectOne(
'http://127.0.0.1:3080/v2/symbols/:my/tested.png/raw');
expect(req.request.method).toEqual("GET");
}));
it('should load symbols', inject([SymbolService], (service: SymbolService) => {
let call = 0;
service.load(server).subscribe();
const req = httpTestingController.expectOne(
'http://127.0.0.1:3080/v2/symbols');
req.flush([{ 'symbol_id': 'myid' }]);
const raw = httpTestingController.expectOne(
'http://127.0.0.1:3080/v2/symbols/myid/raw');
raw.flush('myraw');
service.symbols.subscribe(symbols => {
expect(symbols.length).toEqual(1);
expect(symbols[0].symbol_id).toEqual('myid');
expect(symbols[0].raw).toEqual('myraw');
});
}));
it('should get symbols', inject([SymbolService], (service: SymbolService) => {
const symbol = new Symbol();
symbol.symbol_id = "myid";
service.symbols.next([symbol]);
expect(service.get("myid").symbol_id).toEqual("myid");
}));
});

View File

@ -44,7 +44,7 @@ describe('VersionService', () => {
}));
it('should get version', inject([VersionService], (service: VersionService) => {
service.get(server);
service.get(server).subscribe();
const req = httpTestingController.expectOne(
'http://127.0.0.1:3080/v2/version');