本文整理匯總了TypeScript中app/account/password-reset/finish/password-reset-finish.component.PasswordResetFinishComponent類的典型用法代碼示例。如果您正苦於以下問題:TypeScript component.PasswordResetFinishComponent類的具體用法?TypeScript component.PasswordResetFinishComponent怎麽用?TypeScript component.PasswordResetFinishComponent使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了component.PasswordResetFinishComponent類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: beforeEach
beforeEach(() => {
fixture = TestBed.createComponent(PasswordResetFinishComponent);
comp = fixture.componentInstance;
comp.ngOnInit();
});
示例2: describe
describe('PasswordResetFinishComponent', () => {
let fixture: ComponentFixture<PasswordResetFinishComponent>;
let comp: PasswordResetFinishComponent;
beforeEach(() => {
fixture = TestBed.configureTestingModule({
imports: [MegaskateManagerTestModule],
declarations: [PasswordResetFinishComponent],
providers: [
{
provide: ActivatedRoute,
useValue: new MockActivatedRoute({ key: 'XYZPDQ' })
},
{
provide: Renderer,
useValue: {
invokeElementMethod(renderElement: any, methodName: string, args?: any[]) {}
}
},
{
provide: ElementRef,
useValue: new ElementRef(null)
}
]
})
.overrideTemplate(PasswordResetFinishComponent, '')
.createComponent(PasswordResetFinishComponent);
});
beforeEach(() => {
fixture = TestBed.createComponent(PasswordResetFinishComponent);
comp = fixture.componentInstance;
comp.ngOnInit();
});
it('should define its initial state', () => {
comp.ngOnInit();
expect(comp.keyMissing).toBeFalsy();
expect(comp.key).toEqual('XYZPDQ');
expect(comp.resetAccount).toEqual({});
});
it(
'sets focus after the view has been initialized',
inject([ElementRef], (elementRef: ElementRef) => {
const element = fixture.nativeElement;
const node = {
focus() {}
};
elementRef.nativeElement = element;
spyOn(element, 'querySelector').and.returnValue(node);
spyOn(node, 'focus');
comp.ngAfterViewInit();
expect(element.querySelector).toHaveBeenCalledWith('#password');
expect(node.focus).toHaveBeenCalled();
})
);
it('should ensure the two passwords entered match', () => {
comp.resetAccount.password = 'password';
comp.confirmPassword = 'non-matching';
comp.finishReset();
expect(comp.doNotMatch).toEqual('ERROR');
});
it(
'should update success to OK after resetting password',
inject(
[PasswordResetFinishService],
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(of({}));
comp.resetAccount.password = 'password';
comp.confirmPassword = 'password';
comp.finishReset();
tick();
expect(service.save).toHaveBeenCalledWith({
key: 'XYZPDQ',
newPassword: 'password'
});
expect(comp.success).toEqual('OK');
})
)
);
it(
'should notify of generic error',
inject(
[PasswordResetFinishService],
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(throwError('ERROR'));
//.........這裏部分代碼省略.........
示例3: fakeAsync
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(of({}));
comp.resetAccount.password = 'password';
comp.confirmPassword = 'password';
comp.finishReset();
tick();
expect(service.save).toHaveBeenCalledWith({
key: 'XYZPDQ',
newPassword: 'password'
});
expect(comp.success).toEqual('OK');
})
示例4: inject
inject([ElementRef], (elementRef: ElementRef) => {
const element = fixture.nativeElement;
const node = {
focus() {}
};
elementRef.nativeElement = element;
spyOn(element, 'querySelector').and.returnValue(node);
spyOn(node, 'focus');
comp.ngAfterViewInit();
expect(element.querySelector).toHaveBeenCalledWith('#password');
expect(node.focus).toHaveBeenCalled();
})
示例5: fakeAsync
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(throwError('ERROR'));
comp.passwordForm.patchValue({
newPassword: 'password',
confirmPassword: 'password'
});
comp.finishReset();
tick();
expect(service.save).toHaveBeenCalledWith({
key: 'XYZPDQ',
newPassword: 'password'
});
expect(comp.success).toBeNull();
expect(comp.error).toEqual('ERROR');
})
示例6: it
it('should define its initial state', () => {
comp.ngOnInit();
expect(comp.keyMissing).toBeFalsy();
expect(comp.key).toEqual('XYZPDQ');
});