test(selector): add tests with multiple attributes
Fixes #1025 Closes #1117
This commit is contained in:
@ -25,6 +25,7 @@ export function main() {
|
||||
SomeViewport2,
|
||||
SomeComponent,
|
||||
SomeComponent2,
|
||||
SomeComponent3,
|
||||
SomeDynamicComponent,
|
||||
SomeDynamicComponent2
|
||||
];
|
||||
@ -105,6 +106,13 @@ export function main() {
|
||||
);
|
||||
}).toThrowError('Only template directives are allowed on template elements - check <template some-comp>');
|
||||
});
|
||||
|
||||
it('should detect them with multiple attributes', () => {
|
||||
var results = createPipeline().process(el('<input type=text control=one></input>'));
|
||||
var dirs = results[0].getAllDirectives();
|
||||
expect(dirs.length).toEqual(1);
|
||||
expect(dirs[0]).toEqual(reader.read(SomeComponent3));
|
||||
});
|
||||
});
|
||||
|
||||
describe("dynamic component directives", () => {
|
||||
@ -261,6 +269,9 @@ class SomeComponent {}
|
||||
@Component({selector: '[some-comp2]'})
|
||||
class SomeComponent2 {}
|
||||
|
||||
@Component({selector: 'input[type=text][control]'})
|
||||
class SomeComponent3 {}
|
||||
|
||||
@DynamicComponent({selector: '[some-dynamic-comp]'})
|
||||
class SomeDynamicComponent {}
|
||||
|
||||
@ -270,7 +281,7 @@ class SomeDynamicComponent2 {}
|
||||
@Component()
|
||||
@Template({
|
||||
directives: [SomeDecorator, SomeViewport, SomeViewport2,
|
||||
SomeComponent, SomeComponent2,
|
||||
SomeComponent, SomeComponent2, SomeComponent3,
|
||||
SomeDynamicComponent, SomeDynamicComponent2
|
||||
]
|
||||
})
|
||||
|
@ -106,6 +106,18 @@ export function main() {
|
||||
expect(matched).toEqual([s1[0],1]);
|
||||
});
|
||||
|
||||
it('should select by many attributes and independent of the value', () => {
|
||||
matcher.addSelectables(s1 = CssSelector.parse('input[type=text][control]'), 1);
|
||||
|
||||
var cssSelector = new CssSelector();
|
||||
cssSelector.setElement('input');
|
||||
cssSelector.addAttribute('type', 'text');
|
||||
cssSelector.addAttribute('control', 'one');
|
||||
|
||||
expect(matcher.match(cssSelector, selectableCollector)).toEqual(true);
|
||||
expect(matched).toEqual([s1[0], 1]);
|
||||
});
|
||||
|
||||
it('should select independent of the order in the css selector', () => {
|
||||
matcher.addSelectables(s1 = CssSelector.parse('[someAttr].someClass'), 1);
|
||||
matcher.addSelectables(s2 = CssSelector.parse('.someClass[someAttr]'), 2);
|
||||
@ -205,6 +217,14 @@ export function main() {
|
||||
expect(cssSelector.toString()).toEqual('sometag.someclass[attrname=attrvalue]');
|
||||
});
|
||||
|
||||
it('should detect multiple attributes', () => {
|
||||
var cssSelector = CssSelector.parse('input[type=text][control]')[0];
|
||||
expect(cssSelector.element).toEqual('input');
|
||||
expect(cssSelector.attrs).toEqual(['type', 'text', 'control', '']);
|
||||
|
||||
expect(cssSelector.toString()).toEqual('input[type=text][control]');
|
||||
});
|
||||
|
||||
it('should detect :not', () => {
|
||||
var cssSelector = CssSelector.parse('sometag:not([attrname=attrvalue].someclass)')[0];
|
||||
expect(cssSelector.element).toEqual('sometag');
|
||||
|
Reference in New Issue
Block a user