discourse/test/javascripts/acceptance/create-account-user-fields-test.js.es6

82 lines
2.0 KiB
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Create Account - User Fields", {
site: {
2018-06-15 23:03:24 +08:00
user_fields: [
{
id: 34,
name: "I've read the terms of service",
field_type: "confirm",
required: true
},
{
id: 35,
name: "What is your pet's name?",
field_type: "text",
required: true
},
{
id: 36,
name: "What's your dad like?",
field_type: "text",
required: false
}
]
}
});
2017-06-15 01:57:58 +08:00
QUnit.test("create account with user fields", assert => {
visit("/");
click("header .sign-up-button");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok(exists(".create-account"), "it shows the create account modal");
assert.ok(exists(".user-field"), "it has at least one user field");
assert.ok(
exists(".modal-footer .btn-primary:disabled"),
"create account is disabled at first"
);
});
2018-06-15 23:03:24 +08:00
fillIn("#new-account-name", "Dr. Good Tuna");
fillIn("#new-account-password", "cool password bro");
fillIn("#new-account-email", "good.tuna@test.com");
fillIn("#new-account-username", "goodtuna");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok(
exists("#username-validation.good"),
"the username validation is good"
);
assert.ok(
exists(".modal-footer .btn-primary:disabled"),
"create account is still disabled due to lack of user fields"
);
});
fillIn(".user-field input[type=text]:first", "Barky");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok(
exists(".modal-footer .btn-primary:disabled"),
"create account is disabled because field is not checked"
);
});
click(".user-field input[type=checkbox]");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.not(
exists(".modal-footer .btn-primary:disabled"),
"create account is enabled because field is not checked"
);
});
click(".user-field input[type=checkbox]");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok(
exists(".modal-footer .btn-primary:disabled"),
"unclicking the checkbox disables the submit"
);
});
});