mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
31 lines
1 KiB
TypeScript
31 lines
1 KiB
TypeScript
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { localStorageService } from '@/services/localStorageService'
|
|
import { authService } from '@/services/authService'
|
|
import { expect, it } from 'vitest'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('gets the token', () => {
|
|
const mock = this.mock(localStorageService, 'get')
|
|
authService.getToken()
|
|
expect(mock).toHaveBeenCalledWith('api-token')
|
|
})
|
|
|
|
it.each([['foo', true], [null, false]])('checks if the token exists', (token, exists) => {
|
|
this.mock(localStorageService, 'get', token)
|
|
expect(authService.hasToken()).toBe(exists)
|
|
})
|
|
|
|
it('sets the token', () => {
|
|
const mock = this.mock(localStorageService, 'set')
|
|
authService.setToken('foo')
|
|
expect(mock).toHaveBeenCalledWith('api-token', 'foo')
|
|
})
|
|
|
|
it('destroys the token', () => {
|
|
const mock = this.mock(localStorageService, 'remove')
|
|
authService.destroy()
|
|
expect(mock).toHaveBeenCalledWith('api-token')
|
|
})
|
|
}
|
|
}
|