2022-12-19 16:46:38 +01:00
|
|
|
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
2022-12-21 17:11:29 +01:00
|
|
|
import { test } from "qunit";
|
2023-05-11 10:19:05 +02:00
|
|
|
import { click, find, findAll, visit, waitUntil } from "@ember/test-helpers";
|
2022-12-22 04:44:40 +01:00
|
|
|
import {
|
|
|
|
getUnsubscribedAdminWizards,
|
|
|
|
getWizard,
|
|
|
|
getWizardTestingLog,
|
|
|
|
} from "../helpers/admin-wizard";
|
2022-12-19 16:46:38 +01:00
|
|
|
|
|
|
|
acceptance("Admin | Manager", function (needs) {
|
|
|
|
needs.user();
|
|
|
|
needs.settings({
|
|
|
|
custom_wizard_enabled: true,
|
|
|
|
available_locales: JSON.stringify([{ name: "English", value: "en" }]),
|
|
|
|
});
|
|
|
|
needs.pretender((server, helper) => {
|
2022-12-21 05:18:10 +01:00
|
|
|
server.get("/admin/wizards/manager/this_is_testing_wizard", () => {
|
2022-12-22 04:44:40 +01:00
|
|
|
return helper.response(getWizardTestingLog);
|
2022-12-19 16:46:38 +01:00
|
|
|
});
|
|
|
|
server.get("/admin/wizards", () => {
|
2022-12-22 04:44:40 +01:00
|
|
|
return helper.response(getUnsubscribedAdminWizards);
|
2022-12-19 16:46:38 +01:00
|
|
|
});
|
2022-12-21 17:11:29 +01:00
|
|
|
server.get("/admin/wizards/wizard", () => {
|
2022-12-22 04:44:40 +01:00
|
|
|
return helper.response(getWizard);
|
2022-12-19 16:46:38 +01:00
|
|
|
});
|
2023-05-11 10:00:46 +02:00
|
|
|
server.delete("/admin/wizards/manager/destroy", () => {
|
|
|
|
return helper.response({
|
|
|
|
success: "OK",
|
|
|
|
destroyed: [
|
|
|
|
{ id: "this_is_testing_wizard", name: "This is testing wizard" },
|
|
|
|
],
|
|
|
|
failures: [],
|
|
|
|
});
|
|
|
|
});
|
2022-12-19 16:46:38 +01:00
|
|
|
});
|
2023-05-11 10:19:05 +02:00
|
|
|
async function waitForDestructionAndResetMessage() {
|
|
|
|
// Wait for the "Destruction complete" message to appear
|
|
|
|
await waitUntil(
|
|
|
|
() =>
|
|
|
|
document.querySelector(".message-content")?.innerText ===
|
|
|
|
"Destruction complete",
|
|
|
|
{ timeout: 5000 }
|
|
|
|
);
|
|
|
|
|
|
|
|
// Wait for the message to change back to the original text
|
|
|
|
await waitUntil(
|
|
|
|
() =>
|
|
|
|
document.querySelector(".message-content")?.innerText ===
|
|
|
|
"Export, import or destroy wizards",
|
|
|
|
{ timeout: 15000 }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-12-21 17:11:29 +01:00
|
|
|
test("viewing manager fields content", async (assert) => {
|
2022-12-19 16:46:38 +01:00
|
|
|
await visit("/admin/wizards/manager");
|
|
|
|
assert.ok(
|
|
|
|
query(".message-content").innerText.includes(
|
|
|
|
"Export, import or destroy wizards"
|
|
|
|
),
|
|
|
|
"it displays manager message"
|
|
|
|
);
|
|
|
|
assert.ok(
|
|
|
|
find('table tr[data-wizard-id="this-is-testing-wizard"]'),
|
|
|
|
"table shows the wizard content list"
|
|
|
|
);
|
|
|
|
|
|
|
|
const checkbox = findAll(
|
|
|
|
'table tr[data-wizard-id="this-is-testing-wizard"] input[type="checkbox"]'
|
|
|
|
);
|
|
|
|
const exportCheck = checkbox[0];
|
|
|
|
const destroyCheck = checkbox[1];
|
|
|
|
|
|
|
|
const exportButton = find("#export-button");
|
|
|
|
assert.ok(
|
|
|
|
exportButton.hasAttribute("disabled"),
|
|
|
|
"the export button is disabled when export checkbox is unchecked"
|
|
|
|
);
|
|
|
|
await click(exportCheck);
|
|
|
|
assert.ok(
|
|
|
|
!exportButton.hasAttribute("disabled"),
|
|
|
|
"the export button is enabled when export checkbox is clicked"
|
|
|
|
);
|
|
|
|
await click(exportCheck);
|
|
|
|
assert.ok(
|
|
|
|
exportButton.hasAttribute("disabled"),
|
|
|
|
"the export button is disabled when export checkbox is unchecked"
|
|
|
|
);
|
|
|
|
const destroyButton = find("#destroy-button");
|
|
|
|
assert.ok(
|
|
|
|
destroyButton.hasAttribute("disabled"),
|
|
|
|
"the destroy button is disabled when destroy checkbox is unchecked"
|
|
|
|
);
|
|
|
|
await click(destroyCheck);
|
|
|
|
assert.ok(
|
|
|
|
!destroyButton.hasAttribute("disabled"),
|
|
|
|
"the destroy button is enabled when destroy checkbox is clicked"
|
|
|
|
);
|
2023-05-11 10:00:46 +02:00
|
|
|
await click("#destroy-button");
|
2023-05-11 10:19:05 +02:00
|
|
|
await waitForDestructionAndResetMessage();
|
2023-05-11 10:00:46 +02:00
|
|
|
assert.notOk(
|
|
|
|
find('table tr[data-wizard-id="this-is-testing-wizard"]'),
|
|
|
|
"the wizard row is removed after destroy button is clicked"
|
2022-12-19 16:46:38 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|