本文整理匯總了TypeScript中app/entities/project/project.service.ProjectService類的典型用法代碼示例。如果您正苦於以下問題:TypeScript service.ProjectService類的具體用法?TypeScript service.ProjectService怎麽用?TypeScript service.ProjectService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了service.ProjectService類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: describe
describe('Project Service', () => {
let injector: TestBed;
let service: ProjectService;
let httpMock: HttpTestingController;
let elemDefault: IProject;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule]
});
injector = getTestBed();
service = injector.get(ProjectService);
httpMock = injector.get(HttpTestingController);
elemDefault = new Project('ID', 'AAAAAAA');
});
describe('Service methods', async () => {
it('should find an element', async () => {
const returnedFromService = Object.assign({}, 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 Project', async () => {
const returnedFromService = Object.assign(
{
id: 'ID'
},
elemDefault
);
const expected = Object.assign({}, returnedFromService);
service
.create(new Project(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 Project', async () => {
const returnedFromService = Object.assign(
{
name: 'BBBBBB'
},
elemDefault
);
const expected = Object.assign({}, 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 Project', async () => {
const returnedFromService = Object.assign(
{
name: 'BBBBBB'
},
elemDefault
);
const expected = Object.assign({}, 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();
});
it('should delete a Project', async () => {
const rxPromise = service.delete('123').subscribe(resp => expect(resp.ok));
const req = httpMock.expectOne({ method: 'DELETE' });
req.flush({ status: 200 });
});
});
afterEach(() => {
httpMock.verify();
});
});
示例2: it
it('should update a Project', async () => {
const returnedFromService = Object.assign(
{
title: 'BBBBBB',
objective: 'BBBBBB',
startDate: currentDate.format(DATE_FORMAT),
endDate: currentDate.format(DATE_FORMAT),
createdDate: currentDate.format(DATE_TIME_FORMAT),
lastModifiedDate: currentDate.format(DATE_TIME_FORMAT)
},
elemDefault
);
const expected = Object.assign(
{
startDate: currentDate,
endDate: currentDate,
createdDate: currentDate,
lastModifiedDate: 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));
});
示例3: it
it('should find an element', async () => {
const returnedFromService = Object.assign({}, 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));
});