import { visit } from "@ember/test-helpers"; import { test } from "qunit"; import { acceptance, count, exists, query, } from "discourse/tests/helpers/qunit-helpers"; import { wizard, wizardCompleted, wizardGuest, wizardNoUser, wizardNotPermitted, } from "../helpers/wizard"; import DiscourseURL from "discourse/lib/url"; import sinon from "sinon"; acceptance("Wizard | Not logged in", function (needs) { needs.pretender((server, helper) => { server.get("/w/wizard.json", () => helper.response(wizardNoUser)); }); test("Requires login", async function (assert) { await visit("/w/wizard"); assert.ok(exists(".wizard-no-access.requires-login")); }); test("Requires login if a step path is used", async function (assert) { await visit("/w/wizard/steps/1"); assert.ok(exists(".wizard-no-access.requires-login")); }); }); acceptance("Wizard | Not permitted", function (needs) { needs.user(); needs.pretender((server, helper) => { server.get("/w/wizard.json", () => helper.response(wizardNotPermitted)); }); test("Wizard no access not permitted", async function (assert) { await visit("/w/wizard"); assert.ok(exists(".wizard-no-access.not-permitted")); }); }); acceptance("Wizard | Completed", function (needs) { needs.user(); needs.pretender((server, helper) => { server.get("/w/wizard.json", () => helper.response(wizardCompleted)); }); test("Wizard no access completed", async function (assert) { await visit("/w/wizard"); assert.ok(exists(".wizard-no-access.completed")); }); }); acceptance("Wizard | Redirect", function (needs) { needs.user({ redirect_to_wizard: "wizard", }); needs.pretender((server, helper) => { server.get("/w/wizard.json", () => { return helper.response(wizard); }); }); test("Redirect to pending Wizard", async function (assert) { sinon.stub(DiscourseURL, "routeTo"); await visit("/latest"); assert.ok( DiscourseURL.routeTo.calledWith("/w/wizard"), "pending wizard routing works" ); }); test("Don't redirect to pending Wizard when ingore redirect param is supplied", async function (assert) { sinon.stub(DiscourseURL, "routeTo"); await visit("/latest?ignore_redirect=1"); assert.notOk( DiscourseURL.routeTo.calledWith("/w/wizard"), "pending wizard routing blocked" ); }); }); acceptance("Wizard | Wizard", function (needs) { needs.user(); needs.pretender((server, helper) => { server.get("/w/wizard.json", () => { return helper.response(wizard); }); }); test("Starts", async function (assert) { await visit("/w/wizard"); assert.ok(query(".wizard-column"), true); }); test("Applies the wizard body class", async function (assert) { await visit("/w/wizard"); assert.ok($("body.custom-wizard").length); }); test("Applies the body background color", async function (assert) { await visit("/w/wizard"); assert.ok($("body")[0].style.background); }); test("Renders the wizard form", async function (assert) { await visit("/w/wizard"); assert.ok(exists(".wizard-column-contents .wizard-step"), true); assert.ok(exists(".wizard-footer img"), true); }); test("Renders the first step", async function (assert) { await visit("/w/wizard"); assert.strictEqual( query(".wizard-step-title p").textContent.trim(), "Text" ); assert.strictEqual( query(".wizard-step-description p").textContent.trim(), "Text inputs!" ); assert.strictEqual( query(".wizard-step-description p").textContent.trim(), "Text inputs!" ); assert.strictEqual(count(".wizard-step-form .wizard-field"), 6); assert.ok(exists(".wizard-step-footer .wizard-progress"), true); assert.ok(exists(".wizard-step-footer .wizard-buttons"), true); }); test("Removes the wizard body class when navigating away", async function (assert) { await visit("/"); assert.strictEqual($("body.custom-wizard").length, 0); }); }); acceptance("Wizard | Guest access", function (needs) { needs.pretender((server, helper) => { server.get("/w/wizard.json", () => helper.response(wizardGuest)); }); test("Does not require login", async function (assert) { await visit("/w/wizard"); assert.ok(!exists(".wizard-no-access.requires-login")); }); test("Starts", async function (assert) { await visit("/w/wizard"); assert.ok(query(".wizard-column"), true); }); test("Applies the wizard body class", async function (assert) { await visit("/w/wizard"); assert.ok($("body.custom-wizard").length); }); test("Applies the body background color", async function (assert) { await visit("/w/wizard"); assert.ok($("body")[0].style.background); }); test("Renders the wizard form", async function (assert) { await visit("/w/wizard"); assert.ok(exists(".wizard-column-contents .wizard-step"), true); assert.ok(exists(".wizard-footer img"), true); }); test("Renders the first step", async function (assert) { await visit("/w/wizard"); assert.strictEqual( query(".wizard-step-title p").textContent.trim(), "Text" ); assert.strictEqual( query(".wizard-step-description p").textContent.trim(), "Text inputs!" ); assert.strictEqual( query(".wizard-step-description p").textContent.trim(), "Text inputs!" ); assert.strictEqual(count(".wizard-step-form .wizard-field"), 6); assert.ok(exists(".wizard-step-footer .wizard-progress"), true); assert.ok(exists(".wizard-step-footer .wizard-buttons"), true); }); test("Removes the wizard body class when navigating away", async function (assert) { await visit("/"); assert.strictEqual($("body.custom-wizard").length, 0); }); });