本文整理汇总了TypeScript中app/entities/customer/customer.component.CustomerComponent类的典型用法代码示例。如果您正苦于以下问题:TypeScript component.CustomerComponent类的具体用法?TypeScript component.CustomerComponent怎么用?TypeScript component.CustomerComponent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了component.CustomerComponent类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('Customer Management Component', () => {
let comp: CustomerComponent;
let fixture: ComponentFixture<CustomerComponent>;
let service: CustomerService;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [ImGatewayTestModule],
declarations: [CustomerComponent],
providers: [
{
provide: ActivatedRoute,
useValue: {
data: {
subscribe: (fn: (value: Data) => void) =>
fn({
pagingParams: {
predicate: 'id',
reverse: false,
page: 0
}
})
}
}
}
]
})
.overrideTemplate(CustomerComponent, '')
.compileComponents();
fixture = TestBed.createComponent(CustomerComponent);
comp = fixture.componentInstance;
service = fixture.debugElement.injector.get(CustomerService);
});
it('Should call load all on init', () => {
// GIVEN
const headers = new HttpHeaders().append('link', 'link;link');
spyOn(service, 'query').and.returnValue(
of(
new HttpResponse({
body: [new Customer(123)],
headers
})
)
);
// WHEN
comp.ngOnInit();
// THEN
expect(service.query).toHaveBeenCalled();
expect(comp.customers[0]).toEqual(jasmine.objectContaining({ id: 123 }));
});
it('should load a page', () => {
// GIVEN
const headers = new HttpHeaders().append('link', 'link;link');
spyOn(service, 'query').and.returnValue(
of(
new HttpResponse({
body: [new Customer(123)],
headers
})
)
);
// WHEN
comp.loadPage(1);
// THEN
expect(service.query).toHaveBeenCalled();
expect(comp.customers[0]).toEqual(jasmine.objectContaining({ id: 123 }));
});
it('should not load a page is the page is the same as the previous page', () => {
spyOn(service, 'query').and.callThrough();
// WHEN
comp.loadPage(0);
// THEN
expect(service.query).toHaveBeenCalledTimes(0);
});
it('should re-initialize the page', () => {
// GIVEN
const headers = new HttpHeaders().append('link', 'link;link');
spyOn(service, 'query').and.returnValue(
of(
new HttpResponse({
body: [new Customer(123)],
headers
})
)
);
// WHEN
comp.loadPage(1);
comp.clear();
//.........这里部分代码省略.........
示例2: it
it('should calculate the sort attribute for an id', () => {
// WHEN
const result = comp.sort();
// THEN
expect(result).toEqual(['id,desc']);
});
示例3: HttpResponse
it('should re-initialize the page', () => {
// GIVEN
const headers = new HttpHeaders().append('link', 'link;link');
spyOn(service, 'query').and.returnValue(
of(
new HttpResponse({
body: [new Customer(123)],
headers
})
)
);
// WHEN
comp.loadPage(1);
comp.clear();
// THEN
expect(comp.page).toEqual(0);
expect(service.query).toHaveBeenCalledTimes(2);
expect(comp.customers[0]).toEqual(jasmine.objectContaining({ id: 123 }));
});