MyCrypto/spec/reducers/swap.spec.ts
Eddie Wang 88532cdc3c Shapeshift Integration (#564)
* progress

* Normalize bity api response

* Filter api response

* Track swap information in component state

* Update dropdown onchange

* remove dead code

* Update Min Max Validation

* Update minmax err msg && fix onChangeOriginKind

* Add origin & destination to redux state

* Update types & Update tests

* Update types

* Update swap.spec.ts test

* Remove commented out code

* Remove hardcoded coin array

* Create types.ts for swap reducer

* Update swapinput type

* Update bityRates in localStorage & Replace all instances of ...Kind / ...Amount props

* Add shapeshift banner

* initial work for sagas

* Update Types

* Update swap reducer initial state

* Update Types & Store empty obj for bityRates / options

* Update more types

* added shapeshift file and rates comments

* action reducers and prop mapping to components

* add typings and swap icon

* more actions reducers and sagas

* debugging shapeshift service

* add Headers

* Fix content type

* add order reset saga and ui fixes

* remove console log and swap b/w Bity and Shapeshift

* working state for Shapeshift and Bity - tested with mainnet

* add icon component

* UI improvements and fix select bug

* fix timer bug

* add bity fallback options and toFixed floats

* tslint errors

* add arrow to dropdown and add support footer

* Add service provider

* fix minor $ bug and stop timer on order complete

* better load UX and dropdown UX

* fixed single test

* currRate prop bugs and reduce LS bloat

* takeEvery on timer saga and don't clear state.options to restartSwap reducer

* export tx sagas and fix minor type

* Add ShapeShift Rates functionality when selecting a ShapeShift pair.

* type fixes

* BugFix: Don't change displayed ShapeShift Rate Inputs on every dropdown change
Also contains some caching / performance improvements

* BugFix: Don't remote rate inputs when falsy amount

* fix type error

* Progress commit

* Implement saga logic

* Make address field factory component

* Shorten debounce time

* Make new actions / sagas  for handling single token lookup

* Implement working version of litesend

* Change saga into selector

* Add failing spec

* fix broken test

* add debounce to error message

* fix tests

* update snapshots

* test coverage

* move setState disabled property from debounce so we instantly can go to next step on valid amounts

* much deeper test coverage, fix debounce ux, and fix bity flashing at swap page load

* fix minor failing test

* seperate shapeshift erc20 token whitelist

* fix saveState store bug

* break orderTimeRemaining saga up and rewrite tests

* add new swap icon

* remove unused allowReadOnly prop

* change offlineaware to walletdecrypt for litesend

* fix LiteSend changewallet bug

* fix error message UX

* fix button styling to match develop

* fix liteSend test

* Fix LiteSend UX on unavl tokens, dropdown null value, and don't show decrypt in litesend after successful wallet decrypt.

* add litesend network check
2018-01-02 12:04:50 -06:00

334 lines
9.8 KiB
TypeScript

import { swap, INITIAL_STATE } from 'reducers/swap';
import * as swapActions from 'actions/swap';
import {
NormalizedBityRates,
NormalizedOptions,
NormalizedShapeshiftRates
} from 'reducers/swap/types';
import { normalize } from 'normalizr';
import * as schema from 'reducers/swap/schema';
import { TypeKeys } from 'actions/swap/constants';
describe('swap reducer', () => {
const shapeshiftApiResponse = {
['1SSTANT']: {
id: '1STANT',
options: [
{
id: '1ST',
status: 'available',
image: 'https://shapeshift.io/images/coins/firstblood.png',
name: 'FirstBlood'
},
{
id: 'ANT',
status: 'available',
image: 'https://shapeshift.io/images/coins/aragon.png',
name: 'Aragon'
}
],
rate: '0.24707537',
limit: 5908.29166225,
min: 7.86382979
}
};
const bityApiResponse = {
BTCETH: {
id: 'BTCETH',
options: [{ id: 'BTC' }, { id: 'ETH' }],
rate: 23.27855114
},
ETHBTC: {
id: 'ETHBTC',
options: [{ id: 'ETH' }, { id: 'BTC' }],
rate: 0.042958
}
};
const normalizedBityRates: NormalizedBityRates = {
byId: normalize(bityApiResponse, [schema.providerRate]).entities.providerRates,
allIds: schema.allIds(normalize(bityApiResponse, [schema.providerRate]).entities.providerRates)
};
const normalizedShapeshiftRates: NormalizedShapeshiftRates = {
byId: normalize(shapeshiftApiResponse, [schema.providerRate]).entities.providerRates,
allIds: schema.allIds(
normalize(shapeshiftApiResponse, [schema.providerRate]).entities.providerRates
)
};
const normalizedBityOptions: NormalizedOptions = {
byId: normalize(bityApiResponse, [schema.providerRate]).entities.options,
allIds: schema.allIds(normalize(bityApiResponse, [schema.providerRate]).entities.options)
};
const normalizedShapeshiftOptions: NormalizedOptions = {
byId: normalize(shapeshiftApiResponse, [schema.providerRate]).entities.options,
allIds: schema.allIds(normalize(shapeshiftApiResponse, [schema.providerRate]).entities.options)
};
it('should handle SWAP_LOAD_BITY_RATES_SUCCEEDED', () => {
expect(swap(undefined, swapActions.loadBityRatesSucceededSwap(bityApiResponse))).toEqual({
...INITIAL_STATE,
isFetchingRates: false,
bityRates: normalizedBityRates,
options: normalizedBityOptions
});
});
it('should handle SWAP_LOAD_SHAPESHIFT_RATES_SUCCEEDED', () => {
expect(
swap(undefined, swapActions.loadShapeshiftRatesSucceededSwap(shapeshiftApiResponse))
).toEqual({
...INITIAL_STATE,
isFetchingRates: false,
shapeshiftRates: normalizedShapeshiftRates,
options: normalizedShapeshiftOptions
});
});
it('should handle SWAP_STEP', () => {
const step = 2;
expect(swap(undefined, swapActions.changeStepSwap(step))).toEqual({
...INITIAL_STATE,
step
});
});
it('should handle SWAP_DESTINATION_ADDRESS', () => {
const destinationAddress = '341a0sdf83';
expect(swap(undefined, swapActions.destinationAddressSwap(destinationAddress))).toEqual({
...INITIAL_STATE,
destinationAddress
});
});
it('should handle SWAP_RESTART', () => {
expect(
swap(
{
...INITIAL_STATE,
bityRates: normalizedBityRates,
shapeshiftRates: normalizedShapeshiftRates,
origin: { id: 'BTC', amount: 1 },
destination: { id: 'ETH', amount: 3 }
},
swapActions.restartSwap()
)
).toEqual({
...INITIAL_STATE,
bityRates: normalizedBityRates,
shapeshiftRates: normalizedShapeshiftRates
});
});
it('should handle SWAP_BITY_ORDER_CREATE_REQUESTED', () => {
expect(
swap(undefined, {
type: TypeKeys.SWAP_BITY_ORDER_CREATE_REQUESTED
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isPostingOrder: true
});
});
it('should handle SWAP_SHAPESHIFT_ORDER_CREATE_REQUESTED', () => {
expect(
swap(undefined, {
type: TypeKeys.SWAP_BITY_ORDER_CREATE_REQUESTED
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isPostingOrder: true
});
});
it('should handle SWAP_BITY_ORDER_CREATE_FAILED', () => {
expect(
swap(undefined, {
type: TypeKeys.SWAP_BITY_ORDER_CREATE_FAILED
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isPostingOrder: false
});
});
it('should handle SWAP_SHAPESHIFT_ORDER_CREATE_FAILED', () => {
expect(
swap(undefined, {
type: TypeKeys.SWAP_SHAPESHIFT_ORDER_CREATE_FAILED
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isPostingOrder: false
});
});
it('should handle SWAP_BITY_ORDER_CREATE_SUCCEEDED', () => {
const mockedBityOrder: swapActions.BityOrderPostResponse = {
payment_address: 'payment_address',
status: 'status',
input: {
amount: '1.111',
currency: 'input_currency',
reference: 'input_reference',
status: 'input_status'
},
output: {
amount: '1.111',
currency: 'output_currency',
reference: 'output_reference',
status: 'output_status'
},
timestamp_created: 'timestamp_created',
validFor: 0,
id: 'id'
};
expect(swap(undefined, swapActions.bityOrderCreateSucceededSwap(mockedBityOrder))).toEqual({
...INITIAL_STATE,
bityOrder: {
...mockedBityOrder
},
isPostingOrder: false,
originAmount: parseFloat(mockedBityOrder.input.amount),
destinationAmount: parseFloat(mockedBityOrder.output.amount),
secondsRemaining: mockedBityOrder.validFor,
validFor: mockedBityOrder.validFor,
orderTimestampCreatedISOString: mockedBityOrder.timestamp_created,
paymentAddress: mockedBityOrder.payment_address,
bityOrderStatus: mockedBityOrder.status,
orderId: mockedBityOrder.id
});
});
it('should handle SWAP_SHAPESHIFT_ORDER_CREATE_SUCCEEDED', () => {
const mockedShapeshiftOrder: swapActions.ShapeshiftOrderResponse = {
orderId: '64d73218-0ee9-4c6c-9bbd-6da9208595f5',
pair: 'eth_ant',
withdrawal: '0x6b3a639eb96d8e0241fe4e114d99e739f906944e',
withdrawalAmount: '200.13550988',
deposit: '0x039ed77933388642fdd618d27bfc4fa3582d10c4',
depositAmount: '0.98872802',
expiration: 1514633757288,
quotedRate: '203.47912271',
maxLimit: 7.04575258,
apiPubKey:
'0ca1ccd50b708a3f8c02327f0caeeece06d3ddc1b0ac749a987b453ee0f4a29bdb5da2e53bc35e57fb4bb7ae1f43c93bb098c3c4716375fc1001c55d8c94c160',
minerFee: '1.05'
};
const swapState = swap(
undefined,
swapActions.shapeshiftOrderCreateSucceededSwap(mockedShapeshiftOrder)
);
expect(swapState).toEqual({
...INITIAL_STATE,
shapeshiftOrder: {
...mockedShapeshiftOrder
},
isPostingOrder: false,
originAmount: parseFloat(mockedShapeshiftOrder.depositAmount),
destinationAmount: parseFloat(mockedShapeshiftOrder.withdrawalAmount),
secondsRemaining: swapState.secondsRemaining,
validFor: swapState.validFor,
orderTimestampCreatedISOString: swapState.orderTimestampCreatedISOString,
paymentAddress: mockedShapeshiftOrder.deposit,
shapeshiftOrderStatus: 'no_deposits',
orderId: mockedShapeshiftOrder.orderId
});
});
it('should handle SWAP_BITY_ORDER_STATUS_SUCCEEDED', () => {
const mockedBityResponse: swapActions.BityOrderResponse = {
input: {
amount: '1.111',
currency: 'input_currency',
reference: 'input_reference',
status: 'input_status'
},
output: {
amount: '1.111',
currency: 'output_currency',
reference: 'output_reference',
status: 'FILL'
},
status: 'status'
};
expect(swap(undefined, swapActions.bityOrderStatusSucceededSwap(mockedBityResponse))).toEqual({
...INITIAL_STATE,
outputTx: mockedBityResponse.output.reference,
bityOrderStatus: mockedBityResponse.output.status
});
});
it('should handle SWAP_SHAPESHIFT_ORDER_STATUS_SUCCEEDED', () => {
const mockedShapeshiftResponse: swapActions.ShapeshiftStatusResponse = {
status: 'complete',
transaction: '0x039ed77933388642fdd618d27bfc4fa3582d10c4'
};
expect(
swap(undefined, swapActions.shapeshiftOrderStatusSucceededSwap(mockedShapeshiftResponse))
).toEqual({
...INITIAL_STATE,
shapeshiftOrderStatus: mockedShapeshiftResponse.status,
outputTx: mockedShapeshiftResponse.transaction
});
});
it('should handle SWAP_ORDER_TIME', () => {
const secondsRemaining = 300;
expect(swap(undefined, swapActions.orderTimeSwap(secondsRemaining))).toEqual({
...INITIAL_STATE,
secondsRemaining
});
});
it('should handle SWAP_LOAD_BITY_RATES_REQUESTED', () => {
expect(
swap(undefined, {
type: 'SWAP_LOAD_BITY_RATES_REQUESTED'
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isFetchingRates: true
});
});
it('should handle SWAP_LOAD_SHAPESHIFT_RATE_REQUESTED', () => {
expect(
swap(undefined, {
type: TypeKeys.SWAP_LOAD_SHAPESHIFT_RATES_REQUESTED
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isFetchingRates: true
});
});
it('should handle SWAP_STOP_LOAD_BITY_RATES', () => {
expect(
swap(undefined, {
type: 'SWAP_STOP_LOAD_BITY_RATES'
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isFetchingRates: false
});
});
it('should handle SWAP_STOP_LOAD_SHAPESHIFT_RATES', () => {
expect(
swap(undefined, {
type: TypeKeys.SWAP_STOP_LOAD_SHAPESHIFT_RATES
} as swapActions.SwapAction)
).toEqual({
...INITIAL_STATE,
isFetchingRates: false
});
});
});