本文整理汇总了TypeScript中app/admin/logs/logs.service.LogsService类的典型用法代码示例。如果您正苦于以下问题:TypeScript service.LogsService类的具体用法?TypeScript service.LogsService怎么用?TypeScript service.LogsService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了service.LogsService类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('Logs Service', () => {
let service: LogsService;
let httpMock;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule]
});
service = TestBed.get(LogsService);
httpMock = TestBed.get(HttpTestingController);
});
afterEach(() => {
httpMock.verify();
});
describe('Service methods', () => {
it('should call correct URL', () => {
service.findAll().subscribe(() => {});
const req = httpMock.expectOne({ method: 'GET' });
const resourceUrl = SERVER_API_URL + 'management/logs';
expect(req.request.url).toEqual(resourceUrl);
});
it('should return Logs', () => {
const log = new Log('main', 'ERROR');
service.findAll().subscribe(received => {
expect(received.body[0]).toEqual(log);
});
const req = httpMock.expectOne({ method: 'GET' });
req.flush([log]);
});
it('should change log level', () => {
const log = new Log('main', 'ERROR');
service.changeLevel(log).subscribe(received => {
expect(received.body[0]).toEqual(log);
});
const req = httpMock.expectOne({ method: 'PUT' });
req.flush([log]);
});
});
});
示例2: describe
describe('Logs Service', () => {
let service: LogsService;
let httpMock;
let expectedResult;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule]
});
expectedResult = {};
service = TestBed.get(LogsService);
httpMock = TestBed.get(HttpTestingController);
});
afterEach(() => {
httpMock.verify();
});
describe('Service methods', () => {
it('should call correct URL', () => {
service.findAll().subscribe();
const req = httpMock.expectOne({ method: 'GET' });
const resourceUrl = SERVER_API_URL + 'management/loggers';
expect(req.request.url).toEqual(resourceUrl);
});
it('should change log level', () => {
service.changeLevel('main', 'ERROR').subscribe();
const req = httpMock.expectOne({ method: 'POST' });
const resourceUrl = SERVER_API_URL + 'management/loggers/main';
expect(req.request.url).toEqual(resourceUrl);
expect(req.request.body).toEqual({ configuredLevel: 'ERROR' });
});
});
});
示例3: it
it('should call correct URL', () => {
service.findAll().subscribe();
const req = httpMock.expectOne({ method: 'GET' });
const resourceUrl = SERVER_API_URL + 'management/loggers';
expect(req.request.url).toEqual(resourceUrl);
});
示例4: it
it('should change log level', () => {
const log = new Log('main', 'ERROR');
service.changeLevel(log).subscribe(received => {
expect(received.body[0]).toEqual(log);
});
const req = httpMock.expectOne({ method: 'PUT' });
req.flush([log]);
});