From 61e7cd644b3774aa5b87b9ccf3974437525e6ef0 Mon Sep 17 00:00:00 2001 From: Aileen Nowak Date: Thu, 23 Feb 2023 16:35:37 +0200 Subject: [PATCH] Added test to slack-notifications to check for correct reason when value too far from milestone --- .../test/SlackNotifications.test.js | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/ghost/slack-notifications/test/SlackNotifications.test.js b/ghost/slack-notifications/test/SlackNotifications.test.js index 2677410ec4..cc8882bd40 100644 --- a/ghost/slack-notifications/test/SlackNotifications.test.js +++ b/ghost/slack-notifications/test/SlackNotifications.test.js @@ -240,6 +240,74 @@ describe('SlackNotifications', function () { assert(sendStub.calledOnce === true); assert(sendStub.calledWith(expectedResult, 'https://slack-webhook.example') === true); }); + + it('Shows the correct reason for email not send when last milestone is too far from actual value', async function () { + await slackNotifications.notifyMilestoneReceived({ + milestone: { + id: ObjectId().toHexString(), + name: 'members-1000', + type: 'members', + createdAt: '2023-02-15T00:00:00.000Z', + emailSentAt: null, + value: 1000 + }, + meta: { + currentValue: 1105, + reason: 'tooFar' + } + }); + + const expectedResult = { + unfurl_links: false, + username: 'Ghost Milestone Service', + attachments: [{ + color: '#36a64f', + blocks: [ + { + type: 'header', + text: { + type: 'plain_text', + text: ':tada: Members Milestone 1,000 reached!', + emoji: true + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'New *Members Milestone* achieved for ' + } + }, + { + type: 'divider' + }, + { + type: 'section', + fields: [ + { + type: 'mrkdwn', + text: '*Milestone:*\n1,000' + }, + { + type: 'mrkdwn', + text: '*Current Members:*\n1,105' + } + ] + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Email sent:*\nno / too far from milestone' + } + } + ] + }] + }; + + assert(sendStub.calledOnce === true); + assert(sendStub.calledWith(expectedResult, 'https://slack-webhook.example') === true); + }); }); describe('send', function () {