2019-06-06 10:47:10 +02:00
|
|
|
import selectKit from "helpers/select-kit-helper";
|
2018-06-15 17:03:24 +02:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2017-08-28 14:34:04 +02:00
|
|
|
|
2018-06-15 17:03:24 +02:00
|
|
|
acceptance("CategoryChooser", {
|
2017-08-28 14:34:04 +02:00
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
allow_uncategorized_topics: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-07-19 11:40:42 +02:00
|
|
|
QUnit.test("does not display uncategorized if not allowed", async assert => {
|
2018-06-15 17:03:24 +02:00
|
|
|
const categoryChooser = selectKit(".category-chooser");
|
2017-12-22 13:08:12 +01:00
|
|
|
|
2018-07-19 11:40:42 +02:00
|
|
|
await visit("/");
|
|
|
|
await click("#create-topic");
|
2017-08-28 14:34:04 +02:00
|
|
|
|
2018-07-29 22:51:32 +02:00
|
|
|
await categoryChooser.expand();
|
2017-10-19 12:51:08 -07:00
|
|
|
|
2018-07-19 11:40:42 +02:00
|
|
|
assert.ok(categoryChooser.rowByIndex(0).name() !== "uncategorized");
|
2017-08-28 14:34:04 +02:00
|
|
|
});
|
|
|
|
|
2019-05-01 22:54:29 +05:30
|
|
|
QUnit.test("prefill category when category_id is set", async assert => {
|
2019-03-22 10:09:11 +11:00
|
|
|
await visit("/new-topic?category_id=1");
|
2017-08-28 14:34:04 +02:00
|
|
|
|
2019-03-22 10:09:11 +11:00
|
|
|
assert.equal(
|
|
|
|
selectKit(".category-chooser")
|
|
|
|
.header()
|
|
|
|
.value(),
|
|
|
|
1
|
|
|
|
);
|
|
|
|
});
|