1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

adds fetch and delete tests to datasources store

This commit is contained in:
Keviin Åberg Kultalahti 2021-03-29 12:03:34 +02:00
parent ed2d541a77
commit 7e56446395
2 changed files with 38 additions and 13 deletions

View file

@ -45,13 +45,16 @@ export function createDatasourcesStore(_api = api) {
return json
},
delete: async datasource => {
await api.delete(`/api/datasources/${datasource._id}/${datasource._rev}`)
const response = await api.delete(`/api/datasources/${datasource._id}/${datasource._rev}`)
const json = await response.json()
update(state => {
const sources = state.list.filter(
existing => existing._id !== datasource._id
)
return { sources, selected: null }
return { list: sources, selected: null }
})
return json
},
}
}

View file

@ -3,31 +3,53 @@ import api from 'builderStore/api'
jest.mock('builderStore/api');
const FETCH_RESPONSE = [
{
"type": "datasource",
"name": "erterter",
"source": "REST",
"config": {
"url": "localhost",
"defaultHeaders": {}
},
"_id": "datasource_04b003a7b4a8428eadd3bb2f7eae0255",
"_rev": "1-4e72002f1011e9392e655948469b7908"
}
]
import { createDatasourcesStore } from "../datasources"
describe("Automation Data Object", () => {
let store = createDatasourcesStore()
beforeEach(() => {
api.get.mockReturnValueOnce({ json: () => FETCH_RESPONSE})
api.delete.mockReturnValueOnce({ json: () => ({status: 200, message: 'Datasource deleted.'})})
store.init()
})
it("Inits properly", () => {
const value = get(store)
expect(value).toEqual({ list: [], selected: null})
})
it("Fetch returns and updates store", async () => {
api.get.mockReturnValueOnce({ json: () => 'some-cool-value'})
store.fetch()
it("Fetch - returns and updates store", async () => {
let value = get(store)
expect(value).toEqual({ list: [], selected: null})
await store.fetch()
value = get(store)
expect(api.get).toBeCalledWith(`/api/datasources`)
// expect(get(store)).toEqual({ list: [], selected: null})
expect(value).toEqual({ list: FETCH_RESPONSE, selected: null})
})
})
it("Delete - calls delete endpoint, updates store and returns status", async () => {
let value = get(store)
const { _id, _rev } = FETCH_RESPONSE[0]
await store.fetch()
await store.delete(FETCH_RESPONSE[0])
expect(api.delete).toBeCalledWith(`/api/datasources/${_id}/${_rev}`)
value = await get(store)
expect(value).toEqual({ list: [], selected: null})
})
})