mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 21:23:43 +08:00
d9a02d1336
This reverts commit20780a1eee
. * SECURITY: re-adds accidentally reverted commit: 03d26cd6: ensure embed_url contains valid http(s) uri * when the merge commite62a85cf
was reverted, git chose the2660c2e2
parent to land on instead of the03d26cd6
parent (which contains security fixes)
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
import selectKit from "helpers/select-kit-helper";
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("CategoryChooser", {
|
|
loggedIn: true,
|
|
settings: {
|
|
allow_uncategorized_topics: false
|
|
}
|
|
});
|
|
|
|
QUnit.test("does not display uncategorized if not allowed", async assert => {
|
|
const categoryChooser = selectKit(".category-chooser");
|
|
|
|
await visit("/");
|
|
await click("#create-topic");
|
|
|
|
await categoryChooser.expand();
|
|
|
|
assert.ok(categoryChooser.rowByIndex(0).name() !== "uncategorized");
|
|
});
|
|
|
|
QUnit.test("prefill category when category_id is set", async assert => {
|
|
await visit("/new-topic?category_id=1");
|
|
|
|
assert.equal(
|
|
selectKit(".category-chooser")
|
|
.header()
|
|
.value(),
|
|
1
|
|
);
|
|
});
|
|
|
|
QUnit.test("filter is case insensitive", async assert => {
|
|
const categoryChooser = selectKit(".category-chooser");
|
|
|
|
await visit("/");
|
|
await click("#create-topic");
|
|
await categoryChooser.expand();
|
|
await categoryChooser.fillInFilter("bug");
|
|
|
|
assert.ok(categoryChooser.rows().length, 1);
|
|
|
|
await categoryChooser.emptyFilter();
|
|
await categoryChooser.fillInFilter("Bug");
|
|
|
|
assert.ok(categoryChooser.rows().length, 1);
|
|
});
|