2019-01-17 16:16:45 +00:00
import { defaultState , mutations , prepareStatus } from '../../../../src/modules/statuses.js'
2016-11-07 17:05:04 +00:00
2017-03-08 16:58:49 +00:00
// eslint-disable-next-line camelcase
2019-01-15 15:39:24 +00:00
const makeMockStatus = ( { id , text , type = 'status' } ) => {
2016-11-07 17:05:04 +00:00
return {
id ,
2019-01-11 00:38:23 +00:00
user : { id : '0' } ,
2016-11-07 17:05:04 +00:00
name : 'status' ,
2016-11-07 17:36:11 +00:00
text : text || ` Text number ${ id } ` ,
2016-11-07 17:05:04 +00:00
fave _num : 0 ,
2016-11-18 18:48:02 +00:00
uri : '' ,
2019-01-15 15:39:24 +00:00
type ,
2016-11-27 18:11:05 +00:00
attentions : [ ]
2016-11-07 17:05:04 +00:00
}
}
2016-11-13 21:40:33 +00:00
describe ( 'Statuses.prepareStatus' , ( ) => {
2016-12-04 17:30:00 +00:00
it ( 'sets deleted flag to false' , ( ) => {
2019-01-11 00:38:23 +00:00
const aStatus = makeMockStatus ( { id : '1' , text : 'Hello oniichan' } )
2016-12-04 17:30:00 +00:00
expect ( prepareStatus ( aStatus ) . deleted ) . to . eq ( false )
} )
2016-11-13 21:40:33 +00:00
} )
2016-11-07 17:05:04 +00:00
describe ( 'The Statuses module' , ( ) => {
it ( 'adds the status to allStatuses and to the given timeline' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
2016-11-07 17:05:04 +00:00
mutations . addNewStatuses ( state , { statuses : [ status ] , timeline : 'public' } )
expect ( state . allStatuses ) . to . eql ( [ status ] )
expect ( state . timelines . public . statuses ) . to . eql ( [ status ] )
expect ( state . timelines . public . visibleStatuses ) . to . eql ( [ ] )
2016-11-18 18:48:02 +00:00
expect ( state . timelines . public . newStatusCount ) . to . equal ( 1 )
2016-11-07 17:05:04 +00:00
} )
2017-02-16 11:51:24 +00:00
it ( 'counts the status as new if it has not been seen on this timeline' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
2017-02-16 11:51:24 +00:00
mutations . addNewStatuses ( state , { statuses : [ status ] , timeline : 'public' } )
mutations . addNewStatuses ( state , { statuses : [ status ] , timeline : 'friends' } )
expect ( state . allStatuses ) . to . eql ( [ status ] )
expect ( state . timelines . public . statuses ) . to . eql ( [ status ] )
expect ( state . timelines . public . visibleStatuses ) . to . eql ( [ ] )
expect ( state . timelines . public . newStatusCount ) . to . equal ( 1 )
expect ( state . allStatuses ) . to . eql ( [ status ] )
expect ( state . timelines . friends . statuses ) . to . eql ( [ status ] )
expect ( state . timelines . friends . visibleStatuses ) . to . eql ( [ ] )
expect ( state . timelines . friends . newStatusCount ) . to . equal ( 1 )
} )
2016-11-24 17:15:34 +00:00
it ( 'add the statuses to allStatuses if no timeline is given' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
2016-11-24 17:15:34 +00:00
mutations . addNewStatuses ( state , { statuses : [ status ] } )
expect ( state . allStatuses ) . to . eql ( [ status ] )
expect ( state . timelines . public . statuses ) . to . eql ( [ ] )
expect ( state . timelines . public . visibleStatuses ) . to . eql ( [ ] )
expect ( state . timelines . public . newStatusCount ) . to . equal ( 0 )
} )
2016-11-07 17:05:04 +00:00
it ( 'adds the status to allStatuses and to the given timeline, directly visible' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
2016-11-07 17:05:04 +00:00
mutations . addNewStatuses ( state , { statuses : [ status ] , showImmediately : true , timeline : 'public' } )
expect ( state . allStatuses ) . to . eql ( [ status ] )
expect ( state . timelines . public . statuses ) . to . eql ( [ status ] )
expect ( state . timelines . public . visibleStatuses ) . to . eql ( [ status ] )
2016-11-18 18:48:02 +00:00
expect ( state . timelines . public . newStatusCount ) . to . equal ( 0 )
} )
2016-11-18 21:25:42 +00:00
it ( 'removes statuses by tag on deletion' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
const otherStatus = makeMockStatus ( { id : '3' } )
2016-11-19 12:08:44 +00:00
status . uri = 'xxx'
2019-01-17 16:27:57 +00:00
const deletion = makeMockStatus ( { id : '2' , type : 'deletion' } )
2016-11-18 21:25:42 +00:00
deletion . text = 'Dolus deleted notice {{tag:gs.smuglo.li,2016-11-18:noticeId=1038007:objectType=note}}.'
2016-11-28 20:25:36 +00:00
deletion . uri = 'xxx'
2016-11-18 21:25:42 +00:00
2017-06-13 10:01:47 +00:00
mutations . addNewStatuses ( state , { statuses : [ status , otherStatus ] , showImmediately : true , timeline : 'public' } )
2016-11-18 21:25:42 +00:00
mutations . addNewStatuses ( state , { statuses : [ deletion ] , showImmediately : true , timeline : 'public' } )
2017-06-13 10:01:47 +00:00
expect ( state . allStatuses ) . to . eql ( [ otherStatus ] )
expect ( state . timelines . public . statuses ) . to . eql ( [ otherStatus ] )
expect ( state . timelines . public . visibleStatuses ) . to . eql ( [ otherStatus ] )
2019-01-11 00:38:23 +00:00
expect ( state . timelines . public . maxId ) . to . eql ( '3' )
2016-11-18 21:25:42 +00:00
} )
2016-11-28 20:25:36 +00:00
it ( 'does not update the maxId when the noIdUpdate flag is set' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
const secondStatus = makeMockStatus ( { id : '2' } )
2016-11-28 20:25:36 +00:00
mutations . addNewStatuses ( state , { statuses : [ status ] , showImmediately : true , timeline : 'public' } )
2019-01-11 00:38:23 +00:00
expect ( state . timelines . public . maxId ) . to . eql ( '1' )
2016-11-28 20:25:36 +00:00
mutations . addNewStatuses ( state , { statuses : [ secondStatus ] , showImmediately : true , timeline : 'public' , noIdUpdate : true } )
expect ( state . timelines . public . statuses ) . to . eql ( [ secondStatus , status ] )
expect ( state . timelines . public . visibleStatuses ) . to . eql ( [ secondStatus , status ] )
2019-01-11 00:38:23 +00:00
expect ( state . timelines . public . maxId ) . to . eql ( '1' )
2016-11-28 20:25:36 +00:00
} )
2016-11-18 18:48:02 +00:00
it ( 'keeps a descending by id order in timeline.visibleStatuses and timeline.statuses' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const nonVisibleStatus = makeMockStatus ( { id : '1' } )
const status = makeMockStatus ( { id : '3' } )
const statusTwo = makeMockStatus ( { id : '2' } )
const statusThree = makeMockStatus ( { id : '4' } )
2017-01-01 17:10:25 +00:00
mutations . addNewStatuses ( state , { statuses : [ nonVisibleStatus ] , showImmediately : false , timeline : 'public' } )
2016-11-18 18:48:02 +00:00
mutations . addNewStatuses ( state , { statuses : [ status ] , showImmediately : true , timeline : 'public' } )
mutations . addNewStatuses ( state , { statuses : [ statusTwo ] , showImmediately : true , timeline : 'public' } )
2019-01-11 00:38:23 +00:00
expect ( state . timelines . public . minVisibleId ) . to . equal ( '2' )
2016-11-18 18:48:02 +00:00
mutations . addNewStatuses ( state , { statuses : [ statusThree ] , showImmediately : true , timeline : 'public' } )
2017-01-01 17:10:25 +00:00
expect ( state . timelines . public . statuses ) . to . eql ( [ statusThree , status , statusTwo , nonVisibleStatus ] )
2016-11-18 18:48:02 +00:00
expect ( state . timelines . public . visibleStatuses ) . to . eql ( [ statusThree , status , statusTwo ] )
2016-11-07 17:05:04 +00:00
} )
2016-11-07 17:36:11 +00:00
it ( 'splits retweets from their status and links them' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-17 16:27:57 +00:00
const status = makeMockStatus ( { id : '1' } )
const retweet = makeMockStatus ( { id : '2' , type : 'retweet' } )
const modStatus = makeMockStatus ( { id : '1' , text : 'something else' } )
2016-11-07 17:36:11 +00:00
retweet . retweeted _status = status
2016-11-07 21:09:34 +00:00
// It adds both statuses, but only the retweet to visible.
mutations . addNewStatuses ( state , { statuses : [ retweet ] , timeline : 'public' , showImmediately : true } )
expect ( state . timelines . public . visibleStatuses ) . to . have . length ( 1 )
2016-11-18 18:48:02 +00:00
expect ( state . timelines . public . statuses ) . to . have . length ( 1 )
expect ( state . allStatuses ) . to . have . length ( 2 )
2019-01-11 00:38:23 +00:00
expect ( state . allStatuses [ 0 ] . id ) . to . equal ( '1' )
expect ( state . allStatuses [ 1 ] . id ) . to . equal ( '2' )
2016-11-07 17:36:11 +00:00
// It refers to the modified status.
mutations . addNewStatuses ( state , { statuses : [ modStatus ] , timeline : 'public' } )
2016-11-18 18:48:02 +00:00
expect ( state . allStatuses ) . to . have . length ( 2 )
2019-01-11 00:38:23 +00:00
expect ( state . allStatuses [ 0 ] . id ) . to . equal ( '1' )
2016-11-18 18:48:02 +00:00
expect ( state . allStatuses [ 0 ] . text ) . to . equal ( modStatus . text )
2019-01-11 00:38:23 +00:00
expect ( state . allStatuses [ 1 ] . id ) . to . equal ( '2' )
2016-11-18 18:48:02 +00:00
expect ( retweet . retweeted _status . text ) . to . eql ( modStatus . text )
2016-11-07 17:36:11 +00:00
} )
2016-11-07 17:05:04 +00:00
it ( 'replaces existing statuses with the same id' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
const modStatus = makeMockStatus ( { id : '1' , text : 'something else' } )
2016-11-07 17:05:04 +00:00
// Add original status
mutations . addNewStatuses ( state , { statuses : [ status ] , showImmediately : true , timeline : 'public' } )
expect ( state . timelines . public . visibleStatuses ) . to . have . length ( 1 )
expect ( state . allStatuses ) . to . have . length ( 1 )
// Add new version of status
mutations . addNewStatuses ( state , { statuses : [ modStatus ] , showImmediately : true , timeline : 'public' } )
expect ( state . timelines . public . visibleStatuses ) . to . have . length ( 1 )
expect ( state . allStatuses ) . to . have . length ( 1 )
2016-11-18 18:48:02 +00:00
expect ( state . allStatuses [ 0 ] . text ) . to . eql ( modStatus . text )
2016-11-07 17:05:04 +00:00
} )
2016-11-13 16:59:35 +00:00
it ( 'replaces existing statuses with the same id, coming from a retweet' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-17 16:27:57 +00:00
const status = makeMockStatus ( { id : '1' } )
const modStatus = makeMockStatus ( { id : '1' , text : 'something else' } )
const retweet = makeMockStatus ( { id : '2' , type : 'retweet' } )
2016-11-13 16:59:35 +00:00
retweet . retweeted _status = modStatus
// Add original status
mutations . addNewStatuses ( state , { statuses : [ status ] , showImmediately : true , timeline : 'public' } )
expect ( state . timelines . public . visibleStatuses ) . to . have . length ( 1 )
expect ( state . allStatuses ) . to . have . length ( 1 )
// Add new version of status
mutations . addNewStatuses ( state , { statuses : [ retweet ] , showImmediately : false , timeline : 'public' } )
expect ( state . timelines . public . visibleStatuses ) . to . have . length ( 1 )
2016-11-18 21:25:42 +00:00
// Don't add the retweet itself if the tweet is visible
expect ( state . timelines . public . statuses ) . to . have . length ( 1 )
2016-11-13 16:59:35 +00:00
expect ( state . allStatuses ) . to . have . length ( 2 )
2016-11-18 18:48:02 +00:00
expect ( state . allStatuses [ 0 ] . text ) . to . eql ( modStatus . text )
2016-11-13 16:59:35 +00:00
} )
2016-11-07 17:05:04 +00:00
it ( 'handles favorite actions' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
2016-11-07 17:05:04 +00:00
const favorite = {
2019-01-17 16:27:57 +00:00
id : '2' ,
2019-01-15 15:39:24 +00:00
type : 'favorite' ,
2016-11-13 21:09:27 +00:00
in _reply _to _status _id : '1' , // The API uses strings here...
2016-11-07 17:05:04 +00:00
uri : 'tag:shitposter.club,2016-08-21:fave:3895:note:773501:2016-08-21T16:52:15+00:00' ,
2016-11-25 15:56:08 +00:00
text : 'a favorited something by b' ,
2019-01-11 00:38:23 +00:00
user : { id : '99' }
2016-11-07 17:05:04 +00:00
}
mutations . addNewStatuses ( state , { statuses : [ status ] , showImmediately : true , timeline : 'public' } )
mutations . addNewStatuses ( state , { statuses : [ favorite ] , showImmediately : true , timeline : 'public' } )
expect ( state . timelines . public . visibleStatuses . length ) . to . eql ( 1 )
expect ( state . timelines . public . visibleStatuses [ 0 ] . fave _num ) . to . eql ( 1 )
2016-11-13 21:09:27 +00:00
expect ( state . timelines . public . maxId ) . to . eq ( favorite . id )
2016-11-25 15:56:08 +00:00
// Adding it again does nothing
mutations . addNewStatuses ( state , { statuses : [ favorite ] , showImmediately : true , timeline : 'public' } )
expect ( state . timelines . public . visibleStatuses . length ) . to . eql ( 1 )
expect ( state . timelines . public . visibleStatuses [ 0 ] . fave _num ) . to . eql ( 1 )
expect ( state . timelines . public . maxId ) . to . eq ( favorite . id )
2018-08-30 13:34:24 +00:00
// If something is favorited by the current user, it also sets the 'favorited' property but does not increment counter to avoid over-counting. Counter is incremented (updated, really) via response to the favorite request.
2016-11-25 15:56:08 +00:00
const user = {
2019-01-11 00:38:23 +00:00
id : '1'
2016-11-25 15:56:08 +00:00
}
const ownFavorite = {
2019-01-17 16:27:57 +00:00
id : '3' ,
2019-01-15 15:39:24 +00:00
type : 'favorite' ,
2016-11-25 15:56:08 +00:00
in _reply _to _status _id : '1' , // The API uses strings here...
uri : 'tag:shitposter.club,2016-08-21:fave:3895:note:773501:2016-08-21T16:52:15+00:00' ,
text : 'a favorited something by b' ,
user
}
mutations . addNewStatuses ( state , { statuses : [ ownFavorite ] , showImmediately : true , timeline : 'public' , user } )
expect ( state . timelines . public . visibleStatuses . length ) . to . eql ( 1 )
2018-08-30 13:34:24 +00:00
expect ( state . timelines . public . visibleStatuses [ 0 ] . fave _num ) . to . eql ( 1 )
2016-11-25 15:56:08 +00:00
expect ( state . timelines . public . visibleStatuses [ 0 ] . favorited ) . to . eql ( true )
2016-11-07 17:05:04 +00:00
} )
2016-11-18 21:55:04 +00:00
2019-01-28 18:15:00 +00:00
it ( 'keeps userId when clearing user timeline' , ( ) => {
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-28 18:15:00 +00:00
state . timelines . user . userId = 123
mutations . clearTimeline ( state , { timeline : 'user' } )
expect ( state . timelines . user . userId ) . to . eql ( 123 )
} )
2016-11-18 21:55:04 +00:00
describe ( 'notifications' , ( ) => {
2017-06-06 13:54:08 +00:00
it ( 'removes a notification when the notice gets removed' , ( ) => {
2019-01-11 00:38:23 +00:00
const user = { id : '1' }
2019-02-28 19:27:47 +00:00
const state = defaultState ( )
2019-01-11 00:38:23 +00:00
const status = makeMockStatus ( { id : '1' } )
const otherStatus = makeMockStatus ( { id : '3' } )
const mentionedStatus = makeMockStatus ( { id : '2' } )
2017-06-06 13:54:08 +00:00
mentionedStatus . attentions = [ user ]
mentionedStatus . uri = 'xxx'
2017-06-13 10:01:47 +00:00
otherStatus . attentions = [ user ]
2017-06-06 13:54:08 +00:00
2019-01-17 16:27:57 +00:00
const deletion = makeMockStatus ( { id : '4' , type : 'deletion' } )
2017-06-06 13:54:08 +00:00
deletion . text = 'Dolus deleted notice {{tag:gs.smuglo.li,2016-11-18:noticeId=1038007:objectType=note}}.'
deletion . uri = 'xxx'
2017-06-13 10:01:47 +00:00
mutations . addNewStatuses ( state , { statuses : [ status , otherStatus ] , user } )
2018-08-16 11:46:05 +00:00
mutations . addNewNotifications (
state ,
{
notifications : [ {
2019-01-17 16:27:57 +00:00
from _profile : { id : '2' } ,
id : '998' ,
2019-01-15 15:39:24 +00:00
type : 'mention' ,
2018-08-16 11:46:05 +00:00
status : otherStatus ,
2019-01-15 15:39:24 +00:00
action : otherStatus ,
seen : false
2018-08-16 11:46:05 +00:00
} ]
} )
2017-06-06 13:54:08 +00:00
2018-08-12 11:14:34 +00:00
expect ( state . notifications . data . length ) . to . eql ( 1 )
2018-08-16 11:46:05 +00:00
mutations . addNewNotifications (
state ,
{
notifications : [ {
2019-01-17 16:27:57 +00:00
from _profile : { id : '2' } ,
id : '999' ,
2019-01-15 15:39:24 +00:00
type : 'mention' ,
2018-08-16 11:46:05 +00:00
status : mentionedStatus ,
2019-01-15 15:39:24 +00:00
action : mentionedStatus ,
seen : false
2018-08-16 11:46:05 +00:00
} ]
} )
2017-06-06 13:54:08 +00:00
mutations . addNewStatuses ( state , { statuses : [ mentionedStatus ] , user } )
2017-06-13 10:01:47 +00:00
expect ( state . allStatuses . length ) . to . eql ( 3 )
2018-08-12 11:14:34 +00:00
expect ( state . notifications . data . length ) . to . eql ( 2 )
expect ( state . notifications . data [ 1 ] . status ) . to . eql ( mentionedStatus )
expect ( state . notifications . data [ 1 ] . action ) . to . eql ( mentionedStatus )
expect ( state . notifications . data [ 1 ] . type ) . to . eql ( 'mention' )
2017-06-06 13:54:08 +00:00
mutations . addNewStatuses ( state , { statuses : [ deletion ] , user } )
2017-06-13 10:01:47 +00:00
expect ( state . allStatuses . length ) . to . eql ( 2 )
2018-08-12 11:14:34 +00:00
expect ( state . notifications . data . length ) . to . eql ( 1 )
2017-06-06 13:54:08 +00:00
} )
2016-11-18 21:55:04 +00:00
} )
2016-11-07 17:05:04 +00:00
} )