2016-11-08 04:05:04 +11:00
|
|
|
import { cloneDeep } from 'lodash'
|
2016-11-14 08:40:33 +11:00
|
|
|
import { defaultState, mutations, findMaxId, prepareStatus } from '../../../../src/modules/statuses.js'
|
2016-11-08 04:05:04 +11:00
|
|
|
|
2016-11-08 04:36:11 +11:00
|
|
|
const makeMockStatus = ({id, text}) => {
|
2016-11-08 04:05:04 +11:00
|
|
|
return {
|
|
|
|
id,
|
|
|
|
name: 'status',
|
2016-11-08 04:36:11 +11:00
|
|
|
text: text || `Text number ${id}`,
|
2016-11-08 04:05:04 +11:00
|
|
|
fave_num: 0,
|
|
|
|
uri: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-14 08:40:33 +11:00
|
|
|
describe('Statuses.prepareStatus', () => {
|
|
|
|
it('sets nsfw for statuses with the #nsfw tag', () => {
|
|
|
|
const safe = makeMockStatus({id: 1, text: 'Hello oniichan'})
|
|
|
|
const nsfw = makeMockStatus({id: 1, text: 'Hello oniichan #nsfw'})
|
|
|
|
|
|
|
|
expect(prepareStatus(safe).nsfw).to.eq(false)
|
|
|
|
expect(prepareStatus(nsfw).nsfw).to.eq(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('leaves existing nsfw settings alone', () => {
|
|
|
|
const nsfw = makeMockStatus({id: 1, text: 'Hello oniichan #nsfw'})
|
|
|
|
nsfw.nsfw = false
|
|
|
|
|
|
|
|
expect(prepareStatus(nsfw).nsfw).to.eq(false)
|
|
|
|
})
|
2016-11-14 08:54:49 +11:00
|
|
|
|
|
|
|
it('sets the created_at_parsed property', () => {
|
|
|
|
const status = makeMockStatus({id: 1})
|
|
|
|
status.created_at = ''
|
|
|
|
expect(status.created_at_parsed).to.eq(undefined)
|
|
|
|
|
|
|
|
const prepared = prepareStatus(status)
|
|
|
|
expect(prepared.created_at_parsed).to.not.eq(undefined)
|
|
|
|
})
|
2016-11-14 08:40:33 +11:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('Statuses.findMaxId', () => {
|
2016-11-14 08:09:27 +11:00
|
|
|
it('returns the largest id in any of the given arrays', () => {
|
|
|
|
const statusesOne = [{ id: 100 }, { id: 2 }]
|
|
|
|
const statusesTwo = [{ id: 3 }]
|
|
|
|
|
|
|
|
const maxId = findMaxId(statusesOne, statusesTwo)
|
|
|
|
expect(maxId).to.eq(100)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns undefined for empty arrays', () => {
|
|
|
|
const maxId = findMaxId([], [])
|
|
|
|
expect(maxId).to.eq(undefined)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-11-08 04:05:04 +11:00
|
|
|
describe('The Statuses module', () => {
|
|
|
|
it('adds the status to allStatuses and to the given timeline', () => {
|
|
|
|
const state = cloneDeep(defaultState)
|
|
|
|
const status = makeMockStatus({id: 1})
|
|
|
|
|
|
|
|
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([])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('adds the status to allStatuses and to the given timeline, directly visible', () => {
|
|
|
|
const state = cloneDeep(defaultState)
|
|
|
|
const status = makeMockStatus({id: 1})
|
|
|
|
|
|
|
|
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-08 04:36:11 +11:00
|
|
|
it('splits retweets from their status and links them', () => {
|
|
|
|
const state = cloneDeep(defaultState)
|
|
|
|
const status = makeMockStatus({id: 1})
|
|
|
|
const retweet = makeMockStatus({id: 2})
|
|
|
|
const modStatus = makeMockStatus({id: 1, text: 'something else'})
|
|
|
|
|
|
|
|
retweet.retweeted_status = status
|
|
|
|
|
2016-11-08 08:09:34 +11: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)
|
|
|
|
expect(state.allStatuses).to.eql([status, retweet])
|
2016-11-08 04:36:11 +11:00
|
|
|
|
|
|
|
// It refers to the modified status.
|
|
|
|
mutations.addNewStatuses(state, { statuses: [modStatus], timeline: 'public' })
|
|
|
|
expect(state.allStatuses).to.eql([retweet, modStatus])
|
|
|
|
expect(retweet.retweeted_status).to.eql(modStatus)
|
|
|
|
})
|
|
|
|
|
2016-11-08 04:05:04 +11:00
|
|
|
it('replaces existing statuses with the same id', () => {
|
|
|
|
const state = cloneDeep(defaultState)
|
|
|
|
const status = makeMockStatus({id: 1})
|
|
|
|
const modStatus = makeMockStatus({id: 1, text: 'something else'})
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
expect(state.allStatuses[0]).to.equal(modStatus)
|
|
|
|
})
|
|
|
|
|
2016-11-14 03:59:35 +11:00
|
|
|
it('replaces existing statuses with the same id, coming from a retweet', () => {
|
|
|
|
const state = cloneDeep(defaultState)
|
|
|
|
const status = makeMockStatus({id: 1})
|
|
|
|
const modStatus = makeMockStatus({id: 1, text: 'something else'})
|
|
|
|
const retweet = makeMockStatus({id: 2})
|
|
|
|
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)
|
|
|
|
expect(state.allStatuses).to.have.length(2)
|
|
|
|
expect(state.allStatuses[0]).to.equal(modStatus)
|
|
|
|
})
|
|
|
|
|
2016-11-08 04:05:04 +11:00
|
|
|
it('handles favorite actions', () => {
|
|
|
|
const state = cloneDeep(defaultState)
|
|
|
|
const status = makeMockStatus({id: 1})
|
|
|
|
|
|
|
|
const favorite = {
|
|
|
|
id: 2,
|
|
|
|
is_post_verb: false,
|
2016-11-14 08:09:27 +11:00
|
|
|
in_reply_to_status_id: '1', // The API uses strings here...
|
2016-11-08 04:05:04 +11:00
|
|
|
uri: 'tag:shitposter.club,2016-08-21:fave:3895:note:773501:2016-08-21T16:52:15+00:00',
|
|
|
|
text: 'a favorited something by b'
|
|
|
|
}
|
|
|
|
|
|
|
|
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-14 08:09:27 +11:00
|
|
|
expect(state.timelines.public.maxId).to.eq(favorite.id)
|
2016-11-08 04:05:04 +11:00
|
|
|
|
|
|
|
// Adding again shouldn't change anything
|
|
|
|
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)
|
|
|
|
})
|
|
|
|
})
|