mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
154 lines
4.3 KiB
JavaScript
154 lines
4.3 KiB
JavaScript
import { mount } from '@vue/test-utils'
|
|
import Vuex from 'vuex'
|
|
|
|
import helpers from '~/storybook/helpers'
|
|
import FollowList from './FollowList.vue'
|
|
|
|
const localVue = global.localVue
|
|
|
|
const stubs = {
|
|
'client-only': true,
|
|
'ds-space': true,
|
|
'nuxt-link': true,
|
|
}
|
|
|
|
const user = {
|
|
...helpers.fakeUser()[0],
|
|
followedByCount: 12,
|
|
followingCount: 15,
|
|
followedBy: helpers.fakeUser(7),
|
|
following: helpers.fakeUser(7),
|
|
}
|
|
|
|
const allConnectionsUser = {
|
|
...user,
|
|
followedBy: [
|
|
...user.followedBy,
|
|
...helpers.fakeUser(user.followedByCount - user.followedBy.length),
|
|
],
|
|
following: [...user.following, ...helpers.fakeUser(user.followingCount - user.following.length)],
|
|
}
|
|
|
|
const noConnectionsUser = {
|
|
...user,
|
|
followedByCount: 0,
|
|
followingCount: 0,
|
|
followedBy: [],
|
|
following: [],
|
|
}
|
|
|
|
describe('FollowList.vue', () => {
|
|
let store, getters
|
|
const Wrapper = (customProps) =>
|
|
mount(FollowList, {
|
|
store,
|
|
propsData: { user, ...customProps },
|
|
mocks: {
|
|
$t: jest.fn((str) => str),
|
|
},
|
|
localVue,
|
|
stubs,
|
|
})
|
|
|
|
beforeAll(() => {
|
|
getters = {
|
|
'auth/user': () => {
|
|
return {}
|
|
},
|
|
'auth/isModerator': () => false,
|
|
}
|
|
})
|
|
|
|
describe('mount', () => {
|
|
beforeAll(() => {
|
|
store = new Vuex.Store({
|
|
getters,
|
|
})
|
|
})
|
|
|
|
describe('given a type', () => {
|
|
describe('of `following`', () => {
|
|
it('uses the `following` data on :user', () => {
|
|
const wrapper = Wrapper({ user, type: 'following' })
|
|
wrapper.find('.base-button').trigger('click')
|
|
|
|
expect(wrapper.vm.allConnectionsCount).toBe(user.followingCount)
|
|
expect(wrapper.findAll('.user-teaser')).toHaveLength(user.following.length)
|
|
expect(wrapper.emitted('fetchAllConnections')).toEqual([['following', user['followingCount']]])
|
|
})
|
|
})
|
|
|
|
describe('of `followedBy`', () => {
|
|
it('uses the `followedBy` data on :user', () => {
|
|
const wrapper = Wrapper({ type: 'followedBy' })
|
|
wrapper.find('.base-button').trigger('click')
|
|
|
|
expect(wrapper.vm.allConnectionsCount).toBe(user.followedByCount)
|
|
expect(wrapper.findAll('.user-teaser')).toHaveLength(user.followedBy.length)
|
|
expect(wrapper.emitted('fetchAllConnections')).toEqual([['followedBy', user['followedByCount']]])
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('given no type', () => {
|
|
it('defaults type to `following`', () => {
|
|
const wrapper = Wrapper()
|
|
expect(wrapper.text()).toContain('profile.network.following')
|
|
})
|
|
})
|
|
|
|
describe('given a user', () => {
|
|
describe('without connections', () => {
|
|
it('displays the followingNobody message', () => {
|
|
const wrapper = Wrapper({ user: noConnectionsUser })
|
|
expect(wrapper.find('.nobody-message').text()).toContain(
|
|
'profile.network.followingNobody',
|
|
)
|
|
})
|
|
|
|
it('displays the followedByNobody message', () => {
|
|
const wrapper = Wrapper({ user: noConnectionsUser, type: 'followedBy' })
|
|
expect(wrapper.find('.nobody-message').text()).toContain(
|
|
'profile.network.followedByNobody',
|
|
)
|
|
})
|
|
})
|
|
|
|
describe('with up to 7 loaded connections', () => {
|
|
let wrapper
|
|
beforeAll(() => {
|
|
wrapper = Wrapper()
|
|
})
|
|
|
|
it(`renders the connections`, () => {
|
|
expect(wrapper.findAll('.user-teaser')).toHaveLength(user.following.length)
|
|
})
|
|
|
|
it(`has a button to load all remaining connections`, async () => {
|
|
wrapper.find('.base-button').trigger('click')
|
|
expect(wrapper.emitted('fetchAllConnections')).toBeTruthy()
|
|
})
|
|
})
|
|
|
|
describe('with more than 7 loaded connections', () => {
|
|
let wrapper
|
|
beforeAll(() => {
|
|
wrapper = Wrapper({ user: allConnectionsUser })
|
|
})
|
|
|
|
it('renders the connections', () => {
|
|
expect(wrapper.findAll('.user-teaser')).toHaveLength(allConnectionsUser.followingCount)
|
|
})
|
|
|
|
it('renders the user-teasers as an overflowing list', () => {
|
|
expect(wrapper.find('.--overflow').element.tagName).toBe('UL')
|
|
})
|
|
|
|
it('renders a filter text input', () => {
|
|
expect(wrapper.find('[name="followingFilter"]').element.tagName).toBe('INPUT')
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|