9b1f79f601
no issue - flag is no longer used in Admin so we can clean it up in Core too - updated Post model to set blank document to `lexical` field rather than `mobiledoc` as a default value - switched over to returning `mobiledoc,lexical` as default formats in Admin API
693 lines
21 KiB
JavaScript
693 lines
21 KiB
JavaScript
const moment = require('moment-timezone');
|
|
const {
|
|
agentProvider,
|
|
mockManager,
|
|
fixtureManager,
|
|
matchers
|
|
} = require('../utils/e2e-framework');
|
|
const {
|
|
anyArray,
|
|
anyGhostAgent,
|
|
anyUuid,
|
|
anyLocalURL,
|
|
anyISODateTime,
|
|
anyObjectId,
|
|
anyContentVersion,
|
|
anyNumber
|
|
} = matchers;
|
|
|
|
const tierSnapshot = {
|
|
id: anyObjectId,
|
|
created_at: anyISODateTime,
|
|
updated_at: anyISODateTime
|
|
};
|
|
|
|
const tagSnapshot = tierSnapshot;
|
|
const roleSnapshot = tierSnapshot;
|
|
|
|
const buildAuthorSnapshot = (roles = false) => {
|
|
const authorSnapshot = {
|
|
last_seen: anyISODateTime,
|
|
created_at: anyISODateTime,
|
|
updated_at: anyISODateTime,
|
|
url: anyLocalURL
|
|
};
|
|
|
|
if (roles) {
|
|
return {...authorSnapshot, roles: Array(1).fill(roleSnapshot)};
|
|
}
|
|
|
|
return authorSnapshot;
|
|
};
|
|
|
|
const buildPageSnapshotWithTiers = ({
|
|
published,
|
|
tiersCount,
|
|
tags = false,
|
|
roles = false
|
|
}) => {
|
|
return {
|
|
id: anyObjectId,
|
|
uuid: anyUuid,
|
|
comment_id: anyObjectId,
|
|
published_at: published ? anyISODateTime : null,
|
|
created_at: anyISODateTime,
|
|
updated_at: anyISODateTime,
|
|
url: anyLocalURL,
|
|
tiers: new Array(tiersCount).fill(tierSnapshot),
|
|
primary_author: buildAuthorSnapshot(roles),
|
|
authors: new Array(1).fill(buildAuthorSnapshot(roles)),
|
|
primary_tag: tags ? tagSnapshot : null,
|
|
tags: tags ? new Array(1).fill(tagSnapshot) : [],
|
|
post_revisions: anyArray
|
|
};
|
|
};
|
|
|
|
const buildPreviousPageSnapshotWithTiers = (tiersCount) => {
|
|
if (tiersCount === 0) {
|
|
return {
|
|
id: anyObjectId,
|
|
uuid: anyUuid,
|
|
comment_id: anyObjectId,
|
|
published_at: anyISODateTime,
|
|
created_at: anyISODateTime,
|
|
updated_at: anyISODateTime,
|
|
authors: new Array(1).fill(buildAuthorSnapshot(true))
|
|
};
|
|
}
|
|
return {
|
|
tiers: new Array(tiersCount).fill(tierSnapshot),
|
|
updated_at: anyISODateTime
|
|
};
|
|
};
|
|
|
|
const buildPreviousPageSnapshotWithTiersAndTags = ({tiersCount, tags}) => {
|
|
const prevSnapshot = {
|
|
tags: tags ? new Array(1).fill(tagSnapshot) : []
|
|
};
|
|
|
|
if (tiersCount > 0) {
|
|
return {...prevSnapshot, tiers: new Array(tiersCount).fill(tierSnapshot)};
|
|
}
|
|
|
|
return prevSnapshot;
|
|
};
|
|
|
|
const buildPreviousPageSnapshotWithTiersPublished = ({tiersCount, published}) => {
|
|
return {
|
|
tiers: new Array(tiersCount).fill(tierSnapshot),
|
|
updated_at: anyISODateTime,
|
|
published_at: published ? anyISODateTime : null
|
|
};
|
|
};
|
|
|
|
describe('page.* events', function () {
|
|
let adminAPIAgent;
|
|
let webhookMockReceiver;
|
|
|
|
before(async function () {
|
|
adminAPIAgent = await agentProvider.getAdminAPIAgent();
|
|
await fixtureManager.init('integrations');
|
|
await adminAPIAgent.loginAsOwner();
|
|
});
|
|
|
|
beforeEach(function () {
|
|
webhookMockReceiver = mockManager.mockWebhookRequests();
|
|
});
|
|
|
|
afterEach(function () {
|
|
mockManager.restore();
|
|
});
|
|
|
|
it('page.published event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-published/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.published',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.published webhook',
|
|
status: 'draft'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const publishedPage = res.body.pages[0];
|
|
publishedPage.status = 'published';
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [publishedPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: true,
|
|
tiersCount: 2,
|
|
roles: true
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiers(2)
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.added event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-added/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.added',
|
|
url: webhookURL
|
|
});
|
|
|
|
await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.added webhook',
|
|
status: 'draft',
|
|
displayName: 'webhookz'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: false,
|
|
tiersCount: 2
|
|
})
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.deleted event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-deleted/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.deleted',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.deleted webhook',
|
|
status: 'published',
|
|
published_at: moment().subtract(6, 'hours').toISOString()
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
|
|
await adminAPIAgent
|
|
.delete('pages/' + id)
|
|
.expectStatus(204)
|
|
.expectEmptyBody();
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: {},
|
|
previous: buildPreviousPageSnapshotWithTiers(0)
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.edited event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-edited/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.edited',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.edited webhook',
|
|
status: 'draft',
|
|
slug: 'testing-page-edited-webhook'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const updatedPage = res.body.pages[0];
|
|
updatedPage.title = 'updated test page';
|
|
updatedPage.slug = 'updated-test-page';
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [updatedPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: false,
|
|
tiersCount: 2,
|
|
roles: true
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiers(2)
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.scheduled event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-scheduled/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.scheduled',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.scheduled webhook',
|
|
status: 'draft'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const scheduledPage = res.body.pages[0];
|
|
scheduledPage.status = 'scheduled';
|
|
scheduledPage.published_at = moment().add(6, 'hours').toISOString();
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [scheduledPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: true,
|
|
tiersCount: 2,
|
|
roles: true
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiers(2)
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.published.edited event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-published-edited/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.published.edited',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.published.edited webhook',
|
|
status: 'published'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const previouslyPublishedPage = res.body.pages[0];
|
|
previouslyPublishedPage.title = 'testing page.published.edited webhook (edited!)';
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [previouslyPublishedPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: true,
|
|
tiersCount: 2,
|
|
roles: true
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiers(2)
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.unpublished event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-unpublished/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.unpublished',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.unpublished webhook',
|
|
status: 'published'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const previouslyPublishedPage = res.body.pages[0];
|
|
previouslyPublishedPage.status = 'draft';
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [previouslyPublishedPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: true,
|
|
tiersCount: 2,
|
|
roles: true
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiers(2)
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.tag.detached event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-tag-detached/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.tag.detached',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'test page.tag.detached webhook',
|
|
status: 'draft'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
const id = res.body.pages[0].id;
|
|
const updatedPage = res.body.pages[0];
|
|
updatedPage.tags = ['Testing TAGS'];
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [updatedPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
updatedPage.tags = [];
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [updatedPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: false,
|
|
tiersCount: 2,
|
|
roles: true,
|
|
tags: false
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiersAndTags({
|
|
tiersCount: 0,
|
|
tags: true
|
|
})
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.tag.attached event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-tag-attached/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.tag.attached',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.tag.attached webhook',
|
|
status: 'draft'
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const pageTagAttached = res.body.pages[0];
|
|
pageTagAttached.status = 'draft';
|
|
pageTagAttached.tags = ['Blogs'];
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [pageTagAttached]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: false,
|
|
tiersCount: 2,
|
|
tags: true,
|
|
roles: true
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiersAndTags({
|
|
tiersCount: 2,
|
|
tags: false
|
|
})
|
|
}
|
|
});
|
|
});
|
|
|
|
it('page.rescheduled event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-rescheduled/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.rescheduled',
|
|
url: webhookURL
|
|
});
|
|
|
|
const published_at = moment().add(6, 'hours').toISOString();
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.rescheduled webhook',
|
|
status: 'scheduled',
|
|
published_at: published_at
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const pageRescheduled = res.body.pages[0];
|
|
pageRescheduled.status = 'scheduled';
|
|
pageRescheduled.published_at = moment().add(8, 'hours').toISOString();
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [pageRescheduled]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: true,
|
|
tiersCount: 2,
|
|
roles: true
|
|
}),
|
|
previous: buildPreviousPageSnapshotWithTiersPublished({
|
|
tiersCount: 2,
|
|
published: true
|
|
})
|
|
}
|
|
});
|
|
});
|
|
it('page.unscheduled event is triggered', async function () {
|
|
const webhookURL = 'https://test-webhook-receiver.com/page-unscheduled/';
|
|
await webhookMockReceiver.mock(webhookURL);
|
|
await fixtureManager.insertWebhook({
|
|
event: 'page.unscheduled',
|
|
url: webhookURL
|
|
});
|
|
|
|
const res = await adminAPIAgent
|
|
.post('pages/')
|
|
.body({
|
|
pages: [
|
|
{
|
|
title: 'testing page.unscheduled webhook',
|
|
status: 'scheduled',
|
|
published_at: moment().add(6, 'hours').toISOString()
|
|
}
|
|
]
|
|
})
|
|
.expectStatus(201);
|
|
|
|
const id = res.body.pages[0].id;
|
|
const previouslyScheduledPage = res.body.pages[0];
|
|
previouslyScheduledPage.status = 'draft';
|
|
previouslyScheduledPage.published_at = null;
|
|
|
|
await adminAPIAgent
|
|
.put('pages/' + id)
|
|
.body({
|
|
pages: [previouslyScheduledPage]
|
|
})
|
|
.expectStatus(200);
|
|
|
|
await webhookMockReceiver.receivedRequest();
|
|
|
|
webhookMockReceiver
|
|
.matchHeaderSnapshot({
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyNumber,
|
|
'user-agent': anyGhostAgent
|
|
})
|
|
.matchBodySnapshot({
|
|
page: {
|
|
current: buildPageSnapshotWithTiers({
|
|
published: false,
|
|
tiersCount: 2,
|
|
roles: true
|
|
}),
|
|
previous: {
|
|
...buildPreviousPageSnapshotWithTiers(2),
|
|
published_at: anyISODateTime
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|