mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
df1c04b8d8
No issue - Move editor-base-view mixin into editor/edit view - Also deletes mobile views and modifies files that were using it - Helps pave the way for Ember 2.0, where views do not exist
95 lines
4.3 KiB
JavaScript
95 lines
4.3 KiB
JavaScript
// # Content Test
|
|
// Test the content screen, uses the editor to create dummy content
|
|
|
|
/*globals CasperTest, casper, testPost */
|
|
|
|
CasperTest.begin('Content screen is correct', 15, function suite(test) {
|
|
// First, create a sample post for testing (this should probably be a routine)
|
|
CasperTest.Routines.createTestPost.run(false);
|
|
|
|
// Begin test
|
|
casper.thenOpenAndWaitForPageLoad('content', function testTitleAndUrl() {
|
|
test.assertTitle('Content - Test Blog', 'Title is "Content - Test Blog"');
|
|
test.assertUrlMatch(/ghost\/\d+\/$/, 'Landed on the correct URL');
|
|
});
|
|
|
|
casper.then(function testViews() {
|
|
test.assertExists('.gh-main .gh-view', 'Content main view is present');
|
|
test.assertExists('.content-list-content', 'Content list view is present');
|
|
test.assertExists('.gh-nav-main-editor', 'add new post button exists');
|
|
test.assertEquals(
|
|
this.getElementAttribute('.gh-nav-main-editor', 'href'),
|
|
'/ghost/editor/', 'add new post href is correct'
|
|
);
|
|
test.assertExists('.content-list-content li .entry-title', 'Content list view has at least one item');
|
|
test.assertSelectorHasText(
|
|
'.content-list-content li:first-of-type h3', testPost.title, 'title is present and has content'
|
|
);
|
|
test.assertSelectorHasText(
|
|
'.content-list-content li:first-of-type .entry-meta .status .draft', 'Draft', 'correct status is present'
|
|
);
|
|
test.assertExists('.content-preview', 'Content preview is present');
|
|
});
|
|
|
|
casper.then(function testEditPostButton() {
|
|
test.assertExists('.content-preview a.post-edit', 'edit post button exists');
|
|
});
|
|
|
|
casper.then(function testActiveItem() {
|
|
test.assertExists('.content-list-content li:first-of-type .active', 'first item is active');
|
|
test.assertDoesntExist('.content-list-content li:nth-of-type(2) .active', 'second item is not active');
|
|
|
|
// Ember adds script tags into the list so we need to use nth-of-type
|
|
}).thenClick('.content-list-content li:nth-of-type(2) a', function then() {
|
|
test.assertDoesntExist('.content-list-content li:first-of-type .active', 'first item is not active');
|
|
test.assertExists('.content-list-content li:nth-of-type(2) .active', 'second item is active');
|
|
});
|
|
});
|
|
|
|
CasperTest.begin('Content list shows correct post status', 3, function testStaticPageStatus(test) {
|
|
CasperTest.Routines.createTestPost.run(true);
|
|
|
|
// Begin test
|
|
casper.thenOpenAndWaitForPageLoad('content', function testTitleAndUrl() {
|
|
test.assertTitle('Content - Test Blog', 'Title is "Content - Test Blog"');
|
|
test.assertUrlMatch(/ghost\/\d+\/$/, 'Landed on the correct URL');
|
|
});
|
|
|
|
// Select first non-draft, non-static post. Should be second in the list at this stage of testing.
|
|
casper.thenClick('.content-list-content li:nth-of-type(3) a');
|
|
|
|
// Test for status of 'Published'
|
|
casper.then(function checkStatus() {
|
|
test.assertSelectorHasText('.content-list-content .active .published', 'Published',
|
|
'status is present and labeled as published');
|
|
});
|
|
|
|
casper.thenClick('.post-edit');
|
|
casper.waitForSelector('#entry-title');
|
|
|
|
// // TODO readd this test when #3811 is fixed
|
|
// // Change post to static page
|
|
// casper.thenClick('.post-settings');
|
|
// casper.waitForOpaque('.post-settings-menu.open');
|
|
|
|
// casper.thenClick('.post-setting-static-page');
|
|
|
|
// casper.thenTransitionAndWaitForScreenLoad('content', function onSuccess() {
|
|
// casper.waitForSelector('.content-list-content li .entry-meta .status .page', function waitForSuccess() {
|
|
// test.assertSelectorHasText('.content-list-content li .entry-meta .status .page', 'Page', 'status is Page');
|
|
// }, function onTimeout() {
|
|
// test.assert(false, 'status did not change');
|
|
// });
|
|
// });
|
|
});
|
|
|
|
// TODO: Implement this test... much needed!
|
|
// CasperTest.begin('Infinite scrolling', 2, function suite(test) {
|
|
// // Placeholder for infinite scrolling/pagination tests (will need to setup 16+ posts).
|
|
//
|
|
// casper.thenOpenAndWaitForPageLoad('content', function testTitleAndUrl() {
|
|
// test.assertTitle('Content - Test Blog', 'Title is "Content - Test Blog"');
|
|
// test.assertUrlMatch(/ghost\/\d+\/$/, 'Landed on the correct URL');
|
|
// });
|
|
// });
|