2015-05-13 22:42:36 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("User Preferences", { loggedIn: true });
|
|
|
|
|
|
|
|
test("update some fields", () => {
|
|
|
|
visit("/users/eviltrout/preferences");
|
|
|
|
|
|
|
|
andThen(() => {
|
2016-11-11 02:33:31 +08:00
|
|
|
ok($('body.user-preferences-page').length, "has the body class");
|
2015-05-13 22:42:36 +08:00
|
|
|
equal(currentURL(), '/users/eviltrout/preferences', "it doesn't redirect");
|
|
|
|
ok(exists('.user-preferences'), 'it shows the preferences');
|
|
|
|
});
|
|
|
|
|
|
|
|
fillIn("#edit-location", "Westeros");
|
|
|
|
|
|
|
|
click('.save-user');
|
|
|
|
ok(!exists('.saved-user'), "it hasn't been saved yet");
|
|
|
|
andThen(() => {
|
|
|
|
ok(exists('.saved-user'), 'it displays the saved message');
|
|
|
|
});
|
|
|
|
});
|
2016-11-11 04:54:21 +08:00
|
|
|
|
2016-11-11 05:20:31 +08:00
|
|
|
test("username", () => {
|
2016-11-11 04:54:21 +08:00
|
|
|
visit("/users/eviltrout/preferences/username");
|
|
|
|
andThen(() => {
|
2016-11-11 05:20:31 +08:00
|
|
|
ok(exists("#change_username"), "it has the input element");
|
2016-11-11 04:54:21 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-11-11 05:20:31 +08:00
|
|
|
test("about me", () => {
|
2016-11-11 04:54:21 +08:00
|
|
|
visit("/users/eviltrout/preferences/about-me");
|
|
|
|
andThen(() => {
|
2016-11-11 05:20:31 +08:00
|
|
|
ok(exists(".raw-bio"), "it has the input element");
|
2016-11-11 04:54:21 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-11-11 05:20:31 +08:00
|
|
|
test("email", () => {
|
|
|
|
visit("/users/eviltrout/preferences/email");
|
|
|
|
andThen(() => {
|
2016-12-21 17:00:45 +08:00
|
|
|
ok(exists("#change-email"), "it has the input element");
|
|
|
|
});
|
|
|
|
|
|
|
|
fillIn("#change-email", 'invalidemail');
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
equal(find('.tip.bad').text().trim(), I18n.t('user.email.invalid'), 'it should display invalid email tip');
|
2016-11-11 05:20:31 +08:00
|
|
|
});
|
|
|
|
});
|