2022-03-18 20:05:46 +03:00
|
|
|
const assert = require('assert');
|
|
|
|
const {agentProvider, fixtureManager, mockManager, matchers} = require('../../utils/e2e-framework');
|
2022-03-18 22:41:18 +03:00
|
|
|
const {stringMatching, anyEtag, anyObjectId, anyISODateTime} = matchers;
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-05-14 00:57:10 +03:00
|
|
|
const CURRENT_SETTINGS_COUNT = 69;
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-03-18 22:41:18 +03:00
|
|
|
const settingsMatcher = {
|
|
|
|
id: anyObjectId,
|
|
|
|
created_at: anyISODateTime,
|
|
|
|
updated_at: anyISODateTime
|
|
|
|
};
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-03-18 22:41:18 +03:00
|
|
|
const publicHashSettingMatcher = {
|
|
|
|
id: anyObjectId,
|
|
|
|
value: stringMatching(/[a-z0-9]{30}/),
|
|
|
|
created_at: anyISODateTime,
|
|
|
|
updated_at: anyISODateTime
|
|
|
|
};
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-03-18 22:41:18 +03:00
|
|
|
const matchSettingsArray = (length) => {
|
|
|
|
const settingsArray = new Array(length).fill(settingsMatcher);
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-03-18 22:41:18 +03:00
|
|
|
if (length > 25) {
|
|
|
|
// Item at index 25 is the public hash, which is always different
|
|
|
|
settingsArray[25] = publicHashSettingMatcher;
|
|
|
|
}
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-03-18 22:41:18 +03:00
|
|
|
return settingsArray;
|
|
|
|
};
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-03-18 22:41:18 +03:00
|
|
|
describe('Settings API', function () {
|
2022-03-18 20:05:46 +03:00
|
|
|
let agent, membersService;
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-03-18 22:41:18 +03:00
|
|
|
before(async function () {
|
|
|
|
agent = await agentProvider.getAdminAPIAgent();
|
|
|
|
await fixtureManager.init();
|
|
|
|
await agent.loginAsOwner();
|
2022-03-18 20:05:46 +03:00
|
|
|
|
|
|
|
membersService = require('../../../core/server/services/members');
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
mockManager.mockMail();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
mockManager.restore();
|
2022-03-18 22:41:18 +03:00
|
|
|
});
|
2018-10-12 20:44:02 +03:00
|
|
|
|
2022-05-15 16:09:53 +03:00
|
|
|
describe('Browse', function () {
|
|
|
|
it('Can request all settings', async function () {
|
|
|
|
await agent
|
|
|
|
.get('settings/')
|
|
|
|
.expectStatus(200)
|
|
|
|
.matchBodySnapshot({
|
|
|
|
settings: matchSettingsArray(CURRENT_SETTINGS_COUNT)
|
|
|
|
})
|
|
|
|
.matchHeaderSnapshot({
|
|
|
|
etag: anyEtag
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Can request settings by group', async function () {
|
|
|
|
await agent
|
|
|
|
.get('settings/?group=theme')
|
|
|
|
.expectStatus(200)
|
|
|
|
.matchBodySnapshot({
|
|
|
|
settings: matchSettingsArray(1)
|
|
|
|
})
|
|
|
|
.matchHeaderSnapshot({
|
|
|
|
etag: anyEtag
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Requesting core settings by group ignores the parameter and returns no settings', async function () {
|
|
|
|
await agent
|
|
|
|
.get('settings/?group=core')
|
|
|
|
.expectStatus(200)
|
|
|
|
.matchBodySnapshot()
|
|
|
|
.matchHeaderSnapshot({
|
|
|
|
etag: anyEtag
|
|
|
|
});
|
|
|
|
});
|
2018-10-12 20:44:02 +03:00
|
|
|
});
|
|
|
|
|
2022-05-15 16:09:53 +03:00
|
|
|
describe('Edit', function () {
|
|
|
|
it('Can edit a setting', async function () {
|
|
|
|
const settingsToChange = [
|
|
|
|
{
|
|
|
|
key: 'title',
|
|
|
|
value: []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'codeinjection_head',
|
|
|
|
value: null
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'navigation',
|
|
|
|
value: JSON.stringify([{
|
|
|
|
label: 'label1'
|
|
|
|
}])
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'slack_username',
|
|
|
|
value: 'New Slack Username'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'is_private',
|
|
|
|
value: false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'meta_title',
|
|
|
|
value: 'SEO title'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'meta_description',
|
|
|
|
value: 'SEO description'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'og_image',
|
|
|
|
value: '/content/images/2019/07/facebook.png'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'og_title',
|
|
|
|
value: 'facebook title'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'og_description',
|
|
|
|
value: 'facebook description'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'twitter_image',
|
|
|
|
value: '/content/images/2019/07/twitter.png'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'twitter_title',
|
|
|
|
value: 'twitter title'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'twitter_description',
|
|
|
|
value: 'twitter description'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'locale',
|
|
|
|
value: 'ua'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'labs',
|
|
|
|
value: JSON.stringify({})
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'timezone',
|
|
|
|
value: 'Pacific/Auckland'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'unsplash',
|
|
|
|
value: false
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
await agent.put('settings/')
|
|
|
|
.body({
|
|
|
|
settings: settingsToChange
|
|
|
|
})
|
|
|
|
.expectStatus(200)
|
|
|
|
.matchBodySnapshot({
|
|
|
|
settings: matchSettingsArray(settingsToChange.length)
|
|
|
|
})
|
|
|
|
.matchHeaderSnapshot({
|
|
|
|
etag: anyEtag
|
|
|
|
});
|
|
|
|
});
|
2018-10-12 20:44:02 +03:00
|
|
|
});
|
2022-03-18 20:05:46 +03:00
|
|
|
|
2022-05-15 16:09:53 +03:00
|
|
|
describe('stripe connect', function () {
|
|
|
|
it('can do disconnectStripeConnectIntegration', async function () {
|
|
|
|
await agent
|
|
|
|
.delete('/settings/stripe/connect/')
|
|
|
|
.expectStatus(204)
|
|
|
|
.expectEmptyBody()
|
|
|
|
.matchHeaderSnapshot({
|
|
|
|
etag: anyEtag
|
|
|
|
});
|
2022-03-18 20:05:46 +03:00
|
|
|
|
2022-05-15 16:09:53 +03:00
|
|
|
const stripeSettings = [
|
|
|
|
'stripe_connect_publishable_key',
|
|
|
|
'stripe_connect_secret_key',
|
|
|
|
'stripe_connect_livemode',
|
|
|
|
'stripe_connect_display_name',
|
|
|
|
'stripe_connect_account_id',
|
|
|
|
'members_stripe_webhook_id',
|
|
|
|
'members_stripe_webhook_secret'
|
|
|
|
];
|
|
|
|
|
|
|
|
// Assert that the settings are changed as a side effect
|
|
|
|
await agent.get('settings/')
|
|
|
|
.expect(({body}) => {
|
|
|
|
body.settings.forEach((setting) => {
|
|
|
|
if (stripeSettings.includes(setting.key)) {
|
|
|
|
assert.equal(setting.value, null);
|
|
|
|
}
|
|
|
|
});
|
2022-03-18 20:05:46 +03:00
|
|
|
});
|
2022-05-15 16:09:53 +03:00
|
|
|
});
|
2022-03-18 20:05:46 +03:00
|
|
|
});
|
|
|
|
|
2022-05-15 16:09:53 +03:00
|
|
|
// @TODO Fixing https://github.com/TryGhost/Team/issues/584 should result in thes tests changing
|
|
|
|
describe('deprecated', function () {
|
|
|
|
it('can do updateMembersEmail', async function () {
|
|
|
|
await agent
|
|
|
|
.post('settings/members/email/')
|
|
|
|
.body({
|
|
|
|
email: 'test@test.com',
|
|
|
|
type: 'supportAddressUpdate'
|
|
|
|
})
|
|
|
|
.expectStatus(204)
|
|
|
|
.expectEmptyBody()
|
|
|
|
.matchHeaderSnapshot({
|
|
|
|
etag: anyEtag
|
|
|
|
});
|
|
|
|
|
|
|
|
mockManager.assert.sentEmail({to: 'test@test.com'});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can do validateMembersEmailUpdate', async function () {
|
|
|
|
const magicLink = await membersService.api.getMagicLink('test@test.com');
|
|
|
|
const magicLinkUrl = new URL(magicLink);
|
|
|
|
const token = magicLinkUrl.searchParams.get('token');
|
|
|
|
|
|
|
|
await agent
|
|
|
|
.get(`settings/members/email/?token=${token}&action=supportAddressUpdate`)
|
|
|
|
.expectStatus(302)
|
|
|
|
.expectEmptyBody()
|
|
|
|
.matchHeaderSnapshot();
|
|
|
|
|
|
|
|
// Assert that the setting is changed as a side effect
|
|
|
|
// NOTE: cannot use read here :/
|
|
|
|
await agent.get('settings/')
|
|
|
|
.expect(({body}) => {
|
|
|
|
const fromAddress = body.settings.find((setting) => {
|
|
|
|
return setting.key === 'members_support_address';
|
|
|
|
});
|
|
|
|
assert.equal(fromAddress.value, 'test@test.com');
|
2022-03-18 20:05:46 +03:00
|
|
|
});
|
2022-05-15 16:09:53 +03:00
|
|
|
});
|
2022-03-18 20:05:46 +03:00
|
|
|
});
|
2018-10-12 20:44:02 +03:00
|
|
|
});
|