本文整理汇总了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();
});