2022-02-23 21:13:42 +03:00
// Switch these lines once there are useful utils
// const testUtils = require('./utils');
require ( './utils' ) ;
const assert = require ( 'assert' ) ;
const sinon = require ( 'sinon' ) ;
2022-02-28 16:36:58 +03:00
const { LastSeenAtUpdater } = require ( '../' ) ;
2022-02-23 21:13:42 +03:00
const DomainEvents = require ( '@tryghost/domain-events' ) ;
2022-07-25 18:35:46 +03:00
const { MemberPageViewEvent , MemberCommentEvent } = require ( '@tryghost/member-events' ) ;
2022-02-28 16:36:58 +03:00
const moment = require ( 'moment' ) ;
2022-02-23 21:13:42 +03:00
describe ( 'LastSeenAtUpdater' , function ( ) {
2022-05-02 21:07:30 +03:00
it ( 'Calls updateLastSeenAt on MemberPageViewEvents' , async function ( ) {
2022-02-28 16:36:58 +03:00
const now = moment ( '2022-02-28T18:00:00Z' ) . utc ( ) ;
const previousLastSeen = moment ( '2022-02-27T23:00:00Z' ) . toISOString ( ) ;
2022-05-02 21:07:30 +03:00
const stub = sinon . stub ( ) . resolves ( ) ;
2022-03-01 12:28:45 +03:00
const settingsCache = sinon . stub ( ) . returns ( 'Etc/UTC' ) ;
2022-05-02 21:07:30 +03:00
const updater = new LastSeenAtUpdater ( {
2022-03-01 12:28:45 +03:00
services : {
settingsCache : {
get : settingsCache
2022-03-01 19:12:59 +03:00
} ,
2022-03-01 19:19:34 +03:00
domainEvents : DomainEvents
2022-05-02 21:07:30 +03:00
} ,
async getMembersApi ( ) {
return {
members : {
update : stub
}
} ;
2022-03-01 12:28:45 +03:00
}
} ) ;
2022-05-02 21:07:30 +03:00
sinon . stub ( updater , 'updateLastSeenAt' ) ;
2022-03-01 12:28:45 +03:00
DomainEvents . dispatch ( MemberPageViewEvent . create ( { memberId : '1' , memberLastSeenAt : previousLastSeen , url : '/' } , now . toDate ( ) ) ) ;
2022-05-02 21:07:30 +03:00
assert ( updater . updateLastSeenAt . calledOnceWithExactly ( '1' , previousLastSeen , now . toDate ( ) ) ) ;
2022-03-01 12:28:45 +03:00
} ) ;
2022-07-25 18:35:46 +03:00
it ( 'Calls updateLastCommentedAt on MemberCommentEvents' , async function ( ) {
const now = moment ( '2022-02-28T18:00:00Z' ) . utc ( ) ;
const stub = sinon . stub ( ) . resolves ( ) ;
const settingsCache = sinon . stub ( ) . returns ( 'Etc/UTC' ) ;
const updater = new LastSeenAtUpdater ( {
services : {
settingsCache : {
get : settingsCache
} ,
domainEvents : DomainEvents
} ,
async getMembersApi ( ) {
return {
members : {
update : stub
}
} ;
}
} ) ;
sinon . stub ( updater , 'updateLastCommentedAt' ) ;
DomainEvents . dispatch ( MemberCommentEvent . create ( { memberId : '1' } , now . toDate ( ) ) ) ;
assert ( updater . updateLastCommentedAt . calledOnceWithExactly ( '1' , now . toDate ( ) ) ) ;
} ) ;
2022-03-01 12:28:45 +03:00
it ( 'works correctly on another timezone (not updating last_seen_at)' , async function ( ) {
const now = moment ( '2022-02-28T04:00:00Z' ) . utc ( ) ;
const previousLastSeen = moment ( '2022-02-27T20:00:00Z' ) . toISOString ( ) ;
2022-05-02 21:07:30 +03:00
const stub = sinon . stub ( ) . resolves ( ) ;
2022-03-01 12:28:45 +03:00
const settingsCache = sinon . stub ( ) . returns ( 'Asia/Bangkok' ) ;
2022-05-02 21:07:30 +03:00
const updater = new LastSeenAtUpdater ( {
2022-03-01 12:28:45 +03:00
services : {
settingsCache : {
get : settingsCache
2022-03-01 19:12:59 +03:00
} ,
2022-03-01 19:19:34 +03:00
domainEvents : DomainEvents
2022-05-02 21:07:30 +03:00
} ,
async getMembersApi ( ) {
return {
members : {
update : stub
}
} ;
2022-03-01 12:28:45 +03:00
}
} ) ;
2022-05-02 21:07:30 +03:00
await updater . updateLastSeenAt ( '1' , previousLastSeen , now . toDate ( ) ) ;
assert ( stub . notCalled , 'The LastSeenAtUpdater should attempt a member update when the new timestamp is within the same day in the publication timezone.' ) ;
2022-03-01 12:28:45 +03:00
} ) ;
2022-07-25 18:35:46 +03:00
it ( 'works correctly on another timezone (not updating last_commented_at)' , async function ( ) {
const now = moment ( '2022-02-28T04:00:00Z' ) . utc ( ) ;
const previousLastSeen = moment ( '2022-02-27T20:00:00Z' ) . toISOString ( ) ;
const stub = sinon . stub ( ) . resolves ( ) ;
const settingsCache = sinon . stub ( ) . returns ( 'Asia/Bangkok' ) ;
const updater = new LastSeenAtUpdater ( {
services : {
settingsCache : {
get : settingsCache
} ,
domainEvents : DomainEvents
} ,
async getMembersApi ( ) {
return {
members : {
update : stub ,
get : ( ) => {
return {
id : '1' ,
get : ( ) => {
return previousLastSeen ;
}
} ;
}
}
} ;
}
} ) ;
await updater . updateLastCommentedAt ( '1' , now . toDate ( ) ) ;
assert ( stub . notCalled , 'The LastSeenAtUpdater should attempt a member update when the new timestamp is within the same day in the publication timezone.' ) ;
} ) ;
2022-03-01 12:28:45 +03:00
it ( 'works correctly on another timezone (updating last_seen_at)' , async function ( ) {
const now = moment ( '2022-02-28T04:00:00Z' ) . utc ( ) ;
const previousLastSeen = moment ( '2022-02-27T20:00:00Z' ) . toISOString ( ) ;
2022-05-02 21:07:30 +03:00
const stub = sinon . stub ( ) . resolves ( ) ;
2022-03-01 12:28:45 +03:00
const settingsCache = sinon . stub ( ) . returns ( 'Europe/Paris' ) ;
2022-05-02 21:07:30 +03:00
const updater = new LastSeenAtUpdater ( {
2022-03-01 12:28:45 +03:00
services : {
settingsCache : {
get : settingsCache
2022-03-01 19:12:59 +03:00
} ,
2022-03-01 19:19:34 +03:00
domainEvents : DomainEvents
2022-05-02 21:07:30 +03:00
} ,
async getMembersApi ( ) {
return {
members : {
update : stub
}
} ;
2022-02-23 21:13:42 +03:00
}
} ) ;
2022-05-02 21:07:30 +03:00
await updater . updateLastSeenAt ( '1' , previousLastSeen , now . toDate ( ) ) ;
assert ( stub . calledOnceWithExactly ( {
2022-02-28 16:36:58 +03:00
last _seen _at : now . format ( 'YYYY-MM-DD HH:mm:ss' )
2022-02-23 21:13:42 +03:00
} , {
id : '1'
} ) , 'The LastSeenAtUpdater should attempt a member update with the current date.' ) ;
} ) ;
it ( 'Doesn\'t update when last_seen_at is too recent' , async function ( ) {
2022-02-28 16:36:58 +03:00
const now = moment ( '2022-02-28T18:00:00Z' ) ;
const previousLastSeen = moment ( '2022-02-28T00:00:00Z' ) . toISOString ( ) ;
2022-05-02 21:07:30 +03:00
const stub = sinon . stub ( ) . resolves ( ) ;
2022-03-01 12:28:45 +03:00
const settingsCache = sinon . stub ( ) . returns ( 'Etc/UTC' ) ;
2022-05-02 21:07:30 +03:00
const updater = new LastSeenAtUpdater ( {
2022-03-01 12:28:45 +03:00
services : {
settingsCache : {
get : settingsCache
2022-03-01 19:12:59 +03:00
} ,
2022-03-01 19:19:34 +03:00
domainEvents : DomainEvents
2022-05-02 21:07:30 +03:00
} ,
async getMembersApi ( ) {
return {
members : {
update : stub
}
} ;
2022-02-23 21:13:42 +03:00
}
} ) ;
2022-05-02 21:07:30 +03:00
await updater . updateLastSeenAt ( '1' , previousLastSeen , now . toDate ( ) ) ;
assert ( stub . notCalled , 'The LastSeenAtUpdater should\'t update a member when the previous last_seen_at is close to the event timestamp.' ) ;
2022-02-23 21:13:42 +03:00
} ) ;
2022-07-25 18:35:46 +03:00
it ( 'Doesn\'t update when last_commented_at is too recent' , async function ( ) {
const now = moment ( '2022-02-28T18:00:00Z' ) ;
const previousLastSeen = moment ( '2022-02-28T00:00:00Z' ) . toISOString ( ) ;
const stub = sinon . stub ( ) . resolves ( ) ;
const settingsCache = sinon . stub ( ) . returns ( 'Etc/UTC' ) ;
const updater = new LastSeenAtUpdater ( {
services : {
settingsCache : {
get : settingsCache
} ,
domainEvents : DomainEvents
} ,
async getMembersApi ( ) {
return {
members : {
update : stub ,
get : ( ) => {
return {
id : '1' ,
get : ( ) => {
return previousLastSeen ;
}
} ;
}
}
} ;
}
} ) ;
await updater . updateLastCommentedAt ( '1' , now . toDate ( ) ) ;
assert ( stub . notCalled , 'The LastSeenAtUpdater should\'t update a member when the previous last_seen_at is close to the event timestamp.' ) ;
} ) ;
2022-02-23 21:13:42 +03:00
it ( 'Doesn\'t fire on other events' , async function ( ) {
2022-02-28 16:36:58 +03:00
const now = moment ( '2022-02-28T18:00:00Z' ) ;
2022-05-02 21:07:30 +03:00
const stub = sinon . stub ( ) . resolves ( ) ;
2022-03-01 12:28:45 +03:00
const settingsCache = sinon . stub ( ) . returns ( 'Etc/UTC' ) ;
2022-05-02 21:07:30 +03:00
const updater = new LastSeenAtUpdater ( {
2022-03-01 12:28:45 +03:00
services : {
settingsCache : {
get : settingsCache
2022-03-01 19:12:59 +03:00
} ,
2022-03-01 19:19:34 +03:00
domainEvents : DomainEvents
2022-05-02 21:07:30 +03:00
} ,
async getMembersApi ( ) {
return {
members : {
update : stub
}
} ;
2022-02-23 21:13:42 +03:00
}
} ) ;
2022-05-02 21:07:30 +03:00
await updater . updateLastSeenAt ( '1' , undefined , now . toDate ( ) ) ;
assert ( stub . notCalled , 'The LastSeenAtUpdater should never fire on MemberPageViewEvent events.' ) ;
2022-02-23 21:13:42 +03:00
} ) ;
2022-07-25 18:35:46 +03:00
it ( 'throws if getMembersApi is not passed to LastSeenAtUpdater' , async function ( ) {
const settingsCache = sinon . stub ( ) . returns ( 'Asia/Bangkok' ) ;
should . throws ( ( ) => {
new LastSeenAtUpdater ( {
services : {
settingsCache : {
get : settingsCache
} ,
domainEvents : DomainEvents
}
} ) ;
} , 'Missing option getMembersApi' ) ;
} ) ;
2022-02-23 21:13:42 +03:00
} ) ;