2020-03-15 09:48:02 +01:00
|
|
|
import { Response, Entity } from 'megalodon'
|
2019-06-17 17:51:24 +02:00
|
|
|
import { createLocalVue } from '@vue/test-utils'
|
|
|
|
import Vuex from 'vuex'
|
|
|
|
import Toots, { TootsState } from '@/store/TimelineSpace/Contents/Search/Toots'
|
|
|
|
|
2020-03-15 09:48:02 +01:00
|
|
|
const mockClient = {
|
|
|
|
search: () => {
|
|
|
|
return new Promise<Response<Entity.Results>>(resolve => {
|
|
|
|
const res: Response<Entity.Results> = {
|
|
|
|
data: {
|
|
|
|
accounts: [],
|
|
|
|
statuses: [status],
|
|
|
|
hashtags: []
|
|
|
|
},
|
|
|
|
status: 200,
|
|
|
|
statusText: 'OK',
|
|
|
|
headers: {}
|
|
|
|
}
|
|
|
|
resolve(res)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2019-06-17 17:51:24 +02:00
|
|
|
|
2020-03-15 09:48:02 +01:00
|
|
|
jest.mock('megalodon', () => ({
|
|
|
|
...jest.requireActual('megalodon'),
|
|
|
|
default: jest.fn(() => mockClient),
|
|
|
|
__esModule: true
|
|
|
|
}))
|
|
|
|
|
|
|
|
const account: Entity.Account = {
|
2019-06-17 17:51:24 +02:00
|
|
|
id: '1',
|
|
|
|
username: 'h3poteto',
|
|
|
|
acct: 'h3poteto@pleroma.io',
|
|
|
|
display_name: 'h3poteto',
|
|
|
|
locked: false,
|
|
|
|
created_at: '2019-03-26T21:30:32',
|
|
|
|
followers_count: 10,
|
|
|
|
following_count: 10,
|
|
|
|
statuses_count: 100,
|
|
|
|
note: 'engineer',
|
|
|
|
url: 'https://pleroma.io',
|
|
|
|
avatar: '',
|
|
|
|
avatar_static: '',
|
|
|
|
header: '',
|
|
|
|
header_static: '',
|
|
|
|
emojis: [],
|
|
|
|
moved: null,
|
|
|
|
fields: null,
|
|
|
|
bot: false
|
|
|
|
}
|
|
|
|
|
2020-03-15 09:48:02 +01:00
|
|
|
const status: Entity.Status = {
|
2019-06-17 17:51:24 +02:00
|
|
|
id: '1',
|
|
|
|
uri: 'http://example.com',
|
|
|
|
url: 'http://example.com',
|
|
|
|
account: account,
|
|
|
|
in_reply_to_id: null,
|
|
|
|
in_reply_to_account_id: null,
|
|
|
|
reblog: null,
|
|
|
|
content: 'hoge',
|
|
|
|
created_at: '2019-03-26T21:40:32',
|
|
|
|
emojis: [],
|
|
|
|
replies_count: 0,
|
|
|
|
reblogs_count: 0,
|
|
|
|
favourites_count: 0,
|
|
|
|
reblogged: null,
|
|
|
|
favourited: null,
|
|
|
|
muted: null,
|
|
|
|
sensitive: false,
|
|
|
|
spoiler_text: '',
|
|
|
|
visibility: 'public',
|
|
|
|
media_attachments: [],
|
|
|
|
mentions: [],
|
|
|
|
tags: [],
|
|
|
|
card: null,
|
2019-07-12 18:17:02 +02:00
|
|
|
poll: null,
|
2019-06-17 17:51:24 +02:00
|
|
|
application: {
|
|
|
|
name: 'Web'
|
2020-03-15 09:48:02 +01:00
|
|
|
} as Entity.Application,
|
2019-06-17 17:51:24 +02:00
|
|
|
language: null,
|
|
|
|
pinned: null
|
|
|
|
}
|
|
|
|
|
|
|
|
let state = (): TootsState => {
|
|
|
|
return {
|
|
|
|
results: []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const initStore = () => {
|
|
|
|
return {
|
|
|
|
namespaced: true,
|
|
|
|
state: state(),
|
|
|
|
actions: Toots.actions,
|
|
|
|
mutations: Toots.mutations
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const contentsStore = {
|
|
|
|
namespaced: true,
|
|
|
|
state: {},
|
|
|
|
mutations: {
|
|
|
|
changeLoading: jest.fn()
|
|
|
|
},
|
|
|
|
actions: {}
|
|
|
|
}
|
|
|
|
|
|
|
|
const timelineState = {
|
|
|
|
namespaced: true,
|
|
|
|
modules: {
|
|
|
|
Contents: contentsStore
|
|
|
|
},
|
|
|
|
state: {
|
|
|
|
account: {
|
|
|
|
accessToken: 'token',
|
|
|
|
baseURL: 'http://localhost'
|
2020-03-15 09:48:02 +01:00
|
|
|
},
|
|
|
|
sns: 'mastodon'
|
2019-06-17 17:51:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-27 10:37:43 +01:00
|
|
|
const appState = {
|
|
|
|
namespaced: true,
|
|
|
|
state: {
|
|
|
|
proxyConfiguration: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 17:51:24 +02:00
|
|
|
describe('Search/Account', () => {
|
|
|
|
let store
|
|
|
|
let localVue
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
localVue = createLocalVue()
|
|
|
|
localVue.use(Vuex)
|
|
|
|
store = new Vuex.Store({
|
|
|
|
modules: {
|
|
|
|
Toots: initStore(),
|
2019-10-27 10:37:43 +01:00
|
|
|
TimelineSpace: timelineState,
|
|
|
|
App: appState
|
2019-06-17 17:51:24 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('search', () => {
|
|
|
|
it('should be updated', async () => {
|
|
|
|
await store.dispatch('Toots/search', 'query')
|
|
|
|
expect(store.state.Toots.results).toEqual([status])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|