當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript password-reset-finish.component.PasswordResetFinishComponent類代碼示例

本文整理匯總了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();
 });
開發者ID:fleko24,項目名稱:MSkate,代碼行數:5,代碼來源:password-reset-finish.component.spec.ts

示例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'));

//.........這裏部分代碼省略.........
開發者ID:fleko24,項目名稱:MSkate,代碼行數:101,代碼來源:password-reset-finish.component.spec.ts

示例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');
                })
開發者ID:fleko24,項目名稱:MSkate,代碼行數:15,代碼來源:password-reset-finish.component.spec.ts

示例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();
            })
開發者ID:fleko24,項目名稱:MSkate,代碼行數:15,代碼來源:password-reset-finish.component.spec.ts

示例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');
      })
開發者ID:jbbfreitas,項目名稱:BestMeal,代碼行數:17,代碼來源:password-reset-finish.component.spec.ts

示例6: it

    it('should define its initial state', () => {
      comp.ngOnInit();

      expect(comp.keyMissing).toBeFalsy();
      expect(comp.key).toEqual('XYZPDQ');
    });
開發者ID:jbbfreitas,項目名稱:BestMeal,代碼行數:6,代碼來源:password-reset-finish.component.spec.ts


注:本文中的app/account/password-reset/finish/password-reset-finish.component.PasswordResetFinishComponent類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。