con*_*ant 6 testing unit-testing custom-controls angular angular-reactive-forms
我有一个这样的组件
@Component({
selector: 'app-custom-form-control',
templateUrl: '<input>',
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => SelectComponent),
multi: true
}
]
})
export class CustomFormControlComponent implements ControlValueAccessor {...}
Run Code Online (Sandbox Code Playgroud)
如您所见,它是一个自定义表单控件。我在要测试的组件中使用它。
@Component({
selector: 'app-root',
templateUrl: '<div [formGroup]="form">
<app-custom-form-control formControlName="my_field"></app-custom-form-control>
</div>',
})
export class AppComponent implements OnInit, OnDestroy {...}
Run Code Online (Sandbox Code Playgroud)
那么我该如何模拟app-custom-form-control
我的测试呢?
当前的实现需要一个真正的组件......
beforeEach(async(() => {
const testRouter = new RouterStub();
const testDataService = new DataServiceStub();
TestBed.configureTestingModule({
declarations: [
AppComponent,
CustomFormControlComponent // it is a real stuff
],
imports: [
ReactiveFormsModule
],
providers: [
{ provide: Router, useValue: testRouter },
{ provide: DataService, useValue: testDataService }
],
schemas: [ NO_ERRORS_SCHEMA ]
}).compileComponents();
}));
Run Code Online (Sandbox Code Playgroud)
否则(没有声明组件)我得到一个错误 Failed: No value accessor for form control with name: app-custom-form-control
对 Angular 应用程序进行测试时,您可以遵循两种主要方法(以及混合方法):
1-删除不需要的组件,其中
(...) 您创建并声明在测试中发挥很小作用或没有作用的组件和指令的存根版本 (...)
2-NO_ERRORS_SCHEMA
哪个
(...) 告诉 Angular 编译器忽略无法识别的元素和属性 (...)
app-custom-form-control
对于最后一个,编译器在遇到模板中的选择器时不会抛出错误AppComponent
。
选择一种或另一种方法取决于您,因为这取决于您测试的最终目标。
应用方法 1 会是这样的:
describe('AppComponent', () => {
// component stub
@Component({selector: 'app-custom-form-control', template: ''})
class CustomFormControlComponentStub {}
//...
beforeEach(async(() => {
const testRouter = new RouterStub();
const testDataService = new DataServiceStub();
TestBed.configureTestingModule({
declarations: [
AppComponent,
CustomFormControlComponentStub // it is fake! stuff
],
// ... code omitted
}).compileComponents();
}));
//...
});
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
3448 次 |
最近记录: |