koel/resources/assets/js/components/ui/AlbumArtOverlay.spec.ts

45 lines
1.1 KiB
TypeScript
Raw Normal View History

import { expect, it } from 'vitest'
import { albumStore } from '@/stores'
import factory from '@/__tests__/factory'
import ComponentTestCase from '@/__tests__/ComponentTestCase'
import AlbumArtOverlay from './AlbumArtOverlay.vue'
let album: Album
new class extends ComponentTestCase {
private renderComponent () {
album = factory<Album>('album')
return this.render(AlbumArtOverlay, {
props: {
album
}
})
}
protected test () {
it('fetches and displays the album thumbnail', async () => {
2022-05-11 15:24:28 +00:00
const mock = this.mock(albumStore, 'getThumbnail')
mock.mockResolvedValue('https://localhost/thumb.jpg')
const { html } = this.renderComponent()
await this.tick(2)
expect(mock).toHaveBeenCalledWith(album)
expect(html()).toMatchSnapshot()
})
it('displays nothing if fetching fails', async () => {
const mock = this.mock(albumStore, 'getThumbnail', () => {
throw new Error()
})
const { html } = this.renderComponent()
await this.tick(2)
expect(mock).toHaveBeenCalledWith(album)
expect(html()).toMatchSnapshot()
})
}
}