mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
962accfec7
issue #2989 - Adds lodash for bind and isNumber - looking for a better solution for this - Still needs the editor and flow tests porting - Some of the tests are commented out awaiting further implementations
479 lines
15 KiB
JavaScript
479 lines
15 KiB
JavaScript
/*globals Ghost, casper, __utils__ */
|
|
|
|
/**
|
|
* Casper Tests
|
|
*
|
|
* Functional browser tests for checking that the Ghost Admin UI is working as expected
|
|
* The setup of these tests is a little hacky for now, which is why they are not wired in to grunt
|
|
* Requires that you are running Ghost locally and have already registered a single user
|
|
*
|
|
* Usage (from test/functional):
|
|
*
|
|
* casperjs test admin/ --includes=base.js [--host=localhost --port=2368 --noPort=false --email=ghost@tryghost.org --password=Sl1m3r]
|
|
*
|
|
* --host - your local host address e.g. localhost or local.tryghost.org
|
|
* --port - port number of your local Ghost
|
|
* --email - the email address your admin user is registered with
|
|
* --password - the password your admin user is registered with
|
|
* --noPort - don't include a port number
|
|
*
|
|
* Requirements:
|
|
* you must have phantomjs 1.9.1 and casperjs 1.1.0-DEV installed in order for these tests to work
|
|
*/
|
|
|
|
var DEBUG = false, // TOGGLE THIS TO GET MORE SCREENSHOTS
|
|
host = casper.cli.options.host || 'localhost',
|
|
noPort = casper.cli.options.noPort || false,
|
|
port = casper.cli.options.port || '2368',
|
|
email = casper.cli.options.email || 'jbloggs@example.com',
|
|
password = casper.cli.options.password || 'Sl1m3rson',
|
|
url = 'http://' + host + (noPort ? '/' : ':' + port + '/'),
|
|
newUser = {
|
|
name: 'Test User',
|
|
email: email,
|
|
password: password
|
|
},
|
|
user = {
|
|
email: email,
|
|
password: password
|
|
},
|
|
falseUser = {
|
|
email: email,
|
|
password: 'letmethrough'
|
|
},
|
|
testPost = {
|
|
title: 'Bacon ipsum dolor sit amet',
|
|
html: 'I am a test post.\n#I have some small content'
|
|
};
|
|
|
|
casper.writeContentToCodeMirror = function (content) {
|
|
var lines = content.split('\n');
|
|
|
|
casper.waitForSelector('.CodeMirror-wrap textarea', function onSuccess() {
|
|
casper.each(lines, function (self, line) {
|
|
self.sendKeys('.CodeMirror-wrap textarea', line, {keepFocus: true});
|
|
self.sendKeys('.CodeMirror-wrap textarea', casper.page.event.key.Enter, {keepFocus: true});
|
|
});
|
|
|
|
return this;
|
|
}, function onTimeout() {
|
|
casper.test.fail('CodeMirror was not found.');
|
|
}, 2000);
|
|
};
|
|
|
|
casper.waitForOpaque = function (classname, then, timeout) {
|
|
timeout = timeout || casper.failOnTimeout(casper.test, 'waitForOpaque failed on ' + classname);
|
|
|
|
casper.waitFor(function checkOpaque() {
|
|
var value = this.evaluate(function (element) {
|
|
var target = document.querySelector(element);
|
|
if (target === null) {
|
|
return null;
|
|
}
|
|
return window.getComputedStyle(target).getPropertyValue('opacity') === '1';
|
|
}, classname);
|
|
if (value !== true && value !== false) {
|
|
casper.test.fail('Unable to find element: ' + classname);
|
|
}
|
|
return value;
|
|
}, then, timeout);
|
|
};
|
|
|
|
// ### Then Open And Wait For Page Load
|
|
// Always wait for the `#main` element as some indication that the ember app has loaded.
|
|
casper.thenOpenAndWaitForPageLoad = function (screen, then, timeout) {
|
|
then = then || function () {};
|
|
timeout = timeout || casper.failOnTimeout(casper.test, 'Unable to load ' + screen);
|
|
|
|
var screens = {
|
|
'root': {
|
|
url: 'ghost/ember/',
|
|
selector: '#main-menu .content.active'
|
|
},
|
|
'content': {
|
|
url: 'ghost/ember/content/',
|
|
selector: '#main-menu .content.active'
|
|
},
|
|
'editor': {
|
|
url: 'ghost/ember/editor/',
|
|
selector: '#main-menu .editor.active'
|
|
},
|
|
'settings': {
|
|
url: 'ghost/ember/settings/',
|
|
selector: '.settings-content'
|
|
},
|
|
'settings.general': {
|
|
url: 'ghost/ember/settings/general',
|
|
selector: '.settings-content form#settings-general'
|
|
},
|
|
'settings.user': {
|
|
url: 'ghost/ember/settings/user',
|
|
selector: '.settings-content form.user-profile'
|
|
},
|
|
'signin': {
|
|
url: 'ghost/ember/signin/',
|
|
selector: '.button-save'
|
|
},
|
|
'signout': {
|
|
url: 'ghost/ember/signout/',
|
|
selector: '.button-save'
|
|
},
|
|
'signup': {
|
|
url: 'ghost/ember/signup/',
|
|
selector: '.button-save'
|
|
}
|
|
};
|
|
|
|
return casper.thenOpen(url + screens[screen].url).then(function () {
|
|
return casper.waitForSelector(screens[screen].selector, then, timeout, 15000);
|
|
});
|
|
};
|
|
|
|
casper.failOnTimeout = function (test, message) {
|
|
return function onTimeout() {
|
|
test.fail(message);
|
|
};
|
|
};
|
|
|
|
// ### Fill And Save
|
|
// With Ember in place, we don't want to submit forms, rather press the green button which always has a class of
|
|
// 'button-save'. This method handles that smoothly.
|
|
casper.fillAndSave = function (selector, data) {
|
|
casper.fill(selector, data, false);
|
|
casper.thenClick(selector + ' .button-save');
|
|
};
|
|
|
|
// ## Echo Concise
|
|
// Does casper.echo but checks for the presence of the --concise flag
|
|
casper.echoConcise = function (message, style) {
|
|
if (!casper.cli.options.concise) {
|
|
casper.echo(message, style);
|
|
}
|
|
};
|
|
|
|
// ## Debugging
|
|
// output all errors to the console
|
|
casper.on('remote.message', function (msg) {
|
|
casper.echoConcise('GOT CONSOLE LOG: ' + msg);
|
|
});
|
|
|
|
casper.on('error', function (msg) {
|
|
casper.echoConcise('GOT ERROR, ' + msg);
|
|
});
|
|
|
|
casper.on('page.error', function (msg) {
|
|
casper.echoConcise('GOT PAGE ERROR: ' + msg, 'ERROR');
|
|
});
|
|
|
|
casper.captureScreenshot = function (filename, debugOnly) {
|
|
debugOnly = debugOnly !== false;
|
|
// If we are in debug mode, OR debugOnly is false
|
|
if (DEBUG || debugOnly === false) {
|
|
filename = filename || 'casper_test_fail.png';
|
|
casper.then(function () {
|
|
casper.capture(new Date().getTime() + '_' + filename);
|
|
});
|
|
}
|
|
};
|
|
|
|
|
|
|
|
// on failure, grab a screenshot
|
|
casper.test.on('fail', function captureFailure(test) {
|
|
casper.captureScreenshot(casper.test.filename || 'casper_test_fail.png', false);
|
|
casper.then(function () {
|
|
console.log(casper.getHTML());
|
|
casper.exit(1);
|
|
});
|
|
});
|
|
|
|
var CasperTest = (function () {
|
|
|
|
var _beforeDoneHandler,
|
|
_noop = function noop() { },
|
|
_isUserRegistered = false;
|
|
|
|
// Always log out at end of test.
|
|
casper.test.tearDown(function (done) {
|
|
casper.then(_beforeDoneHandler);
|
|
|
|
CasperTest.Routines.emberSignout.run();
|
|
|
|
casper.run(done);
|
|
});
|
|
|
|
// Wrapper around `casper.test.begin`
|
|
function begin(testName, expect, suite, doNotAutoLogin) {
|
|
_beforeDoneHandler = _noop;
|
|
|
|
var runTest = function (test) {
|
|
test.filename = testName.toLowerCase().replace(/ /g, '-').concat('.png');
|
|
|
|
casper.start('about:blank').viewport(1280, 1024);
|
|
|
|
if (!doNotAutoLogin) {
|
|
// Only call register once for the lifetime of Mindless
|
|
if (!_isUserRegistered) {
|
|
CasperTest.Routines.logout.run(test);
|
|
CasperTest.Routines.register.run(test);
|
|
|
|
_isUserRegistered = true;
|
|
}
|
|
|
|
/* Ensure we're logged out at the start of every test or we may get
|
|
unexpected failures. */
|
|
CasperTest.Routines.logout.run(test);
|
|
CasperTest.Routines.login.run(test);
|
|
}
|
|
|
|
suite.call(casper, test);
|
|
|
|
casper.run(function () {
|
|
test.done();
|
|
});
|
|
};
|
|
|
|
if (typeof expect === 'function') {
|
|
doNotAutoLogin = suite;
|
|
suite = expect;
|
|
|
|
casper.test.begin(testName, runTest);
|
|
} else {
|
|
casper.test.begin(testName, expect, runTest);
|
|
}
|
|
}
|
|
|
|
function emberBegin(testName, expect, suite, doNotAutoLogin) {
|
|
_beforeDoneHandler = _noop;
|
|
|
|
var runTest = function (test) {
|
|
test.filename = testName.toLowerCase().replace(/ /g, '-').concat('.png');
|
|
|
|
casper.start('about:blank').viewport(1280, 1024);
|
|
|
|
if (!doNotAutoLogin) {
|
|
// Only call register once for the lifetime of CasperTest
|
|
if (!_isUserRegistered) {
|
|
|
|
CasperTest.Routines.emberSignout.run();
|
|
CasperTest.Routines.emberSignup.run();
|
|
|
|
_isUserRegistered = true;
|
|
}
|
|
|
|
/* Ensure we're logged out at the start of every test or we may get
|
|
unexpected failures. */
|
|
CasperTest.Routines.emberSignout.run();
|
|
CasperTest.Routines.emberSignin.run();
|
|
}
|
|
|
|
suite.call(casper, test);
|
|
|
|
casper.run(function () {
|
|
test.done();
|
|
});
|
|
};
|
|
|
|
|
|
if (typeof expect === 'function') {
|
|
doNotAutoLogin = suite;
|
|
suite = expect;
|
|
|
|
casper.test.begin(testName, runTest);
|
|
} else {
|
|
casper.test.begin(testName, expect, runTest);
|
|
}
|
|
}
|
|
|
|
// Sets a handler to be invoked right before `test.done` is invoked
|
|
function beforeDone(fn) {
|
|
if (fn) {
|
|
_beforeDoneHandler = fn;
|
|
} else {
|
|
_beforeDoneHandler = _noop;
|
|
}
|
|
}
|
|
|
|
return {
|
|
begin: begin,
|
|
emberBegin: emberBegin,
|
|
beforeDone: beforeDone
|
|
};
|
|
|
|
}());
|
|
|
|
CasperTest.Routines = (function () {
|
|
|
|
function register(test) {
|
|
casper.thenOpen(url + 'ghost/signup/');
|
|
|
|
casper.waitForOpaque('.signup-box', function then() {
|
|
this.fill('#signup', newUser, true);
|
|
});
|
|
|
|
casper.waitForSelectorTextChange('.notification-error', function onSuccess() {
|
|
var errorText = casper.evaluate(function () {
|
|
return document.querySelector('.notification-error').innerText;
|
|
});
|
|
casper.echoConcise('It appears as though a user is already registered. Error text: ' + errorText);
|
|
}, function onTimeout() {
|
|
casper.echoConcise('It appears as though a user was not already registered.');
|
|
}, 2000);
|
|
}
|
|
|
|
function emberSignup() {
|
|
casper.thenOpenAndWaitForPageLoad('signup', function then() {
|
|
casper.captureScreenshot('ember_signing_up1.png');
|
|
|
|
casper.waitForOpaque('.signup-box', function then() {
|
|
this.fillAndSave('#signup', newUser);
|
|
});
|
|
|
|
casper.captureScreenshot('ember_signing_up2.png');
|
|
|
|
casper.waitForSelectorTextChange('.notification-error', function onSuccess() {
|
|
var errorText = casper.evaluate(function () {
|
|
return document.querySelector('.notification-error').innerText;
|
|
});
|
|
casper.echoConcise('It appears as though a user is already registered. Error text: ' + errorText);
|
|
}, function onTimeout() {
|
|
casper.echoConcise('It appears as though a user was not already registered.');
|
|
}, 2000);
|
|
|
|
casper.captureScreenshot('ember_signing_up3.png');
|
|
|
|
});
|
|
}
|
|
|
|
function login(test) {
|
|
casper.thenOpen(url + 'ghost/signin/');
|
|
|
|
casper.waitForResource(/ghost\/signin/);
|
|
|
|
casper.waitForSelector('.login-box', function () {}, function () {
|
|
console.log(casper.getHTML());
|
|
});
|
|
|
|
casper.waitForOpaque('.login-box', function then() {
|
|
casper.captureScreenshot('got_sign_in.png');
|
|
this.fill('#login', user, true);
|
|
casper.captureScreenshot('filled_sign_in.png');
|
|
});
|
|
|
|
casper.waitForResource(/ghost\/$/).then(function () {
|
|
casper.captureScreenshot('have_logged_in.png');
|
|
});
|
|
}
|
|
|
|
function emberSignin() {
|
|
casper.thenOpenAndWaitForPageLoad('signin', function then() {
|
|
|
|
casper.waitForOpaque('.login-box', function then() {
|
|
casper.captureScreenshot('ember_signing_in.png');
|
|
this.fillAndSave('#login', user);
|
|
casper.captureScreenshot('ember_signing_in2.png');
|
|
});
|
|
|
|
casper.waitForResource(/posts\/\?status=all&staticPages=all/, function then() {
|
|
casper.captureScreenshot('ember_signing_in3.png');
|
|
}, function timeout() {
|
|
casper.test.fail('Unable to signin and load admin panel');
|
|
});
|
|
});
|
|
}
|
|
|
|
function logout(test) {
|
|
casper.thenOpen(url + 'ghost/signout/');
|
|
|
|
casper.captureScreenshot('logging_out.png');
|
|
|
|
// Wait for signin or signup
|
|
casper.waitForResource(/ghost\/sign/);
|
|
}
|
|
|
|
function emberSignout() {
|
|
casper.thenOpenAndWaitForPageLoad('signout', function then() {
|
|
casper.captureScreenshot('ember_signing_out.png');
|
|
});
|
|
}
|
|
|
|
// This will need switching over to ember once settings general is working properly.
|
|
function togglePermalinks(state) {
|
|
casper.thenOpen(url + 'ghost/settings/general');
|
|
|
|
casper.waitForResource(/ghost\/settings\/general/);
|
|
|
|
casper.waitForSelector('#general');
|
|
casper.waitForOpaque('#general', function then() {
|
|
var currentState = this.evaluate(function () {
|
|
return document.querySelector('#permalinks') && document.querySelector('#permalinks').checked ? 'on' : 'off';
|
|
});
|
|
if (currentState !== state) {
|
|
casper.thenClick('#permalinks');
|
|
casper.thenClick('.button-save');
|
|
|
|
casper.captureScreenshot('saving.png');
|
|
|
|
casper.waitForSelector('.notification-success', function () {
|
|
casper.captureScreenshot('saved.png');
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
function createTestPost(publish) {
|
|
casper.thenOpenAndWaitForPageLoad('editor', function createTestPost() {
|
|
casper.sendKeys('#entry-title', testPost.title);
|
|
casper.writeContentToCodeMirror(testPost.html);
|
|
casper.sendKeys('#entry-tags input.tag-input', 'TestTag');
|
|
casper.sendKeys('#entry-tags input.tag-input', casper.page.event.key.Enter);
|
|
});
|
|
|
|
casper.waitForSelectorTextChange('.entry-preview .rendered-markdown');
|
|
|
|
if (publish) {
|
|
// Open the publish options menu;
|
|
casper.thenClick('.js-publish-splitbutton .options.up');
|
|
|
|
casper.waitForOpaque('.js-publish-splitbutton .open');
|
|
|
|
// Select the publish post button
|
|
casper.thenClick('.js-publish-splitbutton li:first-child a');
|
|
|
|
casper.waitForSelectorTextChange('.js-publish-button', function onSuccess() {
|
|
casper.thenClick('.js-publish-button');
|
|
});
|
|
} else {
|
|
casper.thenClick('.js-publish-button');
|
|
}
|
|
|
|
// **Note:** This should include tags on all post requests! Uncomment and replace lines below with this when fixed.
|
|
// casper.waitForResource(/posts\/\?include=tags$/);
|
|
|
|
casper.waitForResource(/posts\/$/);
|
|
}
|
|
|
|
function _createRunner(fn) {
|
|
fn.run = function run(test) {
|
|
var routine = this;
|
|
|
|
casper.then(function () {
|
|
routine.call(casper, test);
|
|
});
|
|
};
|
|
|
|
return fn;
|
|
}
|
|
|
|
return {
|
|
register: _createRunner(register),
|
|
login: _createRunner(login),
|
|
logout: _createRunner(logout),
|
|
togglePermalinks: _createRunner(togglePermalinks),
|
|
emberSignup: _createRunner(emberSignup),
|
|
emberSignin: _createRunner(emberSignin),
|
|
emberSignout: _createRunner(emberSignout),
|
|
createTestPost: _createRunner(createTestPost)
|
|
};
|
|
|
|
}()); |