本文整理匯總了TypeScript中app/account/password/password.component.PasswordComponent類的典型用法代碼示例。如果您正苦於以下問題:TypeScript component.PasswordComponent類的具體用法?TypeScript component.PasswordComponent怎麽用?TypeScript component.PasswordComponent使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了component.PasswordComponent類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: describe
describe('PasswordComponent', () => {
let comp: PasswordComponent;
let fixture: ComponentFixture<PasswordComponent>;
let service: PasswordService;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [JhipsterSampleApplicationTestModule],
declarations: [PasswordComponent],
providers: [
{
provide: JhiTrackerService,
useClass: MockTrackerService
}
]
})
.overrideTemplate(PasswordComponent, '')
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PasswordComponent);
comp = fixture.componentInstance;
service = fixture.debugElement.injector.get(PasswordService);
});
it('should show error if passwords do not match', () => {
// GIVEN
comp.newPassword = 'password1';
comp.confirmPassword = 'password2';
// WHEN
comp.changePassword();
// THEN
expect(comp.doNotMatch).toBe('ERROR');
expect(comp.error).toBeNull();
expect(comp.success).toBeNull();
});
it('should call Auth.changePassword when passwords match', () => {
// GIVEN
const passwordValues = {
currentPassword: 'oldPassword',
newPassword: 'myPassword'
};
spyOn(service, 'save').and.returnValue(of(new HttpResponse({ body: true })));
comp.currentPassword = passwordValues.currentPassword;
comp.newPassword = comp.confirmPassword = passwordValues.newPassword;
// WHEN
comp.changePassword();
// THEN
expect(service.save).toHaveBeenCalledWith(passwordValues.newPassword, passwordValues.currentPassword);
});
it('should set success to OK upon success', function() {
// GIVEN
spyOn(service, 'save').and.returnValue(of(new HttpResponse({ body: true })));
comp.newPassword = comp.confirmPassword = 'myPassword';
// WHEN
comp.changePassword();
// THEN
expect(comp.doNotMatch).toBeNull();
expect(comp.error).toBeNull();
expect(comp.success).toBe('OK');
});
it('should notify of error if change password fails', function() {
// GIVEN
spyOn(service, 'save').and.returnValue(throwError('ERROR'));
comp.newPassword = comp.confirmPassword = 'myPassword';
// WHEN
comp.changePassword();
// THEN
expect(comp.doNotMatch).toBeNull();
expect(comp.success).toBeNull();
expect(comp.error).toBe('ERROR');
});
});
示例2: it
it('should show error if passwords do not match', () => {
// GIVEN
comp.newPassword = 'password1';
comp.confirmPassword = 'password2';
// WHEN
comp.changePassword();
// THEN
expect(comp.doNotMatch).toBe('ERROR');
expect(comp.error).toBeNull();
expect(comp.success).toBeNull();
});