web-dev-qa-db-ja.com

@Input()を使用したAngular2ユニットテスト

インスタンス変数に@Input()アノテーションを使用するコンポーネントがあり、openProductPage()メソッドのユニットテストを作成しようとしていますが、設定方法に少し迷います。単体テスト。 I couldそのインスタンス変数をパブリックにしますが、それに頼る必要はないと思います。

模擬製品が注入される(提供される)ようにJasmineテストを設定し、openProductPage()メソッドをテストするにはどうすればよいですか?

私のコンポーネント:

import {Component, Input} from "angular2/core";
import {Router} from "angular2/router";

import {Product} from "../models/Product";

@Component({
    selector: "product-thumbnail",
    templateUrl: "app/components/product-thumbnail/product-thumbnail.html"
})

export class ProductThumbnail {
    @Input() private product: Product;


    constructor(private router: Router) {
    }

    public openProductPage() {
        let id: string = this.product.id;
        this.router.navigate([“ProductPage”, {id: id}]);
    }
}
51
hartpdx

私は通常次のようなことをします:

describe('ProductThumbnail', ()=> {
  it('should work',
    injectAsync([ TestComponentBuilder ], (tcb: TestComponentBuilder) => {
      return tcb.createAsync(TestCmpWrapper).then(rootCmp => {
        let cmpInstance: ProductThumbnail =  
               <ProductThumbnail>rootCmp.debugElement.children[ 0 ].componentInstance;

        expect(cmpInstance.openProductPage()).toBe(/* whatever */)
      });
  }));
}

@Component({
 selector  : 'test-cmp',
 template  : '<product-thumbnail [product]="mockProduct"></product-thumbnail>',
 directives: [ ProductThumbnail ]
})
class TestCmpWrapper { 
    mockProduct = new Product(); //mock your input 
}

productおよびProductThumbnailクラスの他のフィールドcanは、このアプローチではプライベートであることに注意してください(これは、Thierryのアプローチよりも、もう少し冗長)。

14
awqueous

TestBed.configureTestingModuleを使用してテストコンポーネントをコンパイルする場合、別のアプローチがあります。基本的には受け入れられた答えと同じですが、angular-cliが仕様を生成する方法により似ている場合があります。 FWIW。

import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DebugElement } from '@angular/core';

describe('ProductThumbnail', () => {
  let component: ProductThumbnail;
  let fixture: ComponentFixture<TestComponentWrapper>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ 
        TestComponentWrapper,
        ProductThumbnail
      ],
      schemas: [CUSTOM_ELEMENTS_SCHEMA]
    })
    .compileComponents();

    fixture = TestBed.createComponent(TestComponentWrapper);
    component = fixture.debugElement.children[0].componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});

@Component({
  selector: 'test-component-wrapper',
  template: '<product-thumbnail [product]="product"></product-thumbnail>'
})
class TestComponentWrapper {
  product = new Product()
}
39
Danny Bullis

これは公式ドキュメントからです https://angular.io/docs/ts/latest/guide/testing.html#!#component-fixture 。したがって、新しい入力オブジェクトexpectedHeroを作成し、コンポーネントに渡すことができますcomp.hero = expectedHero

また、必ずfixture.detectChanges(); lastを呼び出してください。そうしないと、プロパティがコンポーネントにバインドされません。

実施例

// async beforeEach
beforeEach( async(() => {
    TestBed.configureTestingModule({
        declarations: [ DashboardHeroComponent ],
    })
    .compileComponents(); // compile template and css
}));

// synchronous beforeEach
beforeEach(() => {
    fixture = TestBed.createComponent(DashboardHeroComponent);
    comp    = fixture.componentInstance;
    heroEl  = fixture.debugElement.query(By.css('.hero')); // find hero element

    // pretend that it was wired to something that supplied a hero
    expectedHero = new Hero(42, 'Test Name');
    comp.hero = expectedHero;
    fixture.detectChanges(); // trigger initial data binding
});
28
Vazgen Manukyan

テスト内でコンポーネントインスタンスをロードした後、コンポーネントインスタンスにproduct値を設定する必要があります。

ここでのサンプルは、ユースケースの基盤として使用できる入力内の単純なコンポーネントです。

@Component({
  selector: 'dropdown',
  directives: [NgClass],
  template: `
    <div [ngClass]="{open: open}">
    </div>
  `,
})
export class DropdownComponent {
  @Input('open') open: boolean = false;

  ngOnChanges() {
    console.log(this.open);
  }
}

対応するテスト:

it('should open', injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {
  return tcb.createAsync(DropdownComponent)
  .then(fixture => {
    let el = fixture.nativeElement;
    let comp: DropdownComponent = fixture.componentInstance;

    expect(el.className).toEqual('');

    // Update the input
    comp.open = true; // <-----------

    // Apply
    fixture.detectChanges(); // <-----------

    var div = fixture.nativeElement.querySelector('div');
    // Test elements that depend on the input
    expect(div.className).toEqual('open');
  });
}));

サンプルとしてこのplunkrを参照してください: https://plnkr.co/edit/YAVD4s?p=preview

18