mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
* fix(admin): update test files predeploy * fix(admin): update test files predeploy * fix(admin): update test files predeploy
163 lines
5.2 KiB
Plaintext
163 lines
5.2 KiB
Plaintext
// This component is not being used in the project
|
|
// import { mount } from '@vue/test-utils'
|
|
// import UserData from './UserData'
|
|
// import flushPromises from 'flush-promises'
|
|
//
|
|
// import { toastErrorSpy, toastSuccessSpy } from '@test/testSetup'
|
|
//
|
|
// const localVue = global.localVue
|
|
//
|
|
// const mockAPIcall = jest.fn()
|
|
//
|
|
// const storeCommitMock = jest.fn()
|
|
//
|
|
// describe('UserCard_FormUserData', () => {
|
|
// let wrapper
|
|
//
|
|
// const mocks = {
|
|
// $t: jest.fn((t) => t),
|
|
// $store: {
|
|
// state: {
|
|
// firstName: 'Peter',
|
|
// lastName: 'Lustig',
|
|
// },
|
|
// commit: storeCommitMock,
|
|
// },
|
|
// $apollo: {
|
|
// mutate: mockAPIcall,
|
|
// },
|
|
// }
|
|
//
|
|
// const Wrapper = () => {
|
|
// return mount(UserData, { localVue, mocks })
|
|
// }
|
|
//
|
|
// describe('mount', () => {
|
|
// beforeEach(() => {
|
|
// wrapper = Wrapper()
|
|
// })
|
|
//
|
|
// it('renders the component', () => {
|
|
// expect(wrapper.find('div#userdata_form').exists()).toBeTruthy()
|
|
// })
|
|
//
|
|
// it('has an edit icon', () => {
|
|
// expect(wrapper.find('svg.bi-pencil').exists()).toBeTruthy()
|
|
// })
|
|
//
|
|
// it('renders the first name', () => {
|
|
// expect(wrapper.findAll('div.col').at(2).text()).toBe('Peter')
|
|
// })
|
|
//
|
|
// it('renders the last name', () => {
|
|
// expect(wrapper.findAll('div.col').at(4).text()).toBe('Lustig')
|
|
// })
|
|
//
|
|
// describe('edit user data', () => {
|
|
// beforeEach(async () => {
|
|
// await wrapper.find('svg.bi-pencil').trigger('click')
|
|
// })
|
|
//
|
|
// it('shows an cancel icon', () => {
|
|
// expect(wrapper.find('svg.bi-x-circle').exists()).toBeTruthy()
|
|
// })
|
|
//
|
|
// it('closes the input when cancel icon is clicked', async () => {
|
|
// await wrapper.find('svg.bi-x-circle').trigger('click')
|
|
// expect(wrapper.find('input').exists()).toBeFalsy()
|
|
// })
|
|
//
|
|
// it('does not change the userdate when cancel is clicked', async () => {
|
|
// await wrapper.findAll('input').at(0).setValue('Petra')
|
|
// await wrapper.findAll('input').at(1).setValue('Lustiger')
|
|
// await wrapper.find('svg.bi-x-circle').trigger('click')
|
|
// expect(wrapper.findAll('div.col').at(2).text()).toBe('Peter')
|
|
// expect(wrapper.findAll('div.col').at(4).text()).toBe('Lustig')
|
|
// })
|
|
//
|
|
// it('has a submit button', () => {
|
|
// expect(wrapper.find('button[type="submit"]').exists()).toBeTruthy()
|
|
// })
|
|
//
|
|
// it('does not enable submit button when data is not changed', async () => {
|
|
// await wrapper.find('form').trigger('keyup')
|
|
// expect(wrapper.find('button[type="submit"]').attributes('disabled')).toBe('disabled')
|
|
// })
|
|
//
|
|
// describe('successfull submit', () => {
|
|
// beforeEach(async () => {
|
|
// mockAPIcall.mockResolvedValue({
|
|
// data: {
|
|
// updateUserInfos: {
|
|
// validValues: 3,
|
|
// },
|
|
// },
|
|
// })
|
|
// jest.clearAllMocks()
|
|
// await wrapper.findAll('input').at(0).setValue('Petra')
|
|
// await wrapper.findAll('input').at(1).setValue('Lustiger')
|
|
// await wrapper.find('form').trigger('keyup')
|
|
// await wrapper.find('button[type="submit"]').trigger('click')
|
|
// await flushPromises()
|
|
// })
|
|
//
|
|
// it('calls the API', () => {
|
|
// expect(mockAPIcall).toBeCalledWith(
|
|
// expect.objectContaining({
|
|
// variables: {
|
|
// firstName: 'Petra',
|
|
// lastName: 'Lustiger',
|
|
// },
|
|
// }),
|
|
// )
|
|
// })
|
|
//
|
|
// it('commits firstname to store', () => {
|
|
// expect(storeCommitMock).toBeCalledWith('firstName', 'Petra')
|
|
// })
|
|
//
|
|
// it('commits lastname to store', () => {
|
|
// expect(storeCommitMock).toBeCalledWith('lastName', 'Lustiger')
|
|
// })
|
|
//
|
|
// it('toasts a success message', () => {
|
|
// expect(toastSuccessSpy).toBeCalledWith('settings.name.change-success')
|
|
// })
|
|
//
|
|
// it('has an edit button again', () => {
|
|
// expect(wrapper.find('svg.bi-pencil').exists()).toBeTruthy()
|
|
// })
|
|
// })
|
|
//
|
|
// describe('submit results in server error', () => {
|
|
// beforeEach(async () => {
|
|
// mockAPIcall.mockRejectedValue({
|
|
// message: 'Error',
|
|
// })
|
|
// jest.clearAllMocks()
|
|
// await wrapper.findAll('input').at(0).setValue('Petra')
|
|
// await wrapper.findAll('input').at(1).setValue('Lustiger')
|
|
// await wrapper.find('form').trigger('keyup')
|
|
// await wrapper.find('button[type="submit"]').trigger('click')
|
|
// await flushPromises()
|
|
// })
|
|
//
|
|
// it('calls the API', () => {
|
|
// expect(mockAPIcall).toBeCalledWith(
|
|
// expect.objectContaining({
|
|
// variables: {
|
|
// firstName: 'Petra',
|
|
// lastName: 'Lustiger',
|
|
// },
|
|
// }),
|
|
// )
|
|
// })
|
|
//
|
|
// it('toasts an error message', () => {
|
|
// expect(toastErrorSpy).toBeCalledWith('Error')
|
|
// })
|
|
// })
|
|
// })
|
|
// })
|
|
// })
|