koel/resources/assets/js/stores/searchStore.spec.ts

70 lines
2.4 KiB
TypeScript

import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { reactive } from 'vue'
import factory from '@/__tests__/factory'
import { httpService } from '@/services'
import { songStore } from '@/stores/songStore'
import { ExcerptSearchResult, searchStore } from '@/stores/searchStore'
import { albumStore } from '@/stores/albumStore'
import { artistStore } from '@/stores/artistStore'
new class extends UnitTestCase {
protected beforeEach () {
super.beforeEach(() => {
searchStore.state = reactive({
excerpt: {
songs: [],
albums: [],
artists: []
},
songs: []
})
})
}
protected test () {
it('performs an excerpt search', async () => {
const result: ExcerptSearchResult = {
songs: factory<Song>('song', 3),
albums: factory<Album>('album', 3),
artists: factory<Artist>('artist', 3)
}
const getMock = this.mock(httpService, 'get').mockResolvedValue(result)
const syncSongsMock = this.mock(songStore, 'syncWithVault', result.songs)
const syncAlbumsMock = this.mock(albumStore, 'syncWithVault', result.albums)
const syncArtistsMock = this.mock(artistStore, 'syncWithVault', result.artists)
await searchStore.excerptSearch('test')
expect(getMock).toHaveBeenCalledWith('search?q=test')
expect(syncSongsMock).toHaveBeenCalledWith(result.songs)
expect(syncAlbumsMock).toHaveBeenCalledWith(result.albums)
expect(syncArtistsMock).toHaveBeenCalledWith(result.artists)
expect(searchStore.state.excerpt.songs).toEqual(result.songs)
expect(searchStore.state.excerpt.albums).toEqual(result.albums)
expect(searchStore.state.excerpt.artists).toEqual(result.artists)
})
it('performs a song search', async () => {
const songs = factory<Song>('song', 3)
const getMock = this.mock(httpService, 'get').mockResolvedValue(songs)
const syncMock = this.mock(songStore, 'syncWithVault', songs)
await searchStore.songSearch('test')
expect(getMock).toHaveBeenCalledWith('search/songs?q=test')
expect(syncMock).toHaveBeenCalledWith(songs)
expect(searchStore.state.songs).toEqual(songs)
})
it('resets the song result state', () => {
searchStore.state.songs = factory<Song>('song', 3)
searchStore.resetSongResultState()
expect(searchStore.state.songs).toEqual([])
})
}
}