mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { ref } from 'vue'
|
|
import { expect, it } from 'vitest'
|
|
import factory from '@/__tests__/factory'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { ModalContextKey } from '@/symbols'
|
|
import { screen, waitFor } from '@testing-library/vue'
|
|
import { userStore } from '@/stores'
|
|
import { MessageToasterStub } from '@/__tests__/stubs'
|
|
import EditUserForm from './EditUserForm.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('edits a user', async () => {
|
|
const updateMock = this.mock(userStore, 'update')
|
|
const alertMock = this.mock(MessageToasterStub.value, 'success')
|
|
|
|
const user = ref(factory<User>('user', { name: 'John Doe' }))
|
|
|
|
this.render(EditUserForm, {
|
|
global: {
|
|
provide: {
|
|
[<symbol>ModalContextKey]: [ref({ user })]
|
|
}
|
|
}
|
|
})
|
|
|
|
await this.type(screen.getByRole('textbox', { name: 'Name' }), 'Jane Doe')
|
|
await this.type(screen.getByLabelText('Password'), 'new-password-duck')
|
|
await this.user.click(screen.getByRole('button', { name: 'Update' }))
|
|
|
|
await waitFor(() => {
|
|
expect(updateMock).toHaveBeenCalledWith(user.value, {
|
|
name: 'Jane Doe',
|
|
email: user.value.email,
|
|
is_admin: user.value.is_admin,
|
|
password: 'new-password-duck'
|
|
})
|
|
|
|
expect(alertMock).toHaveBeenCalledWith('User profile updated.')
|
|
})
|
|
})
|
|
}
|
|
}
|