First test: load safe not present in storage #75
This commit is contained in:
parent
9a4c54671b
commit
d42f4f0a4b
|
@ -0,0 +1,56 @@
|
||||||
|
// @flow
|
||||||
|
import { Map, List } from 'immutable'
|
||||||
|
import { type Safe } from '~/routes/safe/store/model/safe'
|
||||||
|
import { aNewStore } from '~/store'
|
||||||
|
import { aMinedSafe } from '~/test/builder/safe.redux.builder'
|
||||||
|
import updateSafe from '~/routes/safe/store/actions/updateSafe'
|
||||||
|
import { loadSafe } from '~/routes/load/container/Load'
|
||||||
|
import { safesMapSelector } from '~/routes/safeList/store/selectors'
|
||||||
|
import { makeOwner } from '~/routes/safe/store/model/owner'
|
||||||
|
import { getWeb3 } from '~/logic/wallets/getWeb3'
|
||||||
|
import { promisify } from '~/utils/promisify'
|
||||||
|
import { safesInitialState } from '~/routes/safe/store/reducer/safe'
|
||||||
|
|
||||||
|
describe('Safe - redux load safe', () => {
|
||||||
|
let store
|
||||||
|
let address: string
|
||||||
|
beforeEach(async () => {
|
||||||
|
store = aNewStore()
|
||||||
|
address = await aMinedSafe(store)
|
||||||
|
localStorage.clear()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('if safe is not present, store and persist it with default names', async () => {
|
||||||
|
const safeName = 'Loaded Safe'
|
||||||
|
const safeAddress = address
|
||||||
|
const updateSafeFn: any = (...args) => store.dispatch(updateSafe(...args))
|
||||||
|
|
||||||
|
await loadSafe(safeName, safeAddress, updateSafeFn)
|
||||||
|
|
||||||
|
const safes: Map<string, Safe> = safesMapSelector(store.getState())
|
||||||
|
expect(safes.size).toBe(1)
|
||||||
|
if (!safes) throw new Error()
|
||||||
|
const safe = safes.get(safeAddress)
|
||||||
|
if (!safe) throw new Error()
|
||||||
|
|
||||||
|
expect(safe.get('name')).toBe(safeName)
|
||||||
|
expect(safe.get('threshold')).toBe(1)
|
||||||
|
expect(safe.get('address')).toBe(safeAddress)
|
||||||
|
const accounts = await promisify(cb => getWeb3().eth.getAccounts(cb))
|
||||||
|
expect(safe.get('owners')).toEqual(List([makeOwner({ name: 'UNKNOWN', address: accounts[0] })]))
|
||||||
|
|
||||||
|
expect(safesInitialState()).toEqual(safes)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('if safe is not present but owners, store and persist it with stored names', async () => {
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
it('if safe is present but no owners, store and persist it with default names', async () => {
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
it('if safe is present but owners, store and persist it with stored names', async () => {
|
||||||
|
|
||||||
|
})
|
||||||
|
})
|
Loading…
Reference in New Issue