mirror of
https://github.com/discourse/discourse.git
synced 2025-02-13 20:52:46 +08:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import { acceptance, exists } from "discourse/tests/helpers/qunit-helpers";
|
|
import { click, fillIn, visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
|
|
acceptance("Page Publishing", function (needs) {
|
|
needs.user();
|
|
needs.pretender((server, helper) => {
|
|
const validSlug = helper.response({ valid_slug: true });
|
|
|
|
server.put("/pub/by-topic/280", () => {
|
|
return helper.response({});
|
|
});
|
|
server.get("/pub/by-topic/280", () => {
|
|
return helper.response({});
|
|
});
|
|
server.get("/pub/check-slug", (req) => {
|
|
if (req.queryParams.slug === "internationalization-localization") {
|
|
return validSlug;
|
|
}
|
|
return helper.response({
|
|
valid_slug: false,
|
|
reason: "i don't need a reason",
|
|
});
|
|
});
|
|
});
|
|
|
|
test("can publish a page via modal", async function (assert) {
|
|
await visit("/t/internationalization-localization/280");
|
|
await click(".topic-post:nth-of-type(1) button.show-more-actions");
|
|
await click(".topic-post:nth-of-type(1) button.show-post-admin-menu");
|
|
await click(".topic-post:nth-of-type(1) .publish-page");
|
|
|
|
await fillIn(".publish-slug", "bad-slug");
|
|
assert.ok(!exists(".valid-slug"));
|
|
assert.ok(exists(".invalid-slug"));
|
|
await fillIn(".publish-slug", "internationalization-localization");
|
|
assert.ok(exists(".valid-slug"));
|
|
assert.ok(!exists(".invalid-slug"));
|
|
|
|
await click(".publish-page");
|
|
assert.ok(exists(".current-url"));
|
|
});
|
|
});
|