75faf0109d
closes #5338 - moves skip link to below the submit button - makes the submit button better represent form status - posts notifications based on success/failure of notifications - goes to the invite page after user creation - actually sends invites! functional tests passing for onboarding invitations cleanup for linitng remove unreachable return access the notifications service better use link-to instead of an anchor with an action failed user creations get caught, and bubble as errors a slew of other cleanup stuff via jason
93 lines
3.9 KiB
JavaScript
93 lines
3.9 KiB
JavaScript
// Test that setup works correctly
|
|
|
|
/*global CasperTest, casper, email, user, password */
|
|
|
|
CasperTest.begin('Ghost setup fails properly', 12, function suite(test) {
|
|
casper.thenOpenAndWaitForPageLoad('setup', function then() {
|
|
test.assertUrlMatch(/ghost\/setup\/one\/$/, 'Landed on the correct URL');
|
|
});
|
|
|
|
casper.thenTransitionAndWaitForScreenLoad('setup.two', function setupWithShortPassword() {
|
|
casper.fillAndAdd('#setup', {'blog-title': 'ghost', name: 'slimer', email: email, password: 'short'});
|
|
});
|
|
|
|
// should now throw a short password error
|
|
casper.waitForSelector('.notification-error', function onSuccess() {
|
|
test.assert(true, 'Got error notification');
|
|
test.assertSelectorHasText('.notification-error', 'Password must be at least 8 characters long');
|
|
}, function onTimeout() {
|
|
test.assert(false, 'No error notification :(');
|
|
});
|
|
|
|
casper.then(function setupWithLongPassword() {
|
|
casper.fillAndAdd('#setup', {'blog-title': 'ghost', name: 'slimer', email: email, password: password});
|
|
});
|
|
|
|
// This can take quite a long time
|
|
casper.wait(5000);
|
|
|
|
casper.waitForScreenLoad('setup.three', function inviteUsers() {
|
|
casper.thenClick('.gh-flow-content .btn');
|
|
});
|
|
|
|
casper.waitForSelector('.notification-error', function onSuccess() {
|
|
test.assert(true, 'Got error notification');
|
|
test.assertSelectorHasText('.notification-error', 'No users to invite.');
|
|
|
|
test.assertExists('.gh-flow-content .btn-minor', 'Submit button is not minor');
|
|
test.assertSelectorHasText('.gh-flow-content .btn', 'Invite some users', 'Submit button has wrong text');
|
|
}, function onTimeout() {
|
|
test.assert(false, 'No error notification for empty invitation list');
|
|
});
|
|
|
|
casper.then(function fillInvitationForm() {
|
|
casper.fill('form.gh-flow-invite', {users: 'test@example.com'});
|
|
test.assertSelectorHasText('.gh-flow-content .btn', 'Invite 1 user', 'One invitation button text is incorrect');
|
|
|
|
test.assertExists('.gh-flow-content .btn-green', 'Submit button is not green');
|
|
|
|
casper.fill('form.gh-flow-invite', {users: 'test@example.com\ntest2@example.com'});
|
|
test.assertSelectorHasText('.gh-flow-content .btn', 'Invite 2 users', 'Two invitations button text is incorrect');
|
|
});
|
|
|
|
casper.thenClick('.gh-flow-content .btn');
|
|
|
|
// This might take awhile
|
|
casper.wait(5000);
|
|
|
|
// These invitations will fail, because Casper can't send emails
|
|
casper.waitForSelector('.notification-error', function onSuccess() {
|
|
test.assert(true, 'Got error notification');
|
|
test.assertSelectorHasText('.notification-error', 'Failed to send 2 invitations: test@example.com, test2@example.com');
|
|
}, function onTimeout() {
|
|
test.assert(false, 'No error notification after invite.');
|
|
});
|
|
}, true);
|
|
|
|
CasperTest.begin('Authenticated user is redirected', 6, function suite(test) {
|
|
casper.thenOpenAndWaitForPageLoad('signin', function testTitleAndUrl() {
|
|
test.assertTitle('Sign In - ghost', 'Ghost admin has incorrect title');
|
|
test.assertUrlMatch(/ghost\/signin\/$/, 'Landed on the correct URL');
|
|
});
|
|
|
|
casper.waitForOpaque('.gh-signin', function then() {
|
|
this.fillAndSave('#login', user);
|
|
});
|
|
|
|
casper.wait(2000);
|
|
|
|
casper.waitForResource(/\d+/, function testForDashboard() {
|
|
test.assertUrlMatch(/ghost\/\d+\/$/, 'Landed on the correct URL');
|
|
test.assertExists('.gh-nav-main-content.active', 'Now we are on Content');
|
|
}, function onTimeOut() {
|
|
test.fail('Failed to signin');
|
|
});
|
|
|
|
casper.thenOpenAndWaitForPageLoad('setup-authenticated', function testTitleAndUrl() {
|
|
test.assertUrlMatch(/ghost\/\d+\/$/, 'Landed on the correct URL');
|
|
test.assertExists('.gh-nav-main-content.active', 'Now we are on Content');
|
|
}, function onTimeOut() {
|
|
test.fail('Failed to redirect');
|
|
});
|
|
}, true);
|