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

205 lines
4.2 KiB
JavaScript
Raw Normal View History

2018-12-15 04:16:44 +01:00
import { mount, createLocalVue } from '@vue/test-utils'
import Vuex from 'vuex'
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 localVue = createLocalVue()
localVue.use(Vuex)
const mutations = {
clearTimeline: () => {},
setError: () => {}
2018-12-15 04:16:44 +01:00
}
const actions = {
fetchUser: () => {},
fetchUserByScreenName: () => {}
}
const testGetters = {
findUser: state => getters.findUser(state.users),
mergedConfig: state => ({
colors: '',
highlight: {},
customTheme: {
colors: []
}
})
}
const localUser = {
id: 100,
is_local: true,
screen_name: 'testUser'
}
const extUser = {
id: 100,
is_local: false,
screen_name: 'testUser@test.instance'
}
2018-12-16 23:53:21 +01:00
const externalProfileStore = new Vuex.Store({
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 },
users: [extUser]
2018-12-15 04:16:44 +01:00
}
}
})
2018-12-16 23:53:21 +01:00
const localProfileStore = new Vuex.Store({
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, 'testuser': localUser },
users: [localUser]
2018-12-16 23:53:21 +01:00
}
}
})
describe('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, {
localVue,
2018-12-16 23:53:21 +01:00
store: externalProfileStore,
2018-12-15 04:16:44 +01:00
mocks: {
$route: {
params: { id: 100 },
2018-12-15 04:16:44 +01:00
name: 'external-user-profile'
},
$t: (msg) => msg
}
})
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, {
localVue,
store: localProfileStore,
mocks: {
$route: {
params: { name: 'testUser' },
2018-12-16 23:53:21 +01:00
name: 'user-profile'
},
$t: (msg) => msg
}
})
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
})