mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 20:08:26 +00:00
This reverts commit 20780a1eeed56b321daf18ee6bbfe681a51d1bf4. * SECURITY: re-adds accidentally reverted commit: 03d26cd6: ensure embed_url contains valid http(s) uri * when the merge commit e62a85cf was reverted, git chose the 2660c2e2 parent to land on instead of the 03d26cd6 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);
|
|
});
|