mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
select-kit refactoring
* better test helper * more reliable tests * more consistent use of data-value/data-name/title/aria-label everywhere: header and rows
This commit is contained in:
87
test/javascripts/components/category-selector-test.js.es6
Normal file
87
test/javascripts/components/category-selector-test.js.es6
Normal file
@@ -0,0 +1,87 @@
|
||||
import componentTest from 'helpers/component-test';
|
||||
import Category from "discourse/models/category";
|
||||
|
||||
moduleForComponent('category-selector', {
|
||||
integration: true,
|
||||
beforeEach: function() {
|
||||
this.set('subject', selectKit());
|
||||
}
|
||||
});
|
||||
|
||||
componentTest('default', {
|
||||
template: '{{category-selector categories=categories}}',
|
||||
|
||||
beforeEach() {
|
||||
this.set('categories', [ Category.findById(2) ]);
|
||||
},
|
||||
|
||||
test(assert) {
|
||||
andThen(() => {
|
||||
assert.equal(this.get('subject').header().value(), 2);
|
||||
assert.notOk(
|
||||
this.get('subject').rowByValue(2).exists(),
|
||||
"selected categories are not in the list"
|
||||
);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
componentTest('with blacklist', {
|
||||
template: '{{category-selector categories=categories blacklist=blacklist}}',
|
||||
|
||||
beforeEach() {
|
||||
this.set('categories', [ Category.findById(2) ]);
|
||||
this.set('blacklist', [ Category.findById(8) ]);
|
||||
},
|
||||
|
||||
test(assert) {
|
||||
this.get('subject').expand();
|
||||
|
||||
andThen(() => {
|
||||
assert.ok(
|
||||
this.get('subject').rowByValue(6).exists(),
|
||||
"not blacklisted categories are in the list"
|
||||
);
|
||||
assert.notOk(
|
||||
this.get('subject').rowByValue(8).exists(),
|
||||
"blacklisted categories are not in the list"
|
||||
);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
componentTest('interactions', {
|
||||
template: '{{category-selector categories=categories}}',
|
||||
|
||||
beforeEach() {
|
||||
this.set('categories', [
|
||||
Category.findById(2),
|
||||
Category.findById(6)
|
||||
]);
|
||||
},
|
||||
|
||||
test(assert) {
|
||||
this.get('subject').expand().selectRowByValue(8);
|
||||
|
||||
andThen(() => {
|
||||
assert.equal(
|
||||
this.get('subject').header().value(),
|
||||
'2,6,8',
|
||||
'it adds the selected category'
|
||||
);
|
||||
assert.equal(this.get('categories').length, 3);
|
||||
});
|
||||
|
||||
this.get('subject').keyboard().backspace();
|
||||
this.get('subject').keyboard().backspace();
|
||||
|
||||
andThen(() => {
|
||||
assert.equal(
|
||||
this.get('subject').header().value(),
|
||||
'2,6',
|
||||
'it removes the last selected category'
|
||||
);
|
||||
assert.equal(this.get('categories').length, 2);
|
||||
});
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user