Ghost/ghost/link-tracking/test/LinkClickTrackingService.test.js
Hannah Wolfe 6161f94910
Updated to use assert/strict everywhere (#17047)
refs: https://github.com/TryGhost/Toolbox/issues/595

We're rolling out new rules around the node assert library, the first of which is enforcing the use of assert/strict. This means we don't need to use the strict version of methods, as the standard version will work that way by default.

This caught some gotchas in our existing usage of assert where the lack of strict mode had unexpected results:
- Url matching needs to be done on `url.href` see aa58b354a4
- Null and undefined are not the same thing,  there were a few cases of this being confused
- Particularly questionable changes in [PostExporter tests](c1a468744b) tracked [here](https://github.com/TryGhost/Team/issues/3505).
- A typo see eaac9c293a

Moving forward, using assert strict should help us to catch unexpected behaviour, particularly around nulls and undefineds during implementation.
2023-06-21 09:56:59 +01:00

213 lines
7.3 KiB
JavaScript

const LinkClickTrackingService = require('../lib/LinkClickTrackingService');
const sinon = require('sinon');
const should = require('should');
const assert = require('assert/strict');
const ObjectID = require('bson-objectid').default;
const PostLink = require('../lib/PostLink');
const {RedirectEvent} = require('@tryghost/link-redirects');
describe('LinkClickTrackingService', function () {
it('exists', function () {
require('../');
});
describe('init', function () {
it('initialises only once', function () {
const subscribe = sinon.stub();
const service = new LinkClickTrackingService({
DomainEvents: {
subscribe
}
});
service.init();
assert.ok(subscribe.calledOnce);
service.init();
assert.ok(subscribe.calledOnce);
});
});
describe('getLinks', function () {
it('passes call to postLinkRepository', async function () {
const getAll = sinon.stub().resolves(['test']);
const service = new LinkClickTrackingService({
postLinkRepository: {
getAll
}
});
const links = await service.getLinks({filter: 'post_id:1'});
// Check called with filter
assert.ok(getAll.calledOnceWithExactly({filter: 'post_id:1'}));
// Check returned value
assert.deepEqual(links, ['test']);
});
});
describe('addRedirectToUrl', function () {
it('Creates a redirect', async function () {
const getSlugUrl = sinon.stub().resolves(new URL('https://example.com/r/uniqueslug'));
const save = sinon.stub().resolves();
const linkId = new ObjectID();
const addRedirect = sinon.stub().resolves({link_id: linkId, to: new URL('https://example.com/destination'), from: new URL('https://example.com/r/uniqueslug')});
const service = new LinkClickTrackingService({
linkRedirectService: {
getSlugUrl,
addRedirect
},
postLinkRepository: {
save
}
});
const postId = new ObjectID().toHexString();
const updatedUrl = await service.addRedirectToUrl(new URL('https://example.com/destination'), {id: postId});
assert.equal(updatedUrl.toString(), 'https://example.com/r/uniqueslug');
// Check getSlugUrl called
assert(getSlugUrl.calledOnce);
// Check save called
assert(
save.calledOnceWithExactly(
new PostLink({
post_id: postId,
link_id: linkId
})
)
);
});
});
describe('addTrackingToUrl', function () {
it('Creates a redirect', async function () {
const getSlugUrl = sinon.stub().resolves(new URL('https://example.com/r/uniqueslug'));
const save = sinon.stub().resolves();
const linkId = new ObjectID();
const addRedirect = sinon.stub().resolves({link_id: linkId, to: new URL('https://example.com/destination'), from: new URL('https://example.com/r/uniqueslug')});
const service = new LinkClickTrackingService({
linkRedirectService: {
getSlugUrl,
addRedirect
},
postLinkRepository: {
save
}
});
const postId = new ObjectID().toHexString();
const updatedUrl = await service.addTrackingToUrl(new URL('https://example.com/destination'), {id: postId}, '123');
assert.equal(updatedUrl.toString(), 'https://example.com/r/uniqueslug?m=123');
// Check getSlugUrl called
assert(getSlugUrl.calledOnce);
// Check save called
assert(
save.calledOnceWithExactly(
new PostLink({
post_id: postId,
link_id: linkId
})
)
);
});
});
describe('subscribe', function () {
it('Ignores redirects without a member id', async function () {
const event = RedirectEvent.create({
url: new URL('https://example.com/destination'),
link: {}
});
const save = sinon.stub().resolves();
const service = new LinkClickTrackingService({
DomainEvents: {
subscribe: (eventType, callback) => {
assert.equal(eventType, RedirectEvent);
callback(event);
}
},
linkClickRepository: {
save
}
});
service.subscribe();
assert(!save.called);
});
it('Tracks redirects with a member id', async function () {
const linkId = new ObjectID();
const event = RedirectEvent.create({
url: new URL('https://example.com/destination?m=memberId'),
link: {
link_id: linkId
}
});
const save = sinon.stub().resolves();
const service = new LinkClickTrackingService({
DomainEvents: {
subscribe: (eventType, callback) => {
assert.equal(eventType, RedirectEvent);
callback(event);
}
},
linkClickRepository: {
save
}
});
service.subscribe();
assert(save.calledOnce);
assert.equal(save.firstCall.args[0].member_uuid, 'memberId');
assert.equal(save.firstCall.args[0].link_id, linkId);
});
});
describe('bulkEdit', function () {
it('returns the result of updating links', async function () {
const service = new LinkClickTrackingService({
urlUtils: {
absoluteToTransformReady: (d) => {
return d;
},
isSiteUrl: sinon.stub().returns(true)
},
postLinkRepository: {
updateLinks: sinon.stub().resolves({
successful: 0,
unsuccessful: 0,
errors: [],
unsuccessfulData: []
})
},
linkRedirectService: {
getFilteredIds: sinon.stub().resolves([])
}
});
const options = {
filter: `post_id:1+to:'https://test.com'`
};
const result = await service.bulkEdit({
action: 'updateLink',
meta: {
link: {to: 'https://example.com'}
}
}, options);
should(result).eql({
successful: 0,
unsuccessful: 0,
errors: [],
unsuccessfulData: []
});
});
});
});