美文网首页
Angular2--属性型指令单元测试

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

作者: 紫诺_qiu | 来源:发表于2016-12-23 17:59 被阅读117次

属性型指令的单元测试

  • 这里依然用文本高亮的指令来说明。
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: `
  <h2 highlight="skyblue">About</h2>
  <twain-quote></twain-quote>
  <p>All about this sample</p>`
})
export class AboutComponent { }
beforeEach(() => {
  fixture = TestBed.configureTestingModule({
    declarations: [ AboutComponent, HighlightDirective],
    schemas:      [ NO_ERRORS_SCHEMA ]  //用来“浅化”组件测试程序,告诉编译器忽略不认识的元素和属性,这样你不再需要声明无关的组件和指令,
  })
  .createComponent(AboutComponent);
  fixture.detectChanges(); // initial binding
});

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

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

@Component({
  template: `
  <h2 highlight="yellow">Something Yellow</h2>
  <h2 highlight>The Default (Gray)</h2>
  <h2>No Highlight</h2>
  <input #box [highlight]="box.value" value="cyan"/>`
})
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 <h2> background "yellow"', () => {
  expect(des[0].styles['backgroundColor']).toBe('yellow');
});
it('should color 2nd <h2> background w/ default color', () => {
  const dir = des[1].injector.get(HighlightDirective) as HighlightDirective; //监听指令属性变化
  expect(des[1].styles['backgroundColor']).toBe(dir.defaultColor);
});

it('should bind <input> 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 <h2> should not have a customProperty', () => {
  expect(bareH2.properties['customProperty']).toBeUndefined();
});
  • 已知元素类型时,By.directive是一种获取拥有这个指令的元素的好办法;
  • Angular将指令添加到它的元素的注入器中。 默认颜色的测试程序使用第二个<h2>的注入器来获取它的HighlightDirective实例以及它的defaultColor。
  • DebugElement.properties提供了对指令的自定义属性的访问。

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

相关文章

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

    属性型指令的单元测试 这里依然用文本高亮的指令来说明。 单一的单元测试 但是测试单一的用例无法探索该指令的全部能力...

  • Angular2--属性型指令

    属性型指令 用于改变一个DOM元素的外观或行为。例如,内置的NgStyle指令可以同时修改元素的多个样式。 创建属...

  • angular4 学习第二天(内置指令)

    一、angular 内置指令学习(一) 属性型指令属性型指令会监听和修改其它HTML元素或组件的行为、元素属性(A...

  • Angular自定义指令

    我们知道angular指令分为结构型和属性型2种,今天就来研究一下自定义属性型指令。 上面我们定义了一个指令,如何...

  • 04Angular属性型指令

    指令的分类 组件(带模板的指令)结构型指令(改变宿主文档结构)属性型指令(改变宿主行为) 内置指令 结构型指令(改...

  • 指令

    分类 组件:带有模版的指令 属性型指令:更改元素、组件或其他指令的外观或行为的指令。 结构型指令:通过添加和删除 ...

  • 2019-04-24

    结构型指令和属性型指令。 Angular 本身定义了一系列这两种类型的指令,你也可以使用 @Directive()...

  • angular 学习记录(六)

    一、自定义指令: 属性型指令至少需要一个带有@Directive装饰器的控制器类。该装饰器指定了一个用于标识属性的...

  • Angular之自定义指令

    1.自定义指令这里我们说的指令可以理解为 属性型指令,主要是用来控制组件的外观的。 2.自定义指令的生成 3.目录...

  • Angular2 源码解读 - 自定义指令@Directive

    定义属性型指令用于改变一个DOM元素的外观或行为 案例@Directive({ selector : '[high...

网友评论

      本文标题:Angular2--属性型指令单元测试

      本文链接:https://www.haomeiwen.com/subject/ujgkvttx.html