简而言之,我正在寻找一种方法来使谓词By.css([css-selector])(参见https://angular.io/docs/ts/latest/api/platform-browser/index/By-class.html)在Angular2中工作(v2.当涉及名称空间(SVG)时,0.1+)组件单元测试.
(相关的谓词By.all()和By.directive(DirectiveClass)工作正常.)
下面是一个独立的规范来演示这个问题.结果是
DivComponent class specs:
? NG should evaluate component and template.
? Div should be locatable by tag.
? Div should be locatable by id.
? Div should be locatable by class.
? Match should fail a negative.
ShapesComponent class specs:
? NG should evaluate the component and template.
? Circle should be locatable by tag.
? Circle should be locatable by ns:tag.
? Circle should be locatable by id.
? Circle should be locatable by class.
Run Code Online (Sandbox Code Playgroud)
规格:
import {TestBed, ComponentFixture} from '@angular/core/testing';
import {Component, DebugElement} from '@angular/core';
import {By} from '@angular/platform-browser';
/*
* A simple component in HTML namespace
*/
@Component({
selector: '[app-div]',
template: '<div class="myDivClass" id="myDivId">Hello World</div>'
})
export class DivComponent {
}
/*
* A simple component in SVG namespace
*/
@Component({
selector: '[app-shape]',
template: '<svg:circle class="myCircleClass" id="myCircleId" ' +
'cx="80" cy="80" r="20"></svg:circle>'
})
export class ShapesComponent {
}
function dumpElements(elements: DebugElement[]) {
console.log('Matcher found ' + elements.length + ' elements.');
for (let i = 0; i < elements.length; i++) {
console.log('element[' + i + '] = '
+ elements[i].nativeElement.tagName
+ ': ' + elements[i].nativeElement.outerHTML);
}
}
/*
* Test "By.css()" on the DivComponent.
*/
describe('DivComponent class specs:', () => {
let divComponent: DivComponent;
let fixture: ComponentFixture<DivComponent>;
let de: DebugElement;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
DivComponent
]
});
TestBed.compileComponents();
fixture = TestBed.createComponent(DivComponent);
fixture.detectChanges();
de = fixture.debugElement;
});
it('NG should evaluate component and template.', () => {
// Dump elements if needed:
// dumpElements(de.queryAll(By.all()));
expect(de.queryAll(By.all()).length).toBe(1);
});
it('Div should be locatable by tag.', () => {
expect(de.queryAll(By.css('div')).length).toBe(1);
});
it('Div should be locatable by id.', () => {
expect(de.queryAll(By.css('#myDivId')).length).toBe(1);
});
it('Div should be locatable by class.', () => {
expect(de.queryAll(By.css('.myDivClass')).length).toBe(1);
});
it('Match should fail a negative.', () => {
expect(de.queryAll(By.css('#negative')).length).toBe(0);
});
});
/*
* Use the same "By.css()" syntax on the ShapeComponent.
*/
describe('ShapesComponent class specs:', () => {
let divComponent: ShapesComponent;
let fixture: ComponentFixture<ShapesComponent>;
let de: DebugElement;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
ShapesComponent
]
});
TestBed.compileComponents();
fixture = TestBed.createComponent(ShapesComponent);
fixture.detectChanges();
de = fixture.debugElement;
});
it('NG should evaluate the component and template.', () => {
// Dump elements if needed:
// dumpElements(de.queryAll(By.all()));
expect(de.queryAll(By.all()).length).toBe(1); // pass
});
it('Circle should be locatable by tag.', () => {
expect(de.queryAll(By.css('circle')).length).toBe(1);
});
it('Circle should be locatable by ns:tag.', () => {
expect(de.queryAll(By.css('svg:circle')).length).toBe(1);
});
it('Circle should be locatable by id.', () => {
expect(de.queryAll(By.css('#myCircleId')).length).toBe(1);
});
it('Circle should be locatable by class.', () => {
expect(de.queryAll(By.css('.myCircleClass')).length).toBe(1);
});
});
Run Code Online (Sandbox Code Playgroud)
通过在 nativeElement 上执行 querySelector 来让它工作:
element.nativeElement.querySelector('.chart')
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5935 次 |
| 最近记录: |