Merge pull request #812 from h3poteto/iss-209

refs #209 Add Authorize store tests
This commit is contained in:
AkiraFukushima 2018-12-29 14:09:13 +09:00 committed by GitHub
commit b4cebbfea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
import Authorize from '@/store/Authorize'
import { ipcMain } from '~/spec/mock/electron'
describe('Authorize', () => {
describe('actions', () => {
describe('error', () => {
it('should return error', async () => {
ipcMain.once('get-access-token', (event, code) => {
event.sender.send('error-get-access-token', new AccessTokenError())
})
const commitMock = jest.fn()
await Authorize.actions.submit({ commit: commitMock }, 'code')
.catch((err) => {
expect(err instanceof AccessTokenError).toEqual(true)
})
})
})
describe('success', () => {
it('should return id', async () => {
ipcMain.once('get-access-token', (event, code) => {
event.sender.send('response-get-access-token', 'abcd')
})
const commitMock = jest.fn()
const id = await Authorize.actions.submit({ commit: commitMock }, 'code')
expect(id).toEqual('abcd')
})
})
})
})
class AccessTokenError extends Error {}