mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
157 lines
4.6 KiB
JavaScript
157 lines
4.6 KiB
JavaScript
import { mount } from '@vue/test-utils'
|
|
import UserCardFormPasswort from './UserCard_FormUserPasswort'
|
|
import loginAPI from '../../../apis/loginAPI'
|
|
import flushPromises from 'flush-promises'
|
|
|
|
jest.mock('../../../apis/loginAPI')
|
|
|
|
const localVue = global.localVue
|
|
|
|
const changePasswordProfileMock = jest.fn()
|
|
changePasswordProfileMock.mockReturnValue({ success: true })
|
|
|
|
loginAPI.changePasswordProfile = changePasswordProfileMock
|
|
|
|
const toastSuccessMock = jest.fn()
|
|
const toastErrorMock = jest.fn()
|
|
|
|
describe('UserCardFormUserPasswort', () => {
|
|
let wrapper
|
|
|
|
const mocks = {
|
|
$t: jest.fn((t) => t),
|
|
$store: {
|
|
state: {
|
|
sessionId: 1,
|
|
email: 'user@example.org',
|
|
},
|
|
},
|
|
$toast: {
|
|
success: toastSuccessMock,
|
|
error: toastErrorMock,
|
|
},
|
|
}
|
|
|
|
const Wrapper = () => {
|
|
return mount(UserCardFormPasswort, { localVue, mocks })
|
|
}
|
|
|
|
describe('mount', () => {
|
|
beforeEach(() => {
|
|
wrapper = Wrapper()
|
|
})
|
|
|
|
it('renders the component', () => {
|
|
expect(wrapper.find('div#change_pwd').exists()).toBeTruthy()
|
|
})
|
|
|
|
it('has a change password button', () => {
|
|
expect(wrapper.find('a').exists()).toBeTruthy()
|
|
})
|
|
|
|
it('has a change password button with text "form.change-password"', () => {
|
|
expect(wrapper.find('a').text()).toEqual('form.change-password')
|
|
})
|
|
|
|
it('has a change password button with a pencil icon', () => {
|
|
expect(wrapper.find('svg.bi-pencil').exists()).toBeTruthy()
|
|
})
|
|
|
|
describe('change password from', () => {
|
|
let form
|
|
|
|
beforeEach(async () => {
|
|
await wrapper.find('a').trigger('click')
|
|
await flushPromises()
|
|
form = wrapper.find('form')
|
|
})
|
|
|
|
it('has a change password form', () => {
|
|
expect(form.exists()).toBeTruthy()
|
|
})
|
|
|
|
it('has a cancel button', () => {
|
|
expect(wrapper.find('svg.bi-x-circle').exists()).toBeTruthy()
|
|
})
|
|
|
|
it('closes the form when cancel button is clicked', async () => {
|
|
await wrapper.find('svg.bi-x-circle').trigger('click')
|
|
expect(wrapper.find('input').exists()).toBeFalsy()
|
|
})
|
|
|
|
it('has three input fields', () => {
|
|
expect(form.findAll('input')).toHaveLength(3)
|
|
})
|
|
|
|
it('switches the first input type to text when show password is clicked', async () => {
|
|
form.findAll('button').at(0).trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
expect(form.findAll('input').at(0).attributes('type')).toEqual('text')
|
|
})
|
|
|
|
it('switches the second input type to text when show password is clicked', async () => {
|
|
form.findAll('button').at(1).trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
expect(form.findAll('input').at(1).attributes('type')).toEqual('text')
|
|
})
|
|
|
|
it('switches the third input type to text when show password is clicked', async () => {
|
|
form.findAll('button').at(2).trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
expect(form.findAll('input').at(2).attributes('type')).toEqual('text')
|
|
})
|
|
|
|
it('has a submit button', () => {
|
|
expect(form.find('button[type="submit"]').exists()).toBeTruthy()
|
|
})
|
|
|
|
describe('submit', () => {
|
|
describe('valid data', () => {
|
|
beforeEach(async () => {
|
|
await form.findAll('input').at(0).setValue('1234')
|
|
await form.findAll('input').at(1).setValue('Aa123456')
|
|
await form.findAll('input').at(2).setValue('Aa123456')
|
|
await form.trigger('submit')
|
|
await flushPromises()
|
|
})
|
|
|
|
it('calls the API', () => {
|
|
expect(changePasswordProfileMock).toHaveBeenCalledWith(
|
|
1,
|
|
'user@example.org',
|
|
'1234',
|
|
'Aa123456',
|
|
)
|
|
})
|
|
|
|
it('toasts a success message', () => {
|
|
expect(toastSuccessMock).toBeCalledWith('site.thx.reset')
|
|
})
|
|
|
|
it('cancels the edit process', () => {
|
|
expect(wrapper.find('input').exists()).toBeFalsy()
|
|
})
|
|
})
|
|
|
|
describe('server response is error', () => {
|
|
beforeEach(async () => {
|
|
changePasswordProfileMock.mockReturnValue({
|
|
success: false,
|
|
result: { message: 'error' },
|
|
})
|
|
await form.findAll('input').at(0).setValue('1234')
|
|
await form.findAll('input').at(1).setValue('Aa123456')
|
|
await form.findAll('input').at(2).setValue('Aa123456')
|
|
await form.trigger('submit')
|
|
await flushPromises()
|
|
})
|
|
|
|
it('toasts an error message', () => {
|
|
expect(toastErrorMock).toBeCalledWith('error')
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|