From d14af8346af2517db2e50f142377948c9f2ae5e9 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Wed, 24 Oct 2018 01:52:22 -0230 Subject: Improve data management and tests for gas-modal-page-container price estimates. --- ui/app/selectors/tests/custom-gas.test.js | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'ui/app/selectors/tests/custom-gas.test.js') diff --git a/ui/app/selectors/tests/custom-gas.test.js b/ui/app/selectors/tests/custom-gas.test.js index 5fde61c9b..1099670f2 100644 --- a/ui/app/selectors/tests/custom-gas.test.js +++ b/ui/app/selectors/tests/custom-gas.test.js @@ -6,6 +6,9 @@ const { getCustomGasLimit, getCustomGasPrice, getCustomGasTotal, + getEstimatedGasPrices, + getEstimatedGasTimes, + getPriceAndTimeEstimates, getRenderableBasicEstimateData, getRenderableEstimateDataForSmallButtons, } = proxyquire('../custom-gas', {}) @@ -40,6 +43,35 @@ describe('custom-gas selectors', () => { }) }) + describe('getPriceAndTimeEstimates', () => { + it('should return price and time estimates', () => { + const mockState = { gas: { priceAndTimeEstimates: 'mockPriceAndTimeEstimates' } } + assert.equal(getPriceAndTimeEstimates(mockState), 'mockPriceAndTimeEstimates') + }) + }) + + describe('getEstimatedGasPrices', () => { + it('should return price and time estimates', () => { + const mockState = { gas: { priceAndTimeEstimates: [ + { gasprice: 12, somethingElse: 20 }, + { gasprice: 22, expectedTime: 30 }, + { gasprice: 32, somethingElse: 40 }, + ] } } + assert.deepEqual(getEstimatedGasPrices(mockState), [12, 22, 32]) + }) + }) + + describe('getEstimatedGasTimes', () => { + it('should return price and time estimates', () => { + const mockState = { gas: { priceAndTimeEstimates: [ + { somethingElse: 12, expectedTime: 20 }, + { gasPrice: 22, expectedTime: 30 }, + { somethingElse: 32, expectedTime: 40 }, + ] } } + assert.deepEqual(getEstimatedGasTimes(mockState), [20, 30, 40]) + }) + }) + describe('getRenderableBasicEstimateData()', () => { const tests = [ { -- cgit