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>
テスト内のユーザー名とパスワードのフィールドの値を変更しています。それに応じてクラスのユーザー名とパスワードのフィールドが更新されることを期待しています。ブラウザで手動でテストするとすべてうまくいきますが、テストではうまくいきません。
何か案は ?
ありがとう。