ece136c92e
* add GitHub GraphQL api initial support * support mutiple backends for e2e tests - initial commit * add github backend e2e test (currently skipped), fix bugs per tests * refactor e2e tests, add fork workflow tests, support fork workflow in GraphQL api * remove log message that might contain authentication token * return empty error when commit is not found when using GraphQL (align with base class) * disable github backend tests * fix bugs introduced after rebase of GraphQL and OpenAuthoring features * test: update tests per openAuthoring changes, split tests into multiple files * fix: pass in headers for pagination requests, avoid async iterator as it requires a polyfill on old browsers * test(e2e): disable github backend tests
118 lines
3.5 KiB
JavaScript
118 lines
3.5 KiB
JavaScript
import '../../utils/dismiss-local-backup';
|
|
import {
|
|
login,
|
|
createPost,
|
|
createPostAndExit,
|
|
updateExistingPostAndExit,
|
|
exitEditor,
|
|
goToWorkflow,
|
|
goToCollections,
|
|
updateWorkflowStatus,
|
|
publishWorkflowEntry,
|
|
assertWorkflowStatusInEditor,
|
|
assertPublishedEntry,
|
|
deleteEntryInEditor,
|
|
assertOnCollectionsPage,
|
|
assertEntryDeleted,
|
|
assertWorkflowStatus,
|
|
updateWorkflowStatusInEditor,
|
|
} from '../../utils/steps';
|
|
import { workflowStatus, editorStatus } from '../../utils/constants';
|
|
import { entry1, entry2, entry3 } from './entries';
|
|
|
|
export default function({ use_graphql }) {
|
|
let taskResult = { data: {} };
|
|
|
|
const backend = 'github';
|
|
|
|
before(() => {
|
|
Cypress.config('taskTimeout', 1200000);
|
|
Cypress.config('defaultCommandTimeout', 60000);
|
|
cy.task('setupBackend', { backend }).then(data => {
|
|
taskResult.data = data;
|
|
});
|
|
|
|
cy.task('updateBackendOptions', { backend, options: { use_graphql, open_authoring: false } });
|
|
});
|
|
|
|
after(() => {
|
|
cy.task('teardownBackend', { backend, ...taskResult.data });
|
|
cy.task('restoreDefaults');
|
|
});
|
|
|
|
afterEach(() => {
|
|
cy.task('teardownBackendTest', { backend, ...taskResult.data });
|
|
});
|
|
|
|
it('successfully loads', () => {
|
|
login(taskResult.data.user);
|
|
});
|
|
|
|
it('can create an entry', () => {
|
|
login(taskResult.data.user);
|
|
createPostAndExit(entry1);
|
|
});
|
|
|
|
it('can update an entry', () => {
|
|
login(taskResult.data.user);
|
|
createPostAndExit(entry1);
|
|
updateExistingPostAndExit(entry1, entry2);
|
|
});
|
|
|
|
it('can publish an editorial workflow entry', () => {
|
|
login(taskResult.data.user);
|
|
createPostAndExit(entry1);
|
|
goToWorkflow();
|
|
updateWorkflowStatus(entry1, workflowStatus.draft, workflowStatus.ready);
|
|
publishWorkflowEntry(entry1);
|
|
});
|
|
|
|
it('can change workflow status', () => {
|
|
login(taskResult.data.user);
|
|
createPostAndExit(entry1);
|
|
goToWorkflow();
|
|
updateWorkflowStatus(entry1, workflowStatus.draft, workflowStatus.review);
|
|
updateWorkflowStatus(entry1, workflowStatus.review, workflowStatus.ready);
|
|
updateWorkflowStatus(entry1, workflowStatus.ready, workflowStatus.review);
|
|
updateWorkflowStatus(entry1, workflowStatus.review, workflowStatus.draft);
|
|
updateWorkflowStatus(entry1, workflowStatus.draft, workflowStatus.ready);
|
|
});
|
|
|
|
it('can change status on and publish multiple entries', () => {
|
|
login(taskResult.data.user);
|
|
createPostAndExit(entry1);
|
|
createPostAndExit(entry2);
|
|
createPostAndExit(entry3);
|
|
goToWorkflow();
|
|
updateWorkflowStatus(entry3, workflowStatus.draft, workflowStatus.ready);
|
|
updateWorkflowStatus(entry2, workflowStatus.draft, workflowStatus.ready);
|
|
updateWorkflowStatus(entry1, workflowStatus.draft, workflowStatus.ready);
|
|
publishWorkflowEntry(entry3);
|
|
publishWorkflowEntry(entry2);
|
|
publishWorkflowEntry(entry1);
|
|
goToCollections();
|
|
assertPublishedEntry([entry3, entry2, entry1]);
|
|
});
|
|
|
|
it('can delete an entry', () => {
|
|
login(taskResult.data.user);
|
|
createPost(entry1);
|
|
deleteEntryInEditor();
|
|
assertOnCollectionsPage();
|
|
assertEntryDeleted(entry1);
|
|
});
|
|
|
|
it('can update workflow status from within the editor', () => {
|
|
login(taskResult.data.user);
|
|
createPost(entry1);
|
|
assertWorkflowStatusInEditor(editorStatus.draft);
|
|
updateWorkflowStatusInEditor(editorStatus.review);
|
|
assertWorkflowStatusInEditor(editorStatus.review);
|
|
updateWorkflowStatusInEditor(editorStatus.ready);
|
|
assertWorkflowStatusInEditor(editorStatus.ready);
|
|
exitEditor();
|
|
goToWorkflow();
|
|
assertWorkflowStatus(entry1, workflowStatus.ready);
|
|
});
|
|
}
|