1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 12:23:39 +02:00
metamask-extension/ui/app/pages/send/send-footer/tests/send-footer-utils.test.js

234 lines
5.9 KiB
JavaScript
Raw Normal View History

import assert from 'assert'
import proxyquire from 'proxyquire'
import sinon from 'sinon'
import { TOKEN_TRANSFER_FUNCTION_SIGNATURE } from '../../send.constants'
const stubs = {
rawEncode: sinon.stub().callsFake((arr1, arr2) => {
return [ ...arr1, ...arr2 ]
}),
}
const sendUtils = proxyquire('../send-footer.utils.js', {
'ethereumjs-abi': {
rawEncode: stubs.rawEncode,
},
})
const {
addressIsNew,
constructTxParams,
constructUpdatedTx,
addHexPrefixToObjectValues,
} = sendUtils
describe('send-footer utils', function () {
describe('addHexPrefixToObjectValues()', function () {
it('should return a new object with the same properties with a 0x prefix', function () {
assert.deepEqual(
addHexPrefixToObjectValues({
prop1: '0x123',
prop2: '456',
prop3: 'x',
}),
{
prop1: '0x123',
prop2: '0x456',
prop3: '0xx',
},
)
})
})
describe('addressIsNew()', function () {
it('should return false if the address exists in toAccounts', function () {
assert.equal(
addressIsNew([
{ address: '0xabc' },
{ address: '0xdef' },
{ address: '0xghi' },
], '0xdef'),
false,
)
})
it('should return true if the address does not exists in toAccounts', function () {
assert.equal(
addressIsNew([
{ address: '0xabc' },
{ address: '0xdef' },
{ address: '0xghi' },
], '0xxyz'),
true,
)
})
})
describe('constructTxParams()', function () {
it('should return a new txParams object with data if there data is given', function () {
2018-07-17 00:50:26 +02:00
assert.deepEqual(
constructTxParams({
data: 'someData',
sendToken: undefined,
2018-07-17 00:50:26 +02:00
to: 'mockTo',
amount: 'mockAmount',
from: 'mockFrom',
gas: 'mockGas',
gasPrice: 'mockGasPrice',
}),
{
data: '0xsomeData',
to: '0xmockTo',
value: '0xmockAmount',
from: '0xmockFrom',
gas: '0xmockGas',
gasPrice: '0xmockGasPrice',
},
2018-07-17 00:50:26 +02:00
)
})
it('should return a new txParams object with value and to properties if there is no sendToken', function () {
assert.deepEqual(
constructTxParams({
sendToken: undefined,
to: 'mockTo',
amount: 'mockAmount',
from: 'mockFrom',
gas: 'mockGas',
gasPrice: 'mockGasPrice',
}),
{
2018-07-17 00:50:26 +02:00
data: undefined,
to: '0xmockTo',
value: '0xmockAmount',
from: '0xmockFrom',
gas: '0xmockGas',
gasPrice: '0xmockGasPrice',
},
)
})
it('should return a new txParams object without a to property and a 0 value if there is a sendToken', function () {
assert.deepEqual(
constructTxParams({
sendToken: { address: '0x0' },
to: 'mockTo',
amount: 'mockAmount',
from: 'mockFrom',
gas: 'mockGas',
gasPrice: 'mockGasPrice',
}),
{
2018-07-17 00:50:26 +02:00
data: undefined,
value: '0x0',
from: '0xmockFrom',
gas: '0xmockGas',
gasPrice: '0xmockGasPrice',
},
)
})
})
describe('constructUpdatedTx()', function () {
it('should return a new object with an updated txParams', function () {
const result = constructUpdatedTx({
amount: 'mockAmount',
editingTransactionId: '0x456',
from: 'mockFrom',
gas: 'mockGas',
gasPrice: 'mockGasPrice',
sendToken: false,
to: 'mockTo',
unapprovedTxs: {
'0x123': {},
'0x456': {
unapprovedTxParam: 'someOtherParam',
txParams: {
data: 'someData',
},
},
},
})
assert.deepEqual(result, {
unapprovedTxParam: 'someOtherParam',
txParams: {
from: '0xmockFrom',
gas: '0xmockGas',
gasPrice: '0xmockGasPrice',
value: '0xmockAmount',
to: '0xmockTo',
data: '0xsomeData',
},
})
})
it('should not have data property if there is non in the original tx', function () {
const result = constructUpdatedTx({
amount: 'mockAmount',
editingTransactionId: '0x456',
from: 'mockFrom',
gas: 'mockGas',
gasPrice: 'mockGasPrice',
sendToken: false,
to: 'mockTo',
unapprovedTxs: {
'0x123': {},
'0x456': {
unapprovedTxParam: 'someOtherParam',
txParams: {
from: 'oldFrom',
gas: 'oldGas',
gasPrice: 'oldGasPrice',
},
},
},
})
assert.deepEqual(result, {
unapprovedTxParam: 'someOtherParam',
txParams: {
from: '0xmockFrom',
gas: '0xmockGas',
gasPrice: '0xmockGasPrice',
value: '0xmockAmount',
to: '0xmockTo',
},
})
})
it('should have token property values if sendToken is truthy', function () {
const result = constructUpdatedTx({
amount: 'mockAmount',
editingTransactionId: '0x456',
from: 'mockFrom',
gas: 'mockGas',
gasPrice: 'mockGasPrice',
sendToken: {
address: 'mockTokenAddress',
},
to: 'mockTo',
unapprovedTxs: {
'0x123': {},
'0x456': {
unapprovedTxParam: 'someOtherParam',
txParams: {},
},
},
})
assert.deepEqual(result, {
unapprovedTxParam: 'someOtherParam',
txParams: {
from: '0xmockFrom',
gas: '0xmockGas',
gasPrice: '0xmockGasPrice',
value: '0x0',
to: '0xmockTokenAddress',
data: `${TOKEN_TRANSFER_FUNCTION_SIGNATURE}ss56Tont`,
},
})
})
})
})