2017-12-22 20:08:12 +08:00
|
|
|
import { acceptance } from 'helpers/qunit-helpers';
|
2017-08-28 20:34:04 +08:00
|
|
|
|
2017-12-22 20:08:12 +08:00
|
|
|
acceptance('CategoryChooser', {
|
2017-08-28 20:34:04 +08:00
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
allow_uncategorized_topics: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-12-22 20:08:12 +08:00
|
|
|
QUnit.test('does not display uncategorized if not allowed', assert => {
|
|
|
|
const categoryChooser = selectKit('.category-chooser');
|
|
|
|
|
|
|
|
visit('/');
|
2017-08-28 20:34:04 +08:00
|
|
|
click('#create-topic');
|
|
|
|
|
2017-12-22 20:08:12 +08:00
|
|
|
categoryChooser.expand();
|
2017-10-20 03:51:08 +08:00
|
|
|
|
2017-08-28 20:34:04 +08:00
|
|
|
andThen(() => {
|
2017-12-22 20:08:12 +08:00
|
|
|
assert.ok(categoryChooser.rowByIndex(0).name() !== 'uncategorized');
|
2017-08-28 20:34:04 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-12-22 20:08:12 +08:00
|
|
|
QUnit.test('prefill category when category_id is set', assert => {
|
|
|
|
visit('/new-topic?category_id=1');
|
2017-08-28 20:34:04 +08:00
|
|
|
|
|
|
|
andThen(() => {
|
2017-12-22 20:08:12 +08:00
|
|
|
assert.equal(selectKit('.category-chooser').header().value(), 1);
|
2017-08-28 20:34:04 +08:00
|
|
|
});
|
|
|
|
});
|