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/send-footer.utils.test.js

208 lines
5.5 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 } = sendUtils;
describe('send-footer utils', function () {
describe('addressIsNew()', function () {
it('should return false if the address exists in toAccounts', function () {
assert.strictEqual(
2020-11-03 00:41:28 +01:00
addressIsNew(
[{ address: '0xabc' }, { address: '0xdef' }, { address: '0xghi' }],
'0xdef',
),
false,
);
});
it('should return true if the address does not exists in toAccounts', function () {
assert.strictEqual(
2020-11-03 00:41:28 +01:00
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 () {
assert.deepStrictEqual(
2018-07-17 00:50:26 +02:00
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.deepStrictEqual(
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.deepStrictEqual(
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.deepStrictEqual(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.deepStrictEqual(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.deepStrictEqual(result, {
unapprovedTxParam: 'someOtherParam',
txParams: {
from: '0xmockFrom',
gas: '0xmockGas',
gasPrice: '0xmockGasPrice',
value: '0x0',
to: '0xmockTokenAddress',
data: `${TOKEN_TRANSFER_FUNCTION_SIGNATURE}ss56Tont`,
},
});
});
});
});