1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/app/controllers/transactions/tx-controller-test.js

997 lines
31 KiB
JavaScript
Raw Normal View History

import { strict as assert } from 'assert';
import EventEmitter from 'events';
import ethUtil from 'ethereumjs-util';
import EthTx from 'ethereumjs-tx';
import { ObservableStore } from '@metamask/obs-store';
import sinon from 'sinon';
import TransactionController from '../../../../../app/scripts/controllers/transactions';
2020-11-03 00:41:28 +01:00
import {
createTestProviderTools,
getTestAccounts,
} from '../../../../stub/provider';
import {
TRANSACTION_CATEGORIES,
TRANSACTION_STATUSES,
TRANSACTION_TYPES,
} from '../../../../../shared/constants/transaction';
import { METAMASK_CONTROLLER_EVENTS } from '../../../../../app/scripts/metamask-controller';
const noop = () => true;
const currentNetworkId = '42';
const currentChainId = '0x2a';
2017-08-02 17:34:45 +02:00
describe('Transaction Controller', function () {
let txController, provider, providerResultStub, fromAccount;
2017-05-04 23:35:10 +02:00
beforeEach(function () {
providerResultStub = {
// 1 gwei
eth_gasPrice: '0x0de0b6b3a7640000',
// by default, all accounts are external accounts (not contracts)
eth_getCode: '0x',
};
2020-11-03 00:41:28 +01:00
provider = createTestProviderTools({ scaffold: providerResultStub })
.provider;
fromAccount = getTestAccounts()[0];
const blockTrackerStub = new EventEmitter();
blockTrackerStub.getCurrentBlock = noop;
blockTrackerStub.getLatestBlock = noop;
2017-05-16 19:27:41 +02:00
txController = new TransactionController({
2017-08-09 00:30:22 +02:00
provider,
2020-11-03 00:41:28 +01:00
getGasPrice() {
return '0xee6b2800';
},
networkStore: new ObservableStore(currentNetworkId),
2016-12-16 19:33:36 +01:00
txHistoryLimit: 10,
blockTracker: blockTrackerStub,
2020-11-03 00:41:28 +01:00
signTransaction: (ethTx) =>
new Promise((resolve) => {
ethTx.sign(fromAccount.key);
resolve();
2020-11-03 00:41:28 +01:00
}),
getPermittedAccounts: () => undefined,
getCurrentChainId: () => currentChainId,
getParticipateInMetrics: () => false,
});
2020-11-03 00:41:28 +01:00
txController.nonceTracker.getNonceLock = () =>
Promise.resolve({ nextNonce: 0, releaseLock: noop });
});
describe('#getState', function () {
it('should return a state object with the right keys and data types', function () {
const exposedState = txController.getState();
2020-11-03 00:41:28 +01:00
assert.ok(
'unapprovedTxs' in exposedState,
'state should have the key unapprovedTxs',
);
2020-11-03 00:41:28 +01:00
assert.ok(
'currentNetworkTxList' in exposedState,
'state should have the key currentNetworkTxList',
);
2020-11-03 00:41:28 +01:00
assert.ok(
typeof exposedState?.unapprovedTxs === 'object',
'should be an object',
);
2020-11-03 00:41:28 +01:00
assert.ok(
Array.isArray(exposedState.currentNetworkTxList),
'should be an array',
);
});
});
describe('#getUnapprovedTxCount', function () {
it('should return the number of unapproved txs', function () {
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 1,
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 2,
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 3,
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
]);
const unapprovedTxCount = txController.getUnapprovedTxCount();
assert.equal(unapprovedTxCount, 3, 'should be 3');
});
});
2017-09-13 23:07:22 +02:00
describe('#getPendingTxCount', function () {
it('should return the number of pending txs', function () {
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 1,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 2,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 3,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
]);
const pendingTxCount = txController.getPendingTxCount();
assert.equal(pendingTxCount, 3, 'should be 3');
});
});
2017-09-13 23:07:22 +02:00
2017-09-23 01:15:18 +02:00
describe('#getConfirmedTransactions', function () {
it('should return the number of confirmed txs', function () {
const address = '0xc684832530fcbddae4b4230a47e991ddcec2831d';
2017-09-23 01:15:18 +02:00
const txParams = {
2020-11-03 00:41:28 +01:00
from: address,
to: '0xc684832530fcbddae4b4230a47e991ddcec2831d',
};
2017-09-23 01:15:18 +02:00
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 0,
status: TRANSACTION_STATUSES.CONFIRMED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 1,
status: TRANSACTION_STATUSES.CONFIRMED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 2,
status: TRANSACTION_STATUSES.CONFIRMED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 3,
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 4,
status: TRANSACTION_STATUSES.REJECTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 5,
status: TRANSACTION_STATUSES.APPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 6,
status: TRANSACTION_STATUSES.SIGNED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 7,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
{
id: 8,
status: TRANSACTION_STATUSES.FAILED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
]);
2020-11-03 00:41:28 +01:00
assert.equal(
txController.nonceTracker.getConfirmedTransactions(address).length,
3,
);
});
});
2017-09-23 01:15:18 +02:00
describe('#newUnapprovedTransaction', function () {
let stub, txMeta, txParams;
beforeEach(function () {
txParams = {
2020-11-03 00:41:28 +01:00
from: '0xc684832530fcbddae4b4230a47e991ddcec2831d',
to: '0xc684832530fcbddae4b4230a47e991ddcec2831d',
};
txMeta = {
status: TRANSACTION_STATUSES.UNAPPROVED,
id: 1,
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
};
txController.txStateManager._saveTxList([txMeta]);
2020-11-03 00:41:28 +01:00
stub = sinon
.stub(txController, 'addUnapprovedTransaction')
.callsFake(() => {
txController.emit('newUnapprovedTx', txMeta);
return Promise.resolve(txController.txStateManager.addTx(txMeta));
});
});
afterEach(function () {
txController.txStateManager._saveTxList([]);
stub.restore();
});
it('should resolve when finished and status is submitted and resolve with the hash', async function () {
txController.once('newUnapprovedTx', (txMetaFromEmit) => {
setTimeout(() => {
txController.setTxHash(txMetaFromEmit.id, '0x0');
txController.txStateManager.setTxStatusSubmitted(txMetaFromEmit.id);
});
});
const hash = await txController.newUnapprovedTransaction(txParams);
assert.ok(hash, 'newUnapprovedTransaction needs to return the hash');
});
it('should reject when finished and status is rejected', async function () {
txController.once('newUnapprovedTx', (txMetaFromEmit) => {
setTimeout(() => {
txController.txStateManager.setTxStatusRejected(txMetaFromEmit.id);
});
});
await assert.rejects(
() => txController.newUnapprovedTransaction(txParams),
2020-11-03 00:41:28 +01:00
{
message: 'MetaMask Tx Signature: User denied transaction signature.',
},
);
});
});
describe('#addUnapprovedTransaction', function () {
const selectedAddress = '0x1678a085c290ebd122dc42cba69373b5953b831d';
const recipientAddress = '0xc42edfcc21ed14dda456aa0756c153f7985d8813';
let getSelectedAddress, getPermittedAccounts;
beforeEach(function () {
2020-11-03 00:41:28 +01:00
getSelectedAddress = sinon
.stub(txController, 'getSelectedAddress')
.returns(selectedAddress);
2020-11-03 00:41:28 +01:00
getPermittedAccounts = sinon
.stub(txController, 'getPermittedAccounts')
.returns([selectedAddress]);
});
afterEach(function () {
getSelectedAddress.restore();
getPermittedAccounts.restore();
});
2018-01-14 23:01:37 +01:00
it('should add an unapproved transaction and return a valid txMeta', async function () {
2020-11-03 00:41:28 +01:00
const txMeta = await txController.addUnapprovedTransaction({
from: selectedAddress,
to: recipientAddress,
});
assert.ok('id' in txMeta, 'should have a id');
assert.ok('time' in txMeta, 'should have a time stamp');
2020-11-03 00:41:28 +01:00
assert.ok(
'metamaskNetworkId' in txMeta,
'should have a metamaskNetworkId',
);
assert.ok('txParams' in txMeta, 'should have a txParams');
assert.ok('history' in txMeta, 'should have a history');
2020-11-03 00:41:28 +01:00
assert.equal(
txMeta.txParams.value,
'0x0',
'should have added 0x0 as the value',
);
const memTxMeta = txController.txStateManager.getTx(txMeta.id);
assert.deepEqual(txMeta, memTxMeta);
});
2018-01-14 23:01:37 +01:00
it('should emit newUnapprovedTx event and pass txMeta as the first argument', function (done) {
providerResultStub.eth_gasPrice = '4a817c800';
2018-01-14 23:01:37 +01:00
txController.once('newUnapprovedTx', (txMetaFromEmit) => {
assert.ok(txMetaFromEmit, 'txMeta is falsy');
done();
});
2020-11-03 00:41:28 +01:00
txController
.addUnapprovedTransaction({
from: selectedAddress,
to: recipientAddress,
})
.catch(done);
});
2018-01-14 23:01:37 +01:00
it("should fail if the from address isn't the selected address", async function () {
2020-11-03 00:41:28 +01:00
await assert.rejects(() =>
txController.addUnapprovedTransaction({
from: '0x0d1d4e623D10F9FBA5Db95830F7d3839406C6AF2',
}),
);
});
it('should fail if netId is loading', async function () {
txController.networkStore = new ObservableStore('loading');
await assert.rejects(
2020-11-03 00:41:28 +01:00
() =>
txController.addUnapprovedTransaction({
from: selectedAddress,
to: '0x0d1d4e623D10F9FBA5Db95830F7d3839406C6AF2',
}),
{ message: 'MetaMask is having trouble connecting to the network' },
);
});
});
describe('#addTxGasDefaults', function () {
it('should add the tx defaults if their are none', async function () {
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 1,
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
]);
2017-09-23 01:15:18 +02:00
const txMeta = {
id: 1,
txParams: {
from: '0xc684832530fcbddae4b4230a47e991ddcec2831d',
to: '0xc684832530fcbddae4b4230a47e991ddcec2831d',
2017-08-02 17:34:45 +02:00
},
history: [{}],
};
providerResultStub.eth_gasPrice = '4a817c800';
providerResultStub.eth_getBlockByNumber = { gasLimit: '47b784' };
providerResultStub.eth_estimateGas = '5209';
const txMetaWithDefaults = await txController.addTxGasDefaults(txMeta);
2020-11-03 00:41:28 +01:00
assert.ok(
txMetaWithDefaults.txParams.gasPrice,
'should have added the gas price',
);
2020-11-03 00:41:28 +01:00
assert.ok(
txMetaWithDefaults.txParams.gas,
'should have added the gas field',
);
});
});
2017-08-02 17:34:45 +02:00
2017-05-04 23:35:10 +02:00
describe('#addTx', function () {
2017-08-11 23:19:35 +02:00
it('should emit updates', function (done) {
const txMeta = {
id: '1',
status: TRANSACTION_STATUSES.UNAPPROVED,
metamaskNetworkId: currentNetworkId,
2017-09-23 01:15:18 +02:00
txParams: {},
};
const eventNames = [
METAMASK_CONTROLLER_EVENTS.UPDATE_BADGE,
'1:unapproved',
];
const listeners = [];
2017-08-11 23:19:35 +02:00
eventNames.forEach((eventName) => {
2020-11-03 00:41:28 +01:00
listeners.push(
new Promise((resolve) => {
txController.once(eventName, (arg) => {
resolve(arg);
});
2020-11-03 00:41:28 +01:00
}),
);
});
2017-08-11 23:19:35 +02:00
Promise.all(listeners)
.then((returnValues) => {
2020-11-03 00:41:28 +01:00
assert.deepEqual(
returnValues.pop(),
txMeta,
'last event 1:unapproved should return txMeta',
);
done();
})
.catch(done);
txController.addTx(txMeta);
});
});
describe('#approveTransaction', function () {
it('does not overwrite set values', async function () {
const originalValue = '0x01';
const txMeta = {
id: '1',
status: TRANSACTION_STATUSES.UNAPPROVED,
metamaskNetworkId: currentNetworkId,
txParams: {
nonce: originalValue,
gas: originalValue,
gasPrice: originalValue,
},
};
this.timeout(15000);
const wrongValue = '0x05';
txController.addTx(txMeta);
providerResultStub.eth_gasPrice = wrongValue;
providerResultStub.eth_estimateGas = '0x5209';
2020-11-03 00:41:28 +01:00
const signStub = sinon
.stub(txController, 'signTransaction')
.callsFake(() => Promise.resolve());
2020-11-03 00:41:28 +01:00
const pubStub = sinon
.stub(txController, 'publishTransaction')
.callsFake(() => {
txController.setTxHash('1', originalValue);
txController.txStateManager.setTxStatusSubmitted('1');
});
await txController.approveTransaction(txMeta.id);
const result = txController.txStateManager.getTx(txMeta.id);
const params = result.txParams;
assert.equal(params.gas, originalValue, 'gas unmodified');
assert.equal(params.gasPrice, originalValue, 'gas price unmodified');
assert.equal(result.hash, originalValue);
2020-11-03 00:41:28 +01:00
assert.equal(
result.status,
TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
'should have reached the submitted status.',
);
signStub.restore();
pubStub.restore();
});
});
2017-05-04 23:35:10 +02:00
describe('#sign replay-protected tx', function () {
it('prepares a tx with the chainId set', async function () {
2020-11-03 00:41:28 +01:00
txController.addTx(
{
id: '1',
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
},
noop,
);
const rawTx = await txController.signTransaction('1');
const ethTx = new EthTx(ethUtil.toBuffer(rawTx));
assert.equal(ethTx.getChainId(), 42);
});
});
2017-09-23 01:15:18 +02:00
2017-09-26 04:47:03 +02:00
describe('#updateAndApproveTransaction', function () {
it('should update and approve transactions', async function () {
const txMeta = {
2017-09-26 04:47:03 +02:00
id: 1,
status: TRANSACTION_STATUSES.UNAPPROVED,
2017-09-26 04:47:03 +02:00
txParams: {
from: fromAccount.address,
2017-09-26 04:47:03 +02:00
to: '0x1678a085c290ebd122dc42cba69373b5953b831d',
gasPrice: '0x77359400',
gas: '0x7b0d',
nonce: '0x4b',
},
metamaskNetworkId: currentNetworkId,
};
txController.txStateManager.addTx(txMeta);
const approvalPromise = txController.updateAndApproveTransaction(txMeta);
const tx = txController.txStateManager.getTx(1);
assert.equal(tx.status, TRANSACTION_STATUSES.APPROVED);
await approvalPromise;
});
});
2017-09-23 01:15:18 +02:00
2017-09-26 04:47:03 +02:00
describe('#getChainId', function () {
it('returns 0 when the chainId is NaN', function () {
txController.networkStore = new ObservableStore('loading');
assert.equal(txController.getChainId(), 0);
});
});
2017-09-23 01:15:18 +02:00
describe('#cancelTransaction', function () {
it('should emit a status change to rejected', function (done) {
2017-09-26 04:47:03 +02:00
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 0,
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
txParams: {},
metamaskNetworkId: currentNetworkId,
history: [{}],
},
{
id: 1,
status: TRANSACTION_STATUSES.REJECTED,
2020-11-03 00:41:28 +01:00
txParams: {},
metamaskNetworkId: currentNetworkId,
history: [{}],
},
{
id: 2,
status: TRANSACTION_STATUSES.APPROVED,
2020-11-03 00:41:28 +01:00
txParams: {},
metamaskNetworkId: currentNetworkId,
history: [{}],
},
{
id: 3,
status: TRANSACTION_STATUSES.SIGNED,
2020-11-03 00:41:28 +01:00
txParams: {},
metamaskNetworkId: currentNetworkId,
history: [{}],
},
{
id: 4,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
txParams: {},
metamaskNetworkId: currentNetworkId,
history: [{}],
},
{
id: 5,
status: TRANSACTION_STATUSES.CONFIRMED,
2020-11-03 00:41:28 +01:00
txParams: {},
metamaskNetworkId: currentNetworkId,
history: [{}],
},
{
id: 6,
status: TRANSACTION_STATUSES.FAILED,
2020-11-03 00:41:28 +01:00
txParams: {},
metamaskNetworkId: currentNetworkId,
history: [{}],
},
]);
2017-09-23 01:15:18 +02:00
txController.once('tx:status-update', (txId, status) => {
try {
assert.equal(
status,
TRANSACTION_STATUSES.REJECTED,
'status should be rejected',
);
assert.equal(txId, 0, 'id should e 0');
done();
} catch (e) {
done(e);
}
});
txController.cancelTransaction(0);
});
});
2017-09-23 01:15:18 +02:00
describe('#createSpeedUpTransaction', function () {
let addTxSpy;
let approveTransactionSpy;
let txParams;
let expectedTxParams;
beforeEach(function () {
addTxSpy = sinon.spy(txController, 'addTx');
approveTransactionSpy = sinon.spy(txController, 'approveTransaction');
txParams = {
nonce: '0x00',
from: '0xB09d8505E1F4EF1CeA089D47094f5DD3464083d4',
to: '0xB09d8505E1F4EF1CeA089D47094f5DD3464083d4',
gas: '0x5209',
gasPrice: '0xa',
};
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 1,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams,
history: [{}],
},
]);
expectedTxParams = { ...txParams, gasPrice: '0xb' };
});
afterEach(function () {
addTxSpy.restore();
approveTransactionSpy.restore();
});
it('should call this.addTx and this.approveTransaction with the expected args', async function () {
await txController.createSpeedUpTransaction(1);
assert.equal(addTxSpy.callCount, 1);
const addTxArgs = addTxSpy.getCall(0).args[0];
assert.deepEqual(addTxArgs.txParams, expectedTxParams);
const { lastGasPrice, type } = addTxArgs;
2020-11-03 00:41:28 +01:00
assert.deepEqual(
{ lastGasPrice, type },
{
lastGasPrice: '0xa',
type: TRANSACTION_TYPES.RETRY,
2020-11-03 00:41:28 +01:00
},
);
});
it('should call this.approveTransaction with the id of the returned tx', async function () {
const result = await txController.createSpeedUpTransaction(1);
assert.equal(approveTransactionSpy.callCount, 1);
const approveTransactionArg = approveTransactionSpy.getCall(0).args[0];
assert.equal(result.id, approveTransactionArg);
});
it('should return the expected txMeta', async function () {
const result = await txController.createSpeedUpTransaction(1);
assert.deepEqual(result.txParams, expectedTxParams);
const { lastGasPrice, type } = result;
2020-11-03 00:41:28 +01:00
assert.deepEqual(
{ lastGasPrice, type },
{
lastGasPrice: '0xa',
type: TRANSACTION_TYPES.RETRY,
2020-11-03 00:41:28 +01:00
},
);
});
});
2017-09-23 01:15:18 +02:00
describe('#publishTransaction', function () {
let hash, txMeta;
2017-09-23 01:15:18 +02:00
beforeEach(function () {
2020-11-03 00:41:28 +01:00
hash =
'0x2a5523c6fa98b47b7d9b6c8320179785150b42a16bcff36b398c5062b65657e8';
2017-09-23 01:15:18 +02:00
txMeta = {
id: 1,
status: TRANSACTION_STATUSES.UNAPPROVED,
2017-09-23 01:15:18 +02:00
txParams: {},
metamaskNetworkId: currentNetworkId,
};
providerResultStub.eth_sendRawTransaction = hash;
});
2017-09-26 04:47:03 +02:00
2017-09-23 01:15:18 +02:00
it('should publish a tx, updates the rawTx when provided a one', async function () {
2020-11-03 00:41:28 +01:00
const rawTx =
'0x477b2e6553c917af0db0388ae3da62965ff1a184558f61b749d1266b2e6d024c';
txController.txStateManager.addTx(txMeta);
await txController.publishTransaction(txMeta.id, rawTx);
const publishedTx = txController.txStateManager.getTx(1);
assert.equal(publishedTx.hash, hash);
assert.equal(publishedTx.status, TRANSACTION_STATUSES.SUBMITTED);
});
it('should ignore the error "Transaction Failed: known transaction" and be as usual', async function () {
providerResultStub.eth_sendRawTransaction = async (_, __, ___, end) => {
end('Transaction Failed: known transaction');
};
2020-11-03 00:41:28 +01:00
const rawTx =
'0xf86204831e848082520894f231d46dd78806e1dd93442cf33c7671f853874880802ca05f973e540f2d3c2f06d3725a626b75247593cb36477187ae07ecfe0a4db3cf57a00259b52ee8c58baaa385fb05c3f96116e58de89bcc165cb3bfdfc708672fed8a';
txController.txStateManager.addTx(txMeta);
await txController.publishTransaction(txMeta.id, rawTx);
const publishedTx = txController.txStateManager.getTx(1);
2020-11-03 00:41:28 +01:00
assert.equal(
publishedTx.hash,
'0x2cc5a25744486f7383edebbf32003e5a66e18135799593d6b5cdd2bb43674f09',
);
assert.equal(publishedTx.status, TRANSACTION_STATUSES.SUBMITTED);
});
});
2017-09-23 01:15:18 +02:00
describe('#_markNonceDuplicatesDropped', function () {
it('should mark all nonce duplicates as dropped without marking the confirmed transaction as dropped', function () {
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 1,
status: TRANSACTION_STATUSES.CONFIRMED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
history: [{}],
txParams: { nonce: '0x01' },
},
{
id: 2,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
history: [{}],
txParams: { nonce: '0x01' },
},
{
id: 3,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
history: [{}],
txParams: { nonce: '0x01' },
},
{
id: 4,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
history: [{}],
txParams: { nonce: '0x01' },
},
{
id: 5,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
history: [{}],
txParams: { nonce: '0x01' },
},
{
id: 6,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
history: [{}],
txParams: { nonce: '0x01' },
},
{
id: 7,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
history: [{}],
txParams: { nonce: '0x01' },
},
]);
txController._markNonceDuplicatesDropped(1);
const confirmedTx = txController.txStateManager.getTx(1);
2020-11-03 00:41:28 +01:00
const droppedTxs = txController.txStateManager.getFilteredTxList({
nonce: '0x01',
status: TRANSACTION_STATUSES.DROPPED,
});
2020-11-03 00:41:28 +01:00
assert.equal(
confirmedTx.status,
TRANSACTION_STATUSES.CONFIRMED,
2020-11-03 00:41:28 +01:00
'the confirmedTx should remain confirmed',
);
assert.equal(droppedTxs.length, 6, 'their should be 6 dropped txs');
});
});
2017-09-23 01:15:18 +02:00
describe('#_determineTransactionCategory', function () {
it('should return a simple send transactionCategory when to is truthy but data is falsy', async function () {
const result = await txController._determineTransactionCategory({
to: '0xabc',
data: '',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.SENT_ETHER,
2020-11-03 00:41:28 +01:00
getCodeResponse: null,
});
});
it('should return a token transfer transactionCategory when data is for the respective method call', async function () {
const result = await txController._determineTransactionCategory({
to: '0xabc',
2020-11-03 00:41:28 +01:00
data:
'0xa9059cbb0000000000000000000000002f318C334780961FB129D2a6c30D0763d9a5C970000000000000000000000000000000000000000000000000000000000000000a',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.TOKEN_METHOD_TRANSFER,
2020-11-03 00:41:28 +01:00
getCodeResponse: undefined,
});
});
it('should return a token approve transactionCategory when data is for the respective method call', async function () {
const result = await txController._determineTransactionCategory({
to: '0xabc',
2020-11-03 00:41:28 +01:00
data:
'0x095ea7b30000000000000000000000002f318C334780961FB129D2a6c30D0763d9a5C9700000000000000000000000000000000000000000000000000000000000000005',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.TOKEN_METHOD_APPROVE,
2020-11-03 00:41:28 +01:00
getCodeResponse: undefined,
});
});
it('should return a contract deployment transactionCategory when to is falsy and there is data', async function () {
const result = await txController._determineTransactionCategory({
to: '',
data: '0xabd',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.DEPLOY_CONTRACT,
2020-11-03 00:41:28 +01:00
getCodeResponse: undefined,
});
});
it('should return a simple send transactionCategory with a 0x getCodeResponse when there is data and but the to address is not a contract address', async function () {
const result = await txController._determineTransactionCategory({
to: '0x9e673399f795D01116e9A8B2dD2F156705131ee9',
data: '0xabd',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.SENT_ETHER,
2020-11-03 00:41:28 +01:00
getCodeResponse: '0x',
});
});
it('should return a simple send transactionCategory with a null getCodeResponse when to is truthy and there is data and but getCode returns an error', async function () {
const result = await txController._determineTransactionCategory({
to: '0xabc',
data: '0xabd',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.SENT_ETHER,
2020-11-03 00:41:28 +01:00
getCodeResponse: null,
});
});
it('should return a contract interaction transactionCategory with the correct getCodeResponse when to is truthy and there is data and it is not a token transaction', async function () {
const _providerResultStub = {
// 1 gwei
eth_gasPrice: '0x0de0b6b3a7640000',
// by default, all accounts are external accounts (not contracts)
eth_getCode: '0xa',
};
2020-11-03 00:41:28 +01:00
const _provider = createTestProviderTools({
scaffold: _providerResultStub,
}).provider;
const _fromAccount = getTestAccounts()[0];
const _blockTrackerStub = new EventEmitter();
_blockTrackerStub.getCurrentBlock = noop;
_blockTrackerStub.getLatestBlock = noop;
const _txController = new TransactionController({
provider: _provider,
2020-11-03 00:41:28 +01:00
getGasPrice() {
return '0xee6b2800';
},
networkStore: new ObservableStore(currentNetworkId),
txHistoryLimit: 10,
blockTracker: _blockTrackerStub,
2020-11-03 00:41:28 +01:00
signTransaction: (ethTx) =>
new Promise((resolve) => {
ethTx.sign(_fromAccount.key);
resolve();
2020-11-03 00:41:28 +01:00
}),
getParticipateInMetrics: () => false,
});
const result = await _txController._determineTransactionCategory({
to: '0x9e673399f795D01116e9A8B2dD2F156705131ee9',
data: 'abd',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.CONTRACT_INTERACTION,
2020-11-03 00:41:28 +01:00
getCodeResponse: '0x0a',
});
});
it('should return a contract interaction transactionCategory with the correct getCodeResponse when to is a contract address and data is falsy', async function () {
const _providerResultStub = {
// 1 gwei
eth_gasPrice: '0x0de0b6b3a7640000',
// by default, all accounts are external accounts (not contracts)
eth_getCode: '0xa',
};
2020-11-03 00:41:28 +01:00
const _provider = createTestProviderTools({
scaffold: _providerResultStub,
}).provider;
const _fromAccount = getTestAccounts()[0];
const _blockTrackerStub = new EventEmitter();
_blockTrackerStub.getCurrentBlock = noop;
_blockTrackerStub.getLatestBlock = noop;
const _txController = new TransactionController({
provider: _provider,
2020-11-03 00:41:28 +01:00
getGasPrice() {
return '0xee6b2800';
},
networkStore: new ObservableStore(currentNetworkId),
txHistoryLimit: 10,
blockTracker: _blockTrackerStub,
2020-11-03 00:41:28 +01:00
signTransaction: (ethTx) =>
new Promise((resolve) => {
ethTx.sign(_fromAccount.key);
resolve();
2020-11-03 00:41:28 +01:00
}),
getParticipateInMetrics: () => false,
});
const result = await _txController._determineTransactionCategory({
to: '0x9e673399f795D01116e9A8B2dD2F156705131ee9',
data: '',
});
2020-11-03 00:41:28 +01:00
assert.deepEqual(result, {
transactionCategory: TRANSACTION_CATEGORIES.CONTRACT_INTERACTION,
2020-11-03 00:41:28 +01:00
getCodeResponse: '0x0a',
});
});
});
2017-09-23 01:15:18 +02:00
describe('#getPendingTransactions', function () {
it('should show only submitted and approved transactions as pending transaction', function () {
2017-09-23 01:15:18 +02:00
txController.txStateManager._saveTxList([
2020-11-03 00:41:28 +01:00
{
id: 1,
status: TRANSACTION_STATUSES.UNAPPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
},
{
id: 2,
status: TRANSACTION_STATUSES.REJECTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 3,
status: TRANSACTION_STATUSES.APPROVED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 4,
status: TRANSACTION_STATUSES.SIGNED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 5,
status: TRANSACTION_STATUSES.SUBMITTED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 6,
status: TRANSACTION_STATUSES.CONFIRMED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
{
id: 7,
status: TRANSACTION_STATUSES.FAILED,
2020-11-03 00:41:28 +01:00
metamaskNetworkId: currentNetworkId,
txParams: {},
history: [{}],
},
]);
2020-11-03 00:41:28 +01:00
assert.equal(
txController.pendingTxTracker.getPendingTransactions().length,
2,
);
2020-11-03 00:41:28 +01:00
const states = txController.pendingTxTracker
.getPendingTransactions()
.map((tx) => tx.status);
assert.ok(
states.includes(TRANSACTION_STATUSES.APPROVED),
'includes approved',
);
assert.ok(
states.includes(TRANSACTION_STATUSES.SUBMITTED),
'includes submitted',
);
});
});
});