mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
305 lines
8.1 KiB
JavaScript
305 lines
8.1 KiB
JavaScript
import { mutations, actions } from './store'
|
|
import Vuex from 'vuex'
|
|
import Vue from 'vue'
|
|
import i18n from '../i18n.js'
|
|
import { localeChanged } from 'vee-validate'
|
|
|
|
jest.mock('vuex')
|
|
jest.mock('../i18n.js')
|
|
jest.mock('vee-validate', () => {
|
|
return {
|
|
localeChanged: jest.fn(),
|
|
}
|
|
})
|
|
|
|
i18n.locale = 'blubb'
|
|
|
|
const {
|
|
language,
|
|
email,
|
|
token,
|
|
firstName,
|
|
lastName,
|
|
coinanimation,
|
|
newsletterState,
|
|
publisherId,
|
|
isAdmin,
|
|
community,
|
|
hasElopage,
|
|
} = mutations
|
|
const { login, logout } = actions
|
|
|
|
describe('Vuex store', () => {
|
|
describe('mutations', () => {
|
|
describe('language', () => {
|
|
it('sets the state of language', () => {
|
|
const state = { language: 'en' }
|
|
language(state, 'de')
|
|
expect(state.language).toEqual('de')
|
|
})
|
|
|
|
it('sets the i18n locale', () => {
|
|
expect(i18n.locale).toBe('de')
|
|
})
|
|
|
|
it('calls localChanged of vee-validate', () => {
|
|
expect(localeChanged).toBeCalledWith('de')
|
|
})
|
|
})
|
|
|
|
describe('email', () => {
|
|
it('sets the state of email', () => {
|
|
const state = { email: 'nobody@knows.tv' }
|
|
email(state, 'someone@there.is')
|
|
expect(state.email).toEqual('someone@there.is')
|
|
})
|
|
})
|
|
|
|
describe('token', () => {
|
|
it('sets the state of token', () => {
|
|
const state = { token: null }
|
|
token(state, '1234')
|
|
expect(state.token).toEqual('1234')
|
|
})
|
|
})
|
|
|
|
describe('firstName', () => {
|
|
it('sets the state of firstName', () => {
|
|
const state = { firstName: null }
|
|
firstName(state, 'Peter')
|
|
expect(state.firstName).toEqual('Peter')
|
|
})
|
|
})
|
|
|
|
describe('lastName', () => {
|
|
it('sets the state of lastName', () => {
|
|
const state = { lastName: null }
|
|
lastName(state, 'Lustig')
|
|
expect(state.lastName).toEqual('Lustig')
|
|
})
|
|
})
|
|
|
|
describe('coinanimation', () => {
|
|
it('sets the state of coinanimation', () => {
|
|
const state = { coinanimation: true }
|
|
coinanimation(state, false)
|
|
expect(state.coinanimation).toEqual(false)
|
|
})
|
|
})
|
|
|
|
describe('newsletterState', () => {
|
|
it('sets the state of newsletterState', () => {
|
|
const state = { newsletterState: null }
|
|
newsletterState(state, true)
|
|
expect(state.newsletterState).toEqual(true)
|
|
})
|
|
})
|
|
|
|
describe('publisherId', () => {
|
|
it('sets the state of publisherId', () => {
|
|
const state = {}
|
|
publisherId(state, 42)
|
|
expect(state.publisherId).toEqual(42)
|
|
})
|
|
|
|
it('sets publisherId to null with NaN', () => {
|
|
const state = {}
|
|
publisherId(state, 'abc')
|
|
expect(state.publisherId).toEqual(null)
|
|
})
|
|
})
|
|
|
|
describe('isAdmin', () => {
|
|
it('sets the state of isAdmin', () => {
|
|
const state = { isAdmin: null }
|
|
isAdmin(state, true)
|
|
expect(state.isAdmin).toEqual(true)
|
|
})
|
|
})
|
|
|
|
describe('community', () => {
|
|
it('sets the state of community', () => {
|
|
const state = {}
|
|
community(state, {
|
|
name: 'test12',
|
|
description: 'test community 12',
|
|
url: 'http://test12.test12/',
|
|
registerUrl: 'http://test12.test12/register',
|
|
})
|
|
expect(state.community).toEqual({
|
|
name: 'test12',
|
|
description: 'test community 12',
|
|
url: 'http://test12.test12/',
|
|
registerUrl: 'http://test12.test12/register',
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('hasElopage', () => {
|
|
it('sets the state of hasElopage', () => {
|
|
const state = { hasElopage: false }
|
|
hasElopage(state, true)
|
|
expect(state.hasElopage).toBeTruthy()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('actions', () => {
|
|
describe('login', () => {
|
|
const commit = jest.fn()
|
|
const state = {}
|
|
const commitedData = {
|
|
email: 'user@example.org',
|
|
language: 'de',
|
|
firstName: 'Peter',
|
|
lastName: 'Lustig',
|
|
coinanimation: false,
|
|
klickTipp: {
|
|
newsletterState: true,
|
|
},
|
|
hasElopage: false,
|
|
publisherId: 1234,
|
|
isAdmin: true,
|
|
}
|
|
|
|
it('calls nine commits', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenCalledTimes(9)
|
|
})
|
|
|
|
it('commits email', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(1, 'email', 'user@example.org')
|
|
})
|
|
|
|
it('commits language', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(2, 'language', 'de')
|
|
})
|
|
|
|
it('commits firstName', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(3, 'firstName', 'Peter')
|
|
})
|
|
|
|
it('commits lastName', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(4, 'lastName', 'Lustig')
|
|
})
|
|
|
|
it('commits coinanimation', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(5, 'coinanimation', false)
|
|
})
|
|
|
|
it('commits newsletterState', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(6, 'newsletterState', true)
|
|
})
|
|
|
|
it('commits hasElopage', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(7, 'hasElopage', false)
|
|
})
|
|
|
|
it('commits publisherId', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(8, 'publisherId', 1234)
|
|
})
|
|
|
|
it('commits isAdmin', () => {
|
|
login({ commit, state }, commitedData)
|
|
expect(commit).toHaveBeenNthCalledWith(9, 'isAdmin', true)
|
|
})
|
|
})
|
|
|
|
describe('logout', () => {
|
|
const commit = jest.fn()
|
|
const state = {}
|
|
|
|
it('calls nine commits', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenCalledTimes(9)
|
|
})
|
|
|
|
it('commits token', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(1, 'token', null)
|
|
})
|
|
|
|
it('commits email', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(2, 'email', null)
|
|
})
|
|
|
|
it('commits firstName', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(3, 'firstName', '')
|
|
})
|
|
|
|
it('commits lastName', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(4, 'lastName', '')
|
|
})
|
|
|
|
it('commits coinanimation', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(5, 'coinanimation', true)
|
|
})
|
|
|
|
it('commits newsletterState', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(6, 'newsletterState', null)
|
|
})
|
|
|
|
it('commits hasElopage', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(7, 'hasElopage', false)
|
|
})
|
|
|
|
it('commits publisherId', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(8, 'publisherId', null)
|
|
})
|
|
|
|
it('commits isAdmin', () => {
|
|
logout({ commit, state })
|
|
expect(commit).toHaveBeenNthCalledWith(9, 'isAdmin', false)
|
|
})
|
|
|
|
// how to get this working?
|
|
it.skip('calls localStorage.clear()', () => {
|
|
const clearStorageMock = jest.fn()
|
|
global.sessionStorage = jest.fn(() => {
|
|
return {
|
|
clear: clearStorageMock,
|
|
}
|
|
})
|
|
logout({ commit, state })
|
|
expect(clearStorageMock).toBeCalled()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('creation of store fails', () => {
|
|
const consoleErrorMock = jest.fn()
|
|
const warnHandler = Vue.config.warnHandler
|
|
beforeEach(() => {
|
|
Vue.config.warnHandler = (w) => {}
|
|
// eslint-disable-next-line no-console
|
|
console.error = consoleErrorMock
|
|
Vuex.Store = () => {
|
|
throw new Error('no-cookies-allowed')
|
|
}
|
|
})
|
|
|
|
afterEach(() => {
|
|
Vue.config.warnHandler = warnHandler
|
|
})
|
|
|
|
it.skip('logs an error message', () => {
|
|
expect(consoleErrorMock).toBeCalledWith('no-cookies-allowed')
|
|
})
|
|
})
|
|
})
|