Angular2--属性型指令单元测试

属性型指令的单元测试

  • 这里依然用文本高亮的指令来说明。
import { Directive, ElementRef, Input, OnChanges, Renderer } from '@angular/core';

@Directive({ selector: '[highlight]' })

export class HighlightDirective implements OnChanges {

  defaultColor =  'rgb(211, 211, 211)'; // lightgray

  @Input('highlight') bgColor: string;

  constructor(private renderer: Renderer, private el: ElementRef) {
    renderer.setElementProperty(el.nativeElement, 'customProperty', true); /** set the element's customProperty to true */
  }

  ngOnChanges() {
    this.renderer.setElementStyle(
      this.el.nativeElement, 'backgroundColor',
      this.bgColor || this.defaultColor );
  }
}
  • 单一的单元测试
import { Component } from '@angular/core';
@Component({
  template: `
  

About

All about this sample

` }) export class AboutComponent { }
beforeEach(() => {
  fixture = TestBed.configureTestingModule({
    declarations: [ AboutComponent, HighlightDirective],
    schemas:      [ NO_ERRORS_SCHEMA ]  //用来“浅化”组件测试程序,告诉编译器忽略不认识的元素和属性,这样你不再需要声明无关的组件和指令,
  })
  .createComponent(AboutComponent);
  fixture.detectChanges(); // initial binding
});

it('should have skyblue 

', () => { const de = fixture.debugElement.query(By.css('h2')); expect(de.styles['backgroundColor']).toBe('skyblue'); });

但是测试单一的用例无法探索该指令的全部能力。但是查找和测试所有使用该指令的组件非常繁琐和脆弱,并且通常无法覆盖所有组件,此时我们可以创建一个展示所有使用该指令的人工测试组件。

@Component({
  template: `
  

Something Yellow

The Default (Gray)

No Highlight

` }) class TestComponent { }
beforeEach(() => {
  fixture = TestBed.configureTestingModule({
    declarations: [ HighlightDirective, TestComponent ]   //这里要把指令和人工组件都声明一下
  })
  .createComponent(TestComponent);
  fixture.detectChanges(); 
 /** 查找所有用到该指令的宿主元素 */
  des = fixture.debugElement.queryAll(By.directive(HighlightDirective));
  bareH2 = fixture.debugElement.query(By.css('h2:not([highlight])')); //没有用到该指令的宿主元素});

it('should have three highlighted elements', () => {
  expect(des.length).toBe(3);
});

it('should color 1st 

background "yellow"', () => { expect(des[0].styles['backgroundColor']).toBe('yellow'); }); it('should color 2nd

background w/ default color', () => { const dir = des[1].injector.get(HighlightDirective) as HighlightDirective; //监听指令属性变化 expect(des[1].styles['backgroundColor']).toBe(dir.defaultColor); }); it('should bind background to value color', () => { // easier to work with nativeElement const input = des[2].nativeElement as HTMLInputElement; expect(input.style.backgroundColor).toBe('cyan', 'initial backgroundColor'); // dispatch a DOM event so that Angular responds to the input value change. input.value = 'green'; input.dispatchEvent(newEvent('input')); fixture.detectChanges(); expect(input.style.backgroundColor).toBe('green', 'changed backgroundColor'); }); // customProperty tests it('all highlighted elements should have a true customProperty', () => { const allTrue = des.map(de => !!de.properties['customProperty']).every(v => v === true); expect(allTrue).toBe(true); }); it('bare

should not have a customProperty', () => { expect(bareH2.properties['customProperty']).toBeUndefined(); });

  • 已知元素类型时,By.directive是一种获取拥有这个指令的元素的好办法;
  • Angular将指令添加到它的元素的注入器中。 默认颜色的测试程序使用第二个

    的注入器来获取它的HighlightDirective实例以及它的defaultColor。

  • DebugElement.properties提供了对指令的自定义属性的访问。

ps:自己在处理这块儿单元测试时遇到最大的坑就是无法监听属性值的变化以及获取到的DOM元素一直有问题(获取时机不对),花了很多时间。

你可能感兴趣的:(Angular2--属性型指令单元测试)