本文整理汇总了TypeScript中app/entities/book/book.service.BookService类的典型用法代码示例。如果您正苦于以下问题:TypeScript service.BookService类的具体用法?TypeScript service.BookService怎么用?TypeScript service.BookService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了service.BookService类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('Book Service', () => {
let injector: TestBed;
let service: BookService;
let httpMock: HttpTestingController;
let elemDefault: IBook;
let currentDate: moment.Moment;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule]
});
injector = getTestBed();
service = injector.get(BookService);
httpMock = injector.get(HttpTestingController);
currentDate = moment();
elemDefault = new Book(0, 'AAAAAAA', 'AAAAAAA', currentDate, 0, 0);
});
describe('Service methods', async () => {
it('should find an element', async () => {
const returnedFromService = Object.assign(
{
published: currentDate.format(DATE_FORMAT)
},
elemDefault
);
service
.find(123)
.pipe(take(1))
.subscribe(resp => expect(resp).toMatchObject({ body: elemDefault }));
const req = httpMock.expectOne({ method: 'GET' });
req.flush(JSON.stringify(returnedFromService));
});
it('should create a Book', async () => {
const returnedFromService = Object.assign(
{
id: 0,
published: currentDate.format(DATE_FORMAT)
},
elemDefault
);
const expected = Object.assign(
{
published: currentDate
},
returnedFromService
);
service
.create(new Book(null))
.pipe(take(1))
.subscribe(resp => expect(resp).toMatchObject({ body: expected }));
const req = httpMock.expectOne({ method: 'POST' });
req.flush(JSON.stringify(returnedFromService));
});
it('should update a Book', async () => {
const returnedFromService = Object.assign(
{
title: 'BBBBBB',
author: 'BBBBBB',
published: currentDate.format(DATE_FORMAT),
quantity: 1,
price: 1
},
elemDefault
);
const expected = Object.assign(
{
published: currentDate
},
returnedFromService
);
service
.update(expected)
.pipe(take(1))
.subscribe(resp => expect(resp).toMatchObject({ body: expected }));
const req = httpMock.expectOne({ method: 'PUT' });
req.flush(JSON.stringify(returnedFromService));
});
it('should return a list of Book', async () => {
const returnedFromService = Object.assign(
{
title: 'BBBBBB',
author: 'BBBBBB',
published: currentDate.format(DATE_FORMAT),
quantity: 1,
price: 1
},
elemDefault
);
const expected = Object.assign(
{
published: currentDate
},
returnedFromService
);
//.........这里部分代码省略.........
开发者ID:Doha2012,项目名称:tutorials,代码行数:101,代码来源:book.service.spec.ts
示例2: it
it('should return a list of Book', async () => {
const returnedFromService = Object.assign(
{
title: 'BBBBBB',
author: 'BBBBBB',
published: currentDate.format(DATE_FORMAT),
quantity: 1,
price: 1
},
elemDefault
);
const expected = Object.assign(
{
published: currentDate
},
returnedFromService
);
service
.query(expected)
.pipe(
take(1),
map(resp => resp.body)
)
.subscribe(body => expect(body).toContainEqual(expected));
const req = httpMock.expectOne({ method: 'GET' });
req.flush(JSON.stringify([returnedFromService]));
httpMock.verify();
});
开发者ID:Doha2012,项目名称:tutorials,代码行数:28,代码来源:book.service.spec.ts
示例3: purchase
purchase(id: number) {
console.log('Purchasing book ' + id);
this.bookService.purchase(id).subscribe(
(res: HttpResponse<IBook>) => {
this.book = res.body;
},
(res: HttpErrorResponse) => console.log(res.message)
);
}
开发者ID:Doha2012,项目名称:tutorials,代码行数:9,代码来源:book-detail.component.ts
注:本文中的app/entities/book/book.service.BookService类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论