1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-18 07:23:21 +01:00
metamask-extension/ui/app/ducks/gas/gas-duck.test.js

304 lines
9.2 KiB
JavaScript
Raw Normal View History

2018-09-09 21:25:54 +02:00
import assert from 'assert'
import sinon from 'sinon'
import proxyquire from 'proxyquire'
2018-09-09 21:25:54 +02:00
const fakeStorage = {}
const GasDuck = proxyquire('./gas.duck.js', {
'../../../lib/storage-helpers': fakeStorage,
})
const {
2018-09-09 21:25:54 +02:00
basicGasEstimatesLoadingStarted,
basicGasEstimatesLoadingFinished,
setBasicGasEstimateData,
setCustomGasPrice,
setCustomGasLimit,
resetCustomGasState,
fetchBasicGasEstimates,
} = GasDuck
const GasReducer = GasDuck.default
2018-09-09 21:25:54 +02:00
describe('Gas Duck', function () {
2018-09-09 21:25:54 +02:00
let tempFetch
let tempDateNow
const mockGasPriceApiResponse = {
SafeGasPrice: 10,
ProposeGasPrice: 20,
FastGasPrice: 30,
}
const fakeFetch = () =>
2020-11-03 00:41:28 +01:00
new Promise((resolve) => {
const dataToResolve = mockGasPriceApiResponse
2020-11-03 00:41:28 +01:00
resolve({
json: () => Promise.resolve(dataToResolve),
})
})
2018-09-09 21:25:54 +02:00
beforeEach(function () {
tempFetch = window.fetch
tempDateNow = global.Date.now
fakeStorage.getStorageItem = sinon.stub()
fakeStorage.setStorageItem = sinon.spy()
window.fetch = sinon.stub().callsFake(fakeFetch)
global.Date.now = () => 2000000
2018-09-09 21:25:54 +02:00
})
afterEach(function () {
sinon.restore()
window.fetch = tempFetch
global.Date.now = tempDateNow
2018-09-09 21:25:54 +02:00
})
const mockState = {
mockProp: 123,
2018-09-09 21:25:54 +02:00
}
const initState = {
customData: {
price: null,
limit: null,
2018-09-09 21:25:54 +02:00
},
basicEstimates: {
average: null,
fast: null,
safeLow: null,
},
basicEstimateIsLoading: true,
basicPriceEstimatesLastRetrieved: 0,
2018-09-09 21:25:54 +02:00
}
2020-11-03 00:41:28 +01:00
const BASIC_GAS_ESTIMATE_LOADING_FINISHED =
'metamask/gas/BASIC_GAS_ESTIMATE_LOADING_FINISHED'
const BASIC_GAS_ESTIMATE_LOADING_STARTED =
'metamask/gas/BASIC_GAS_ESTIMATE_LOADING_STARTED'
2018-09-09 21:25:54 +02:00
const RESET_CUSTOM_GAS_STATE = 'metamask/gas/RESET_CUSTOM_GAS_STATE'
const SET_BASIC_GAS_ESTIMATE_DATA = 'metamask/gas/SET_BASIC_GAS_ESTIMATE_DATA'
const SET_CUSTOM_GAS_LIMIT = 'metamask/gas/SET_CUSTOM_GAS_LIMIT'
const SET_CUSTOM_GAS_PRICE = 'metamask/gas/SET_CUSTOM_GAS_PRICE'
2020-11-03 00:41:28 +01:00
const SET_BASIC_PRICE_ESTIMATES_LAST_RETRIEVED =
'metamask/gas/SET_BASIC_PRICE_ESTIMATES_LAST_RETRIEVED'
2018-09-09 21:25:54 +02:00
describe('GasReducer()', function () {
it('should initialize state', function () {
assert.deepStrictEqual(GasReducer(undefined, {}), initState)
2018-09-09 21:25:54 +02:00
})
it('should return state unchanged if it does not match a dispatched actions type', function () {
assert.deepStrictEqual(
2018-09-09 21:25:54 +02:00
GasReducer(mockState, {
type: 'someOtherAction',
value: 'someValue',
}),
mockState,
2018-09-09 21:25:54 +02:00
)
})
it('should set basicEstimateIsLoading to true when receiving a BASIC_GAS_ESTIMATE_LOADING_STARTED action', function () {
assert.deepStrictEqual(
GasReducer(mockState, { type: BASIC_GAS_ESTIMATE_LOADING_STARTED }),
{ basicEstimateIsLoading: true, ...mockState },
2018-09-09 21:25:54 +02:00
)
})
it('should set basicEstimateIsLoading to false when receiving a BASIC_GAS_ESTIMATE_LOADING_FINISHED action', function () {
assert.deepStrictEqual(
GasReducer(mockState, { type: BASIC_GAS_ESTIMATE_LOADING_FINISHED }),
{ basicEstimateIsLoading: false, ...mockState },
2018-09-09 21:25:54 +02:00
)
})
it('should set basicEstimates when receiving a SET_BASIC_GAS_ESTIMATE_DATA action', function () {
assert.deepStrictEqual(
2018-09-09 21:25:54 +02:00
GasReducer(mockState, {
type: SET_BASIC_GAS_ESTIMATE_DATA,
value: { someProp: 'someData123' },
}),
{ basicEstimates: { someProp: 'someData123' }, ...mockState },
2018-09-09 21:25:54 +02:00
)
})
it('should set customData.price when receiving a SET_CUSTOM_GAS_PRICE action', function () {
assert.deepStrictEqual(
2018-09-09 21:25:54 +02:00
GasReducer(mockState, {
type: SET_CUSTOM_GAS_PRICE,
value: 4321,
}),
{ customData: { price: 4321 }, ...mockState },
2018-09-09 21:25:54 +02:00
)
})
it('should set customData.limit when receiving a SET_CUSTOM_GAS_LIMIT action', function () {
assert.deepStrictEqual(
2018-09-09 21:25:54 +02:00
GasReducer(mockState, {
type: SET_CUSTOM_GAS_LIMIT,
value: 9876,
}),
{ customData: { limit: 9876 }, ...mockState },
2018-09-09 21:25:54 +02:00
)
})
it('should return the initial state in response to a RESET_CUSTOM_GAS_STATE action', function () {
assert.deepStrictEqual(
GasReducer(mockState, { type: RESET_CUSTOM_GAS_STATE }),
initState,
2018-09-09 21:25:54 +02:00
)
})
})
describe('basicGasEstimatesLoadingStarted', function () {
it('should create the correct action', function () {
assert.deepStrictEqual(basicGasEstimatesLoadingStarted(), {
2020-11-03 00:41:28 +01:00
type: BASIC_GAS_ESTIMATE_LOADING_STARTED,
})
2018-09-09 21:25:54 +02:00
})
})
describe('basicGasEstimatesLoadingFinished', function () {
it('should create the correct action', function () {
assert.deepStrictEqual(basicGasEstimatesLoadingFinished(), {
2020-11-03 00:41:28 +01:00
type: BASIC_GAS_ESTIMATE_LOADING_FINISHED,
})
2018-09-09 21:25:54 +02:00
})
})
describe('fetchBasicGasEstimates', function () {
it('should call fetch with the expected params', async function () {
const mockDistpatch = sinon.spy()
await fetchBasicGasEstimates()(mockDistpatch, () => ({
gas: { ...initState, basicPriceAEstimatesLastRetrieved: 1000000 },
}))
assert.deepStrictEqual(mockDistpatch.getCall(0).args, [
2020-11-03 00:41:28 +01:00
{ type: BASIC_GAS_ESTIMATE_LOADING_STARTED },
])
assert.ok(
2020-11-03 00:41:28 +01:00
window.fetch
.getCall(0)
.args[0].startsWith('https://api.metaswap.codefi.network/gasPrices'),
'should fetch metaswap /gasPrices',
)
assert.deepStrictEqual(mockDistpatch.getCall(1).args, [
2020-11-03 00:41:28 +01:00
{ type: SET_BASIC_PRICE_ESTIMATES_LAST_RETRIEVED, value: 2000000 },
])
assert.deepStrictEqual(mockDistpatch.getCall(2).args, [
2020-11-03 00:41:28 +01:00
{
type: SET_BASIC_GAS_ESTIMATE_DATA,
value: {
average: 20,
fast: 30,
safeLow: 10,
},
2020-11-03 00:41:28 +01:00
},
])
assert.deepStrictEqual(mockDistpatch.getCall(3).args, [
2020-11-03 00:41:28 +01:00
{ type: BASIC_GAS_ESTIMATE_LOADING_FINISHED },
])
})
it('should fetch recently retrieved estimates from storage', async function () {
const mockDistpatch = sinon.spy()
fakeStorage.getStorageItem
.withArgs('BASIC_PRICE_ESTIMATES_LAST_RETRIEVED')
.returns(2000000 - 1) // one second ago from "now"
fakeStorage.getStorageItem.withArgs('BASIC_PRICE_ESTIMATES').returns({
average: 25,
fast: 35,
safeLow: 15,
})
2020-11-03 00:41:28 +01:00
await fetchBasicGasEstimates()(mockDistpatch, () => ({
gas: { ...initState },
}))
assert.deepStrictEqual(mockDistpatch.getCall(0).args, [
2020-11-03 00:41:28 +01:00
{ type: BASIC_GAS_ESTIMATE_LOADING_STARTED },
])
assert.ok(window.fetch.notCalled)
assert.deepStrictEqual(mockDistpatch.getCall(1).args, [
2020-11-03 00:41:28 +01:00
{
type: SET_BASIC_GAS_ESTIMATE_DATA,
value: {
average: 25,
fast: 35,
safeLow: 15,
},
2020-11-03 00:41:28 +01:00
},
])
assert.deepStrictEqual(mockDistpatch.getCall(2).args, [
2020-11-03 00:41:28 +01:00
{ type: BASIC_GAS_ESTIMATE_LOADING_FINISHED },
])
})
it('should fallback to network if retrieving estimates from storage fails', async function () {
const mockDistpatch = sinon.spy()
fakeStorage.getStorageItem
.withArgs('BASIC_PRICE_ESTIMATES_LAST_RETRIEVED')
.returns(2000000 - 1) // one second ago from "now"
2020-11-03 00:41:28 +01:00
await fetchBasicGasEstimates()(mockDistpatch, () => ({
gas: { ...initState },
}))
assert.deepStrictEqual(mockDistpatch.getCall(0).args, [
2020-11-03 00:41:28 +01:00
{ type: BASIC_GAS_ESTIMATE_LOADING_STARTED },
])
assert.ok(
2020-11-03 00:41:28 +01:00
window.fetch
.getCall(0)
.args[0].startsWith('https://api.metaswap.codefi.network/gasPrices'),
'should fetch metaswap /gasPrices',
)
assert.deepStrictEqual(mockDistpatch.getCall(1).args, [
2020-11-03 00:41:28 +01:00
{ type: SET_BASIC_PRICE_ESTIMATES_LAST_RETRIEVED, value: 2000000 },
])
assert.deepStrictEqual(mockDistpatch.getCall(2).args, [
2020-11-03 00:41:28 +01:00
{
type: SET_BASIC_GAS_ESTIMATE_DATA,
value: {
safeLow: 10,
average: 20,
fast: 30,
},
2020-11-03 00:41:28 +01:00
},
])
assert.deepStrictEqual(mockDistpatch.getCall(3).args, [
2020-11-03 00:41:28 +01:00
{ type: BASIC_GAS_ESTIMATE_LOADING_FINISHED },
])
})
})
describe('setBasicGasEstimateData', function () {
it('should create the correct action', function () {
assert.deepStrictEqual(setBasicGasEstimateData('mockBasicEstimatData'), {
2020-11-03 00:41:28 +01:00
type: SET_BASIC_GAS_ESTIMATE_DATA,
value: 'mockBasicEstimatData',
})
2018-09-09 21:25:54 +02:00
})
})
describe('setCustomGasPrice', function () {
it('should create the correct action', function () {
assert.deepStrictEqual(setCustomGasPrice('mockCustomGasPrice'), {
2020-11-03 00:41:28 +01:00
type: SET_CUSTOM_GAS_PRICE,
value: 'mockCustomGasPrice',
})
2018-09-09 21:25:54 +02:00
})
})
describe('setCustomGasLimit', function () {
it('should create the correct action', function () {
assert.deepStrictEqual(setCustomGasLimit('mockCustomGasLimit'), {
2020-11-03 00:41:28 +01:00
type: SET_CUSTOM_GAS_LIMIT,
value: 'mockCustomGasLimit',
})
2018-09-09 21:25:54 +02:00
})
})
describe('resetCustomGasState', function () {
it('should create the correct action', function () {
assert.deepStrictEqual(resetCustomGasState(), {
type: RESET_CUSTOM_GAS_STATE,
})
2018-09-09 21:25:54 +02:00
})
})
})