2018-06-15 23:03:24 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2017-08-28 20:34:04 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
acceptance("CategoryChooser", {
|
2017-08-28 20:34:04 +08:00
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
allow_uncategorized_topics: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
QUnit.test("does not display uncategorized if not allowed", assert => {
|
|
|
|
const categoryChooser = selectKit(".category-chooser");
|
2017-12-22 20:08:12 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
visit("/");
|
|
|
|
click("#create-topic");
|
2017-08-28 20:34:04 +08:00
|
|
|
|
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(() => {
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.ok(categoryChooser.rowByIndex(0).name() !== "uncategorized");
|
2017-08-28 20:34:04 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-15 23:03:24 +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(() => {
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.equal(
|
|
|
|
selectKit(".category-chooser")
|
|
|
|
.header()
|
|
|
|
.value(),
|
|
|
|
1
|
|
|
|
);
|
2017-08-28 20:34:04 +08:00
|
|
|
});
|
|
|
|
});
|