2014-06-25 07:12:48 -05:00
|
|
|
// # Signup Test
|
|
|
|
// Test that signup works correctly
|
|
|
|
|
|
|
|
/*global CasperTest, casper, email */
|
|
|
|
|
2014-06-26 08:06:38 -05:00
|
|
|
CasperTest.begin('Ghost setup fails properly', 5, function suite(test) {
|
2014-06-25 07:12:48 -05:00
|
|
|
casper.thenOpenAndWaitForPageLoad('setup', function then() {
|
|
|
|
test.assertUrlMatch(/ghost\/ember\/setup\/$/, 'Landed on the correct URL');
|
|
|
|
});
|
|
|
|
|
|
|
|
casper.then(function setupWithShortPassword() {
|
|
|
|
casper.fillAndAdd('#setup', {email: email, password: 'test'});
|
|
|
|
});
|
|
|
|
|
|
|
|
// should now throw a short password error
|
|
|
|
casper.waitForSelector('.notification-error', function onSuccess() {
|
|
|
|
test.assert(true, 'Got error notification');
|
|
|
|
test.assertSelectorDoesntHaveText('.notification-error', '[object Object]');
|
|
|
|
}, function onTimeout() {
|
|
|
|
test.assert(false, 'No error notification :(');
|
|
|
|
});
|
|
|
|
|
|
|
|
casper.then(function setupWithLongPassword() {
|
|
|
|
casper.fillAndAdd('#setup', {email: email, password: 'testing1234'});
|
|
|
|
});
|
|
|
|
|
|
|
|
// should now throw a 1 user only error
|
|
|
|
casper.waitForSelector('.notification-error', function onSuccess() {
|
|
|
|
test.assert(true, 'Got error notification');
|
|
|
|
test.assertSelectorDoesntHaveText('.notification-error', '[object Object]');
|
|
|
|
}, function onTimeout() {
|
|
|
|
test.assert(false, 'No error notification :(');
|
|
|
|
});
|
|
|
|
}, true);
|