* FEATURE: revamped wizard * UX: Wizard redesign (#17381) * UX: Step 1-2 * swap out images * UX: Finalize all steps * UX: mobile * UX: Fix test * more test * DEV: remove unneeded wizard components * DEV: fix wizard tests * DEV: update rails tests for new wizard * Remove empty hbs files that were created because of rebase * Fixes for rebase * Fix wizard image link * More rebase fixes * Fix rails tests * FIX: Update preview for new color schemes: (#17481) * UX: make layout more responsive, update images * fix typo * DEV: move discourse logo svg to template only component * DEV: formatting improvements * Remove unneeded files * Add tests for privacy step * Fix banner image height for step "ready" Co-authored-by: Jordan Vidrine <30537603+jordanvidrine@users.noreply.github.com> Co-authored-by: awesomerobot <kris.aubuchon@discourse.org>
81 lines
2.7 KiB
JavaScript
81 lines
2.7 KiB
JavaScript
import { acceptance, exists } from "discourse/tests/helpers/qunit-helpers";
|
|
import { click, currentRouteName, fillIn, visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
|
|
acceptance("Wizard", function (needs) {
|
|
needs.user();
|
|
|
|
test("Wizard starts", async function (assert) {
|
|
await visit("/wizard");
|
|
assert.ok(exists(".wizard-container"));
|
|
assert.strictEqual(currentRouteName(), "wizard.step");
|
|
});
|
|
|
|
test("Going back and forth in steps", async function (assert) {
|
|
await visit("/wizard/steps/hello-world");
|
|
assert.ok(exists(".wizard-container__step"));
|
|
assert.ok(
|
|
exists(".wizard-container__step.hello-world"),
|
|
"it adds a class for the step id"
|
|
);
|
|
assert.ok(
|
|
!exists(".wizard-container__button.finish"),
|
|
"cannot finish on first step"
|
|
);
|
|
assert.ok(exists(".wizard-container__step-progress"));
|
|
assert.ok(exists(".wizard-container__step-title"));
|
|
assert.ok(exists(".wizard-container__step-description"));
|
|
assert.ok(
|
|
!exists(".invalid #full_name"),
|
|
"don't show it as invalid until the user does something"
|
|
);
|
|
assert.ok(!exists(".wizard-container__button.back"));
|
|
assert.ok(!exists(".wizard-container__field .error"));
|
|
|
|
// invalid data
|
|
await click(".wizard-container__button.next");
|
|
assert.ok(exists(".invalid #full_name"));
|
|
|
|
// server validation fail
|
|
await fillIn("input#full_name", "Server Fail");
|
|
await click(".wizard-container__button.next");
|
|
assert.ok(exists(".invalid #full_name"));
|
|
assert.ok(exists(".wizard-container__field .error"));
|
|
|
|
// server validation ok
|
|
await fillIn("input#full_name", "Evil Trout");
|
|
await click(".wizard-container__button.next");
|
|
assert.ok(!exists(".wizard-container__field .error"));
|
|
assert.ok(!exists(".wizard-container__step-description"));
|
|
assert.ok(
|
|
exists(".wizard-container__button.finish"),
|
|
"shows finish on an intermediate step"
|
|
);
|
|
|
|
await click(".wizard-container__button.next");
|
|
assert.ok(
|
|
exists(".dropdown-field.dropdown-snack"),
|
|
"went to the next step"
|
|
);
|
|
assert.ok(
|
|
exists(".wizard-container__preview"),
|
|
"renders the component field"
|
|
);
|
|
assert.ok(
|
|
exists(".wizard-container__button.jump-in"),
|
|
"last step shows a jump in button"
|
|
);
|
|
assert.ok(exists(".wizard-container__link.back"), "shows the back button");
|
|
assert.ok(!exists(".wizard-container__step-title"));
|
|
assert.ok(
|
|
!exists(".wizard-container__button.finish"),
|
|
"cannot finish on last step"
|
|
);
|
|
|
|
await click(".wizard-container__link.back");
|
|
assert.ok(exists(".wizard-container__step-title"));
|
|
assert.ok(exists(".wizard-container__button.next"));
|
|
assert.ok(!exists(".wizard-prev"));
|
|
});
|
|
});
|