pleroma-fe/test/unit/specs/components/user_profile.spec.js

212 lines
4.6 KiB
JavaScript
Raw Normal View History

import { mount } from '@vue/test-utils'
import { createStore } from 'vuex'
2018-12-15 04:16:44 +01:00
import UserProfile from 'src/components/user_profile/user_profile.vue'
import backendInteractorService from 'src/services/backend_interactor_service/backend_interactor_service.js'
import { getters } from 'src/modules/users.js'
2018-12-15 04:16:44 +01:00
const mutations = {
clearTimeline: () => {}
2018-12-15 04:16:44 +01:00
}
const actions = {
fetchUser: () => {},
fetchUserByScreenName: () => {}
}
const testGetters = {
findUser: state => getters.findUser(state.users),
findUserByName: state => getters.findUserByName(state.users),
relationship: state => getters.relationship(state.users),
mergedConfig: state => ({
colors: '',
highlight: {},
customTheme: {
colors: []
}
})
}
const localUser = {
id: 100,
is_local: true,
2021-02-26 15:37:46 +01:00
screen_name: 'testUser',
screen_name_ui: 'testUser'
}
const extUser = {
id: 100,
is_local: false,
2021-02-26 15:37:46 +01:00
screen_name: 'testUser@test.instance',
screen_name_ui: 'testUser@test.instance'
}
const externalProfileStore = createStore({
2018-12-15 04:16:44 +01:00
mutations,
actions,
getters: testGetters,
2018-12-15 04:16:44 +01:00
state: {
api: {
2019-04-28 19:46:01 +02:00
fetchers: {},
2018-12-15 04:16:44 +01:00
backendInteractor: backendInteractorService('')
},
2018-12-17 00:45:40 +01:00
interface: {
browserSupport: ''
},
2018-12-15 04:16:44 +01:00
instance: {
hideUserStats: true
},
statuses: {
timelines: {
user: {
statuses: [],
statusesObject: {},
faves: [],
visibleStatuses: [],
visibleStatusesObject: {},
newStatusCount: 0,
maxId: 0,
minVisibleId: 0,
loading: false,
followers: [],
friends: [],
viewing: 'statuses',
userId: 100,
2018-12-15 04:16:44 +01:00
flushMarker: 0
2019-01-26 14:51:07 +01:00
},
media: {
statuses: [],
statusesObject: {},
faves: [],
visibleStatuses: [],
visibleStatusesObject: {},
newStatusCount: 0,
maxId: 0,
minVisibleId: 0,
loading: false,
followers: [],
friends: [],
viewing: 'statuses',
userId: 100,
flushMarker: 0
2018-12-15 04:16:44 +01:00
}
}
},
users: {
currentUser: {
credentials: ''
},
usersObject: { 100: extUser },
usersByNameObject: {},
2020-04-21 23:07:01 +02:00
users: [extUser],
relationships: {}
2018-12-15 04:16:44 +01:00
}
}
})
const localProfileStore = createStore({
2018-12-16 23:53:21 +01:00
mutations,
actions,
getters: testGetters,
2018-12-16 23:53:21 +01:00
state: {
api: {
2019-04-28 19:46:01 +02:00
fetchers: {},
2018-12-16 23:53:21 +01:00
backendInteractor: backendInteractorService('')
},
2018-12-17 00:45:40 +01:00
interface: {
browserSupport: ''
},
2018-12-16 23:53:21 +01:00
config: {
colors: '',
2018-12-17 00:45:40 +01:00
highlight: {},
customTheme: {
colors: []
}
2018-12-16 23:53:21 +01:00
},
instance: {
hideUserStats: true
},
statuses: {
timelines: {
user: {
statuses: [],
statusesObject: {},
faves: [],
visibleStatuses: [],
visibleStatusesObject: {},
newStatusCount: 0,
maxId: 0,
minVisibleId: 0,
loading: false,
followers: [],
friends: [],
2019-01-26 14:51:07 +01:00
viewing: 'statuses',
userId: 100,
flushMarker: 0
},
media: {
statuses: [],
statusesObject: {},
faves: [],
visibleStatuses: [],
visibleStatusesObject: {},
newStatusCount: 0,
maxId: 0,
minVisibleId: 0,
loading: false,
followers: [],
friends: [],
2018-12-16 23:53:21 +01:00
viewing: 'statuses',
userId: 100,
2018-12-16 23:53:21 +01:00
flushMarker: 0
}
}
},
users: {
currentUser: {
credentials: ''
},
usersObject: { 100: localUser },
usersByNameObject: { testuser: localUser },
2020-04-21 23:07:01 +02:00
users: [localUser],
relationships: {}
2018-12-16 23:53:21 +01:00
}
}
})
// https://github.com/vuejs/test-utils/issues/1382
describe.skip('UserProfile', () => {
2018-12-16 23:53:21 +01:00
it('renders external profile', () => {
2018-12-15 04:16:44 +01:00
const wrapper = mount(UserProfile, {
global: {
2022-07-31 11:35:48 +02:00
plugins: [externalProfileStore],
mocks: {
$route: {
params: { id: 100 },
name: 'external-user-profile'
},
$t: (msg) => msg
}
2018-12-15 04:16:44 +01:00
}
})
expect(wrapper.find('.user-screen-name').text()).to.eql('@testUser@test.instance')
2018-12-15 04:16:44 +01:00
})
2018-12-16 23:53:21 +01:00
it('renders local profile', () => {
const wrapper = mount(UserProfile, {
global: {
2022-07-31 11:35:48 +02:00
plugins: [localProfileStore],
mocks: {
$route: {
params: { name: 'testUser' },
name: 'user-profile'
},
$t: (msg) => msg
}
2018-12-16 23:53:21 +01:00
}
})
expect(wrapper.find('.user-screen-name').text()).to.eql('@testUser')
2018-12-16 23:53:21 +01:00
})
2018-12-15 04:16:44 +01:00
})