5

Angular で最初のコンポーネント テストの 1 つを書いていますが、ngModel バインディングを機能させるのに苦労しています。これが私のテストモジュールの定義です:

beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [
        LdapLoginComponent,
      ],
      imports: [
        CommonModule,
        FormsModule,
        NoopAnimationsModule,
        MatInputModule,
        MatFormFieldModule,
        RouterTestingModule,
      ],
      providers: [
        {
          provide: AuthorizationService,
          useValue: { login() {} },
        },
      ]
    }).compileComponents();
  }));

そしてここに私のテストケース:

it('should bind form fields with class', fakeAsync(() => {
    // Given
    const username = 'username';
    const password = 'password';
    const usernameField = de.query(By.css('input[name=username]')).nativeElement;
    const passwordField = de.query(By.css('input[name=password]')).nativeElement;

    // When
    usernameField.value = username;
    passwordField.value = password;
    usernameField.dispatchEvent(new Event('input'));
    passwordField.dispatchEvent(new Event('input'));
    tick();
    fixture.detectChanges();

    // Then
    expect(comp.username).toEqual(username);
    expect(comp.password).toEqual(password);
  }));

私のコンポーネントクラス:

export class LdapLoginComponent {

  username: string;
  password: string;
  errorMessage: string;
  submitDisabled = false;

  constructor(
    private authorizationService: AuthorizationService,
    private router: Router,
  ) {
  }

  login(): void {
    delete this.errorMessage;
    this.submitDisabled = true;
    this.authorizationService.login(AuthorizationProvider.LDAP, this.username, this.password)
      .subscribe(
        () => {
          this.router.navigate(['/']);
        },
        (err: Error) => {
          this.errorMessage = err.message;
          this.submitDisabled = false;
        },
      );
  }

}

そして私のコンポーネントテンプレート:

<form class="form-container" (submit)="login()">
  <mat-form-field color="warn">
    <input
    matInput
    type="text"
    name="username"
    placeholder="Insert your username"
    [(ngModel)]="username"
    required
    i18n-placeholder="@@input.placeholder.username">
  </mat-form-field>
  <mat-form-field color="warn">
    <input
      matInput
      type="password"
      name="password"
      placeholder="Insert your password"
      [(ngModel)]="password"
      required
      i18n-placeholder="@@input.placeholder.password">
  </mat-form-field>
  <button
    mat-raised-button
    type="submit"
    color="warn"
    [disabled]="submitDisabled"
    i18n="@@input.submit">Submit</button>
</form>
<article>{{errorMessage}}</article>

テスト内のユーザー名とパスワードのフィールドの値を変更しています。それに応じてクラスのユーザー名とパスワードのフィールドが更新されることを期待しています。ブラウザで手動でテストするとすべてうまくいきますが、テストではうまくいきません。

何か案は ?

ありがとう。

4

2 に答える 2

0

問題は、dispatchEvent を呼び出す前に入力フィールドの値を実際に設定していないことです。コンポーネント属性を直接設定しています。

comp.username = username;
usernameField.dispatchEvent(new Event('input'));

する必要があります

let usernameFieldElement = usernameField.nativeElement;
usernameFieldElement.value = username;
usernameField.dispatchEvent(new Event('input'));

パスワードも同様です。

もう 1 つは、入力領域へのテキストの入力、ボタンのクリックによるログオンの実行、およびログオン機能自体の 3 つのことを一度にテストしていることです。これらを 3 つのアサーションに分割することをお勧めします。

  1. 上記のようにフィールドを設定し、データ バインディングを確認します。

  2. ボタンをクリックし、ログイン機能をスパイして、それが呼び出されたことを確認します。

  3. 実際のコンポーネント属性を設定し、logon() を直接呼び出して、navigateSpy が正しく呼び出されていることを確認します。

これにより、何か問題が発生した場合に、より簡単に見つけることができます。

于 2018-01-11T22:22:35.153 に答える