Whalebird-desktop-client-ma.../spec/renderer/integration/store/TimelineSpace/Contents/Notifications.spec.ts

294 lines
6.2 KiB
TypeScript
Raw Normal View History

2020-03-15 09:48:02 +01:00
import { Response, Entity } from 'megalodon'
2022-04-25 15:33:49 +02:00
import { createStore, Store } from 'vuex'
import Notifications, { NotificationsState } from '@/store/TimelineSpace/Contents/Notifications'
2022-04-25 15:33:49 +02:00
import { RootState } from '@/store'
2020-03-15 09:48:02 +01:00
const mockClient = {
getNotifications: () => {
return new Promise<Response<Array<Entity.Notification>>>(resolve => {
const res: Response<Array<Entity.Notification>> = {
data: [notification1],
status: 200,
statusText: 'OK',
headers: {}
}
resolve(res)
})
}
}
jest.mock('megalodon', () => ({
2020-09-13 10:24:36 +02:00
...jest.requireActual<object>('megalodon'),
2020-03-15 09:48:02 +01:00
default: jest.fn(() => mockClient),
__esModule: true
}))
2020-03-15 09:48:02 +01:00
const account1: Entity.Account = {
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 account2: Entity.Account = {
id: '2',
username: 'h3poteto',
acct: 'h3poteto@mstdn.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://mstdn.io',
avatar: '',
avatar_static: '',
header: '',
header_static: '',
emojis: [],
moved: null,
fields: null,
bot: false
}
2020-03-15 09:48:02 +01:00
const status1: Entity.Status = {
id: '1',
uri: 'http://example.com',
url: 'http://example.com',
account: account1,
in_reply_to_id: null,
in_reply_to_account_id: null,
reblog: null,
content: 'hoge',
2021-10-02 10:49:11 +02:00
plain_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,
application: {
name: 'Web'
2020-03-15 09:48:02 +01:00
} as Entity.Application,
language: null,
2020-04-22 14:26:25 +02:00
pinned: null,
emoji_reactions: [],
2020-08-31 05:21:30 +02:00
bookmarked: false,
quote: false
}
2020-03-15 09:48:02 +01:00
const status2: Entity.Status = {
id: '2',
uri: 'http://example.com',
url: 'http://example.com',
account: account1,
in_reply_to_id: null,
in_reply_to_account_id: null,
reblog: null,
content: 'hoge',
2021-10-02 10:49:11 +02:00
plain_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,
application: {
name: 'Web'
2020-03-15 09:48:02 +01:00
} as Entity.Application,
language: null,
2020-04-22 14:26:25 +02:00
pinned: null,
emoji_reactions: [],
2020-08-31 05:21:30 +02:00
bookmarked: false,
quote: false
}
2020-03-15 09:48:02 +01:00
const rebloggedStatus: Entity.Status = {
id: '3',
uri: 'http://example.com',
url: 'http://example.com',
account: account1,
in_reply_to_id: null,
in_reply_to_account_id: null,
reblog: status2,
content: 'hoge',
2021-10-02 10:49:11 +02:00
plain_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,
application: {
name: 'Web'
2020-03-15 09:48:02 +01:00
} as Entity.Application,
language: null,
2020-04-22 14:26:25 +02:00
pinned: null,
emoji_reactions: [],
2020-08-31 05:21:30 +02:00
bookmarked: false,
quote: false
}
2020-03-15 09:48:02 +01:00
const notification1: Entity.Notification = {
id: '1',
account: account2,
status: status1,
type: 'favourite',
created_at: '2019-04-01T17:01:32'
}
2020-03-15 09:48:02 +01:00
const notification2: Entity.Notification = {
id: '2',
account: account2,
status: rebloggedStatus,
type: 'mention',
created_at: '2019-04-01T17:01:32'
}
let state = (): NotificationsState => {
return {
lazyLoading: false,
heading: true,
notifications: []
}
}
const initStore = () => {
return {
namespaced: true,
state: state(),
actions: Notifications.actions,
mutations: Notifications.mutations
}
}
2022-04-25 15:33:49 +02:00
const contentsStore = () => ({
namespaced: true,
modules: {
Notifications: initStore()
}
})
const timelineStore = () => ({
namespaced: true,
state: {
account: {
accessToken: 'token',
baseURL: 'http://localhost'
},
timelineSetting: {
useMarker: {
home: false,
2022-03-18 16:46:22 +01:00
notifications: false,
mentions: false
}
}
2022-04-25 15:33:49 +02:00
},
modules: {
Contents: contentsStore()
}
2022-04-25 15:33:49 +02:00
})
const appState = {
namespaced: true,
state: {
proxyConfiguration: false,
useMarkerTimeline: []
}
}
describe('Notifications', () => {
2022-04-25 15:33:49 +02:00
let store: Store<RootState>
beforeEach(() => {
2022-04-25 15:33:49 +02:00
store = createStore({
modules: {
2022-04-25 15:33:49 +02:00
TimelineSpace: timelineStore(),
App: appState
}
})
})
describe('fetchNotifications', () => {
it('should be updated', async () => {
2022-04-25 15:33:49 +02:00
const response = await store.dispatch('TimelineSpace/Contents/Notifications/fetchNotifications')
expect(response).toEqual([notification1])
2022-04-25 15:33:49 +02:00
expect(store.state.TimelineSpace.Contents.Notifications.notifications).toEqual([notification1])
})
})
describe('lazyFetchNotifications', () => {
beforeAll(() => {
state = () => {
return {
lazyLoading: false,
heading: true,
notifications: [notification1]
}
}
})
it('should be updated', async () => {
2020-03-15 09:48:02 +01:00
mockClient.getNotifications = () => {
return new Promise<Response<Array<Entity.Notification>>>(resolve => {
const res: Response<Array<Entity.Notification>> = {
data: [notification2],
status: 200,
statusText: 'OK',
headers: {}
}
resolve(res)
})
}
2022-04-25 15:33:49 +02:00
await store.dispatch('TimelineSpace/Contents/Notifications/lazyFetchNotifications', notification1)
expect(store.state.TimelineSpace.Contents.Notifications.lazyLoading).toEqual(false)
expect(store.state.TimelineSpace.Contents.Notifications.notifications).toEqual([notification1, notification2])
})
})
})