mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
7c4381c812
- Every route can set a title token that is combined with the blog’s title, resulting in titles like ‘Content - Test Blog’. - Subroutes are supported (‘Settings - General - Test Blog’) - The blog’s name is applied to and taken from the `config` object to spare Ember a REST call via `store.find(‘settings’)`. - Tests have been changed to test for the new titles. - The initially proposed solution (https://github.com/paddle8/ember-document-title) doesn’t play nice with EAK, which is why I went with this solution (https://gist.github.com/machty/8413411) by Ember.JS core dev @Machty.
67 lines
2.6 KiB
JavaScript
67 lines
2.6 KiB
JavaScript
// # Setup Test
|
|
// Test that setup works correctly
|
|
|
|
/*global CasperTest, casper, email, user, password */
|
|
|
|
CasperTest.begin('Ghost setup fails properly', 6, function suite(test) {
|
|
casper.thenOpenAndWaitForPageLoad('setup', function then() {
|
|
test.assertUrlMatch(/ghost\/setup\/$/, 'Landed on the correct URL');
|
|
});
|
|
|
|
casper.then(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.waitForResource(/\d+/, function testForDashboard() {
|
|
test.assertUrlMatch(/ghost\/\d+\/$/, 'Landed on the correct URL');
|
|
test.assertExists('.global-nav', 'Global admin header is present');
|
|
test.assertExists('.manage', 'We\'re now on content');
|
|
}, function onTimeOut() {
|
|
test.fail('Failed to signin');
|
|
}, 20000);
|
|
}, true);
|
|
|
|
CasperTest.begin('Authenticated user is redirected', 8, 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('.login-box', 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('.global-nav', 'Global admin header is present');
|
|
test.assertExists('.manage', 'We\'re now 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('.global-nav', 'Global admin header is present');
|
|
test.assertExists('.manage', 'We\'re now on content');
|
|
}, function onTimeOut() {
|
|
test.fail('Failed to redirect');
|
|
});
|
|
}, true);
|