2019-03-26 16:44:40 +01:00
|
|
|
import { Response, Status, Account, Application } from 'megalodon'
|
|
|
|
import mockedMegalodon from '~/spec/mock/megalodon'
|
|
|
|
import { createLocalVue } from '@vue/test-utils'
|
|
|
|
import Vuex from 'vuex'
|
|
|
|
import Home from '~/src/renderer/store/TimelineSpace/Contents/Home'
|
|
|
|
|
|
|
|
jest.mock('megalodon')
|
|
|
|
|
|
|
|
const account: Account = {
|
|
|
|
id: 1,
|
2019-04-03 15:15:46 +02:00
|
|
|
username: 'h3poteto',
|
|
|
|
acct: 'h3poteto@pleroma.io',
|
|
|
|
display_name: 'h3poteto',
|
2019-03-26 16:44:40 +01:00
|
|
|
locked: false,
|
2019-04-03 15:15:46 +02:00
|
|
|
created_at: '2019-03-26T21:30:32',
|
2019-03-26 16:44:40 +01:00
|
|
|
followers_count: 10,
|
|
|
|
following_count: 10,
|
|
|
|
statuses_count: 100,
|
2019-04-03 15:15:46 +02:00
|
|
|
note: 'engineer',
|
|
|
|
url: 'https://pleroma.io',
|
|
|
|
avatar: '',
|
|
|
|
avatar_static: '',
|
|
|
|
header: '',
|
|
|
|
header_static: '',
|
2019-03-26 16:44:40 +01:00
|
|
|
emojis: [],
|
|
|
|
moved: null,
|
|
|
|
fields: null,
|
2019-04-03 15:15:46 +02:00
|
|
|
bot: false
|
2019-03-26 16:44:40 +01:00
|
|
|
}
|
|
|
|
const status1: Status = {
|
|
|
|
id: 1,
|
2019-04-03 15:15:46 +02:00
|
|
|
uri: 'http://example.com',
|
|
|
|
url: 'http://example.com',
|
2019-03-26 16:44:40 +01:00
|
|
|
account: account,
|
|
|
|
in_reply_to_id: null,
|
|
|
|
in_reply_to_account_id: null,
|
|
|
|
reblog: null,
|
2019-04-03 15:15:46 +02:00
|
|
|
content: 'hoge',
|
|
|
|
created_at: '2019-03-26T21:40:32',
|
2019-03-26 16:44:40 +01:00
|
|
|
emojis: [],
|
|
|
|
replies_count: 0,
|
|
|
|
reblogs_count: 0,
|
|
|
|
favourites_count: 0,
|
|
|
|
reblogged: null,
|
|
|
|
favourited: null,
|
|
|
|
muted: null,
|
|
|
|
sensitive: false,
|
2019-04-03 15:15:46 +02:00
|
|
|
spoiler_text: '',
|
2019-03-26 16:44:40 +01:00
|
|
|
visibility: 'public',
|
|
|
|
media_attachments: [],
|
|
|
|
mentions: [],
|
|
|
|
tags: [],
|
|
|
|
card: null,
|
|
|
|
application: {
|
2019-04-03 15:15:46 +02:00
|
|
|
name: 'Web'
|
2019-03-26 16:44:40 +01:00
|
|
|
} as Application,
|
|
|
|
language: null,
|
|
|
|
pinned: null
|
|
|
|
}
|
|
|
|
const status2: Status = {
|
|
|
|
id: 2,
|
2019-04-03 15:15:46 +02:00
|
|
|
uri: 'http://example.com',
|
|
|
|
url: 'http://example.com',
|
2019-03-26 16:44:40 +01:00
|
|
|
account: account,
|
|
|
|
in_reply_to_id: null,
|
|
|
|
in_reply_to_account_id: null,
|
|
|
|
reblog: null,
|
2019-04-03 15:15:46 +02:00
|
|
|
content: 'fuga',
|
|
|
|
created_at: '2019-03-26T21:40:32',
|
2019-03-26 16:44:40 +01:00
|
|
|
emojis: [],
|
|
|
|
replies_count: 0,
|
|
|
|
reblogs_count: 0,
|
|
|
|
favourites_count: 0,
|
|
|
|
reblogged: null,
|
|
|
|
favourited: null,
|
|
|
|
muted: null,
|
|
|
|
sensitive: false,
|
2019-04-03 15:15:46 +02:00
|
|
|
spoiler_text: '',
|
2019-03-26 16:44:40 +01:00
|
|
|
visibility: 'public',
|
|
|
|
media_attachments: [],
|
|
|
|
mentions: [],
|
|
|
|
tags: [],
|
|
|
|
card: null,
|
|
|
|
application: {
|
2019-04-03 15:15:46 +02:00
|
|
|
name: 'Web'
|
2019-03-26 16:44:40 +01:00
|
|
|
} as Application,
|
|
|
|
language: null,
|
|
|
|
pinned: null
|
|
|
|
}
|
|
|
|
|
|
|
|
let state: any = () => {
|
|
|
|
return {
|
|
|
|
lazyLoading: false,
|
|
|
|
heading: true,
|
|
|
|
timeline: [],
|
|
|
|
unreadTimeline: [],
|
|
|
|
filter: '',
|
|
|
|
showReblogs: true,
|
|
|
|
showReplies: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const initStore = () => {
|
|
|
|
return {
|
|
|
|
namespaced: true,
|
|
|
|
state: state(),
|
|
|
|
actions: Home.actions,
|
|
|
|
mutations: Home.mutations
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const timelineState = {
|
|
|
|
namespaced: true,
|
|
|
|
state: {
|
|
|
|
account: {
|
|
|
|
accessToken: 'token',
|
|
|
|
baseURL: 'http://localhost'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('Home', () => {
|
|
|
|
let store
|
|
|
|
let localVue
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
localVue = createLocalVue()
|
|
|
|
localVue.use(Vuex)
|
|
|
|
store = new Vuex.Store({
|
|
|
|
modules: {
|
|
|
|
Home: initStore(),
|
|
|
|
TimelineSpace: timelineState
|
|
|
|
}
|
|
|
|
})
|
|
|
|
mockedMegalodon.mockClear()
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('fetchTimeline', () => {
|
|
|
|
it('should be updated', async () => {
|
|
|
|
const mockClient = {
|
|
|
|
get: (_path: string, _params: object) => {
|
2019-04-03 15:15:46 +02:00
|
|
|
return new Promise<Response<Status[]>>(resolve => {
|
2019-04-02 16:24:06 +02:00
|
|
|
const res: Response<Status[]> = {
|
2019-03-26 16:44:40 +01:00
|
|
|
data: [
|
|
|
|
status1
|
|
|
|
],
|
|
|
|
status: 200,
|
2019-04-03 15:15:46 +02:00
|
|
|
statusText: 'OK',
|
2019-03-26 16:44:40 +01:00
|
|
|
headers: {}
|
|
|
|
}
|
|
|
|
resolve(res)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mockedMegalodon.mockImplementation(() => mockClient)
|
|
|
|
const statuses = await store.dispatch('Home/fetchTimeline')
|
|
|
|
expect(statuses).toEqual([
|
|
|
|
status1
|
|
|
|
])
|
|
|
|
expect(store.state.Home.timeline).toEqual([
|
|
|
|
status1
|
|
|
|
])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('lazyFetchTimeline', () => {
|
|
|
|
describe('last is null', () => {
|
|
|
|
it('should not be updated', async () => {
|
|
|
|
const result = await store.dispatch('Home/lazyFetchTimeline', null)
|
|
|
|
expect(result).toEqual(null)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
describe('success', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
state = () => {
|
|
|
|
return {
|
|
|
|
lazyLoading: false,
|
|
|
|
heading: true,
|
|
|
|
timeline: [status1],
|
|
|
|
unreadTimeline: [],
|
|
|
|
filter: '',
|
|
|
|
showReblogs: true,
|
|
|
|
showReplies: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
it('should be updated', async () => {
|
|
|
|
const mockClient = {
|
|
|
|
get: (_path: string, _params: object) => {
|
2019-04-03 15:15:46 +02:00
|
|
|
return new Promise<Response<[Status]>>(resolve => {
|
2019-03-26 16:44:40 +01:00
|
|
|
const res: Response<[Status]> = {
|
|
|
|
data: [
|
|
|
|
status2
|
|
|
|
],
|
|
|
|
status: 200,
|
|
|
|
statusText: 'OK',
|
|
|
|
headers: {}
|
|
|
|
}
|
|
|
|
resolve(res)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mockedMegalodon.mockImplementation(() => mockClient)
|
|
|
|
await store.dispatch('Home/lazyFetchTimeline', { id: 20 })
|
|
|
|
expect(store.state.Home.lazyLoading).toEqual(false)
|
|
|
|
expect(store.state.Home.timeline).toEqual([
|
|
|
|
status1,
|
|
|
|
status2
|
|
|
|
])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|