Ghost/ghost/recommendations/test/WellknownService.test.ts
Simon Backx 9abd466397
Renamed reason to description in recommendations table (#18527)
fixes https://github.com/TryGhost/Product/issues/4005

We no longer use the 'reason' of a recommendation, but allow a flexible
description instead. Because this is a breaking change in the API, we do
this before making this feature GA.
- Added new database utils for renaming a column
- Added new migration to rename the column
- Updated all references in code
2023-10-09 11:19:44 -03:00

79 lines
2.4 KiB
TypeScript

import assert from 'assert/strict';
import fs from 'fs/promises';
import path from 'path';
import {Recommendation} from '../src/Recommendation';
import {WellknownService} from '../src/WellknownService';
const dir = path.join(__dirname, 'data');
async function getContent() {
const content = await fs.readFile(path.join(dir, '.well-known', 'recommendations.json'), 'utf8');
return JSON.parse(content);
}
describe('WellknownService', function () {
const service = new WellknownService({
urlUtils: {
relativeToAbsolute(url: string) {
return 'https://example.com' + url;
}
},
dir
});
afterEach(async function () {
// Remove folder
await fs.rm(dir, {recursive: true, force: true});
});
it('Can save recommendations', async function () {
const recommendations = [
Recommendation.create({
title: 'My Blog',
description: null,
excerpt: null,
featuredImage: null,
favicon: null,
url: 'https://example.com/blog',
oneClickSubscribe: false,
createdAt: new Date('2021-01-01T00:00:00Z'),
updatedAt: new Date('2021-02-01T00:00:00Z')
}),
Recommendation.create({
title: 'My Other Blog',
description: null,
excerpt: null,
featuredImage: null,
favicon: null,
url: 'https://example.com/blog2',
oneClickSubscribe: false,
createdAt: new Date('2021-01-01T00:00:00Z'),
updatedAt: null
})
];
await service.set(recommendations);
// Check that the file exists
assert.deepEqual(await getContent(), [
{
url: 'https://example.com/blog',
created_at: '2021-01-01T00:00:00.000Z',
updated_at: '2021-02-01T00:00:00.000Z'
},
{
url: 'https://example.com/blog2',
created_at: '2021-01-01T00:00:00.000Z',
updated_at: '2021-01-01T00:00:00.000Z'
}
]);
});
it('Can get URL', async function () {
assert.equal(
(await service.getURL()).toString(),
'https://example.com/.well-known/recommendations.json'
);
});
});