koel/resources/assets/js/components/user/UserAddForm.spec.ts

35 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-07-22 16:15:50 +00:00
import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { fireEvent, waitFor } from '@testing-library/vue'
import { userStore } from '@/stores'
import UserAddForm from './UserAddForm.vue'
import { MessageToasterStub } from '@/__tests__/stubs'
2022-07-22 16:15:50 +00:00
new class extends UnitTestCase {
protected test () {
it('creates a new user', async () => {
const storeMock = this.mock(userStore, 'store')
const alertMock = this.mock(MessageToasterStub.value, 'success')
2022-07-22 16:15:50 +00:00
const { getByLabelText, getByRole } = this.render(UserAddForm)
await fireEvent.update(getByLabelText('Name'), 'John Doe')
await fireEvent.update(getByLabelText('Email'), 'john@doe.com')
await fireEvent.update(getByLabelText('Password'), 'secret-password')
await fireEvent.click(getByRole('checkbox'))
await fireEvent.click(getByRole('button', { name: 'Save' }))
await waitFor(() => {
expect(storeMock).toHaveBeenCalledWith({
name: 'John Doe',
email: 'john@doe.com',
password: 'secret-password',
is_admin: true
})
expect(alertMock).toHaveBeenCalledWith('New user "John Doe" created.')
})
})
}
}