discourse/app/assets/javascripts/wizard/test/acceptance/wizard-test.js.es6

72 lines
2.3 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import startApp from "wizard/test/helpers/start-app";
2016-09-13 15:14:17 -04:00
var wizard;
2017-07-27 10:48:31 -04:00
QUnit.module("Acceptance: wizard", {
2016-09-13 15:14:17 -04:00
beforeEach() {
wizard = startApp();
},
2017-06-14 13:57:58 -04:00
afterEach() {
2018-06-15 11:03:24 -04:00
Ember.run(wizard, "destroy");
2016-09-13 15:14:17 -04:00
}
});
2018-07-29 16:51:32 -04:00
test("Wizard starts", async assert => {
await visit("/");
assert.ok(exists(".wizard-column-contents"));
assert.equal(currentPath(), "step");
2016-08-25 13:14:56 -04:00
});
2018-07-29 16:51:32 -04:00
test("Going back and forth in steps", async assert => {
await visit("/steps/hello-world");
assert.ok(exists(".wizard-step"));
assert.ok(
exists(".wizard-step-hello-world"),
"it adds a class for the step id"
);
assert.ok(!exists(".wizard-btn.finish"), "cant finish on first step");
2018-07-29 16:51:32 -04:00
assert.ok(exists(".wizard-progress"));
assert.ok(exists(".wizard-step-title"));
assert.ok(exists(".wizard-step-description"));
assert.ok(
!exists(".invalid .field-full-name"),
"don't show it as invalid until the user does something"
);
assert.ok(exists(".wizard-field .field-description"));
assert.ok(!exists(".wizard-btn.back"));
assert.ok(!exists(".wizard-field .field-error-description"));
2016-08-25 13:14:56 -04:00
// invalid data
2018-07-29 16:51:32 -04:00
await click(".wizard-btn.next");
assert.ok(exists(".invalid .field-full-name"));
2016-08-25 13:14:56 -04:00
// server validation fail
2018-07-29 16:51:32 -04:00
await fillIn("input.field-full-name", "Server Fail");
await click(".wizard-btn.next");
assert.ok(exists(".invalid .field-full-name"));
assert.ok(exists(".wizard-field .field-error-description"));
2016-08-25 13:14:56 -04:00
// server validation ok
2018-07-29 16:51:32 -04:00
await fillIn("input.field-full-name", "Evil Trout");
await click(".wizard-btn.next");
assert.ok(!exists(".wizard-field .field-error-description"));
assert.ok(!exists(".wizard-step-description"));
assert.ok(
exists(".wizard-btn.finish"),
"shows finish on an intermediate step"
);
2016-09-02 11:42:14 -04:00
await click(".wizard-btn.next");
2018-07-29 16:51:32 -04:00
assert.ok(exists(".select-kit.field-snack"), "went to the next step");
assert.ok(exists(".preview-area"), "renders the component field");
assert.ok(exists(".wizard-btn.done"), "last step shows a done button");
assert.ok(exists(".action-link.back"), "shows the back button");
assert.ok(!exists(".wizard-step-title"));
assert.ok(!exists(".wizard-btn.finish"), "cant finish on last step");
2016-08-25 13:14:56 -04:00
2018-07-29 16:51:32 -04:00
await click(".action-link.back");
assert.ok(exists(".wizard-step-title"));
assert.ok(exists(".wizard-btn.next"));
assert.ok(!exists(".wizard-prev"));
});