You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
934 lines
27 KiB
934 lines
27 KiB
4 years ago
|
import { strict as assert } from 'assert';
|
||
|
import sinon from 'sinon';
|
||
4 years ago
|
import { TRANSACTION_STATUSES } from '../../../../shared/constants/transaction';
|
||
4 years ago
|
import {
|
||
|
KOVAN_CHAIN_ID,
|
||
|
KOVAN_NETWORK_ID,
|
||
4 years ago
|
} from '../../../../shared/constants/network';
|
||
|
import TxStateManager from './tx-state-manager';
|
||
|
import { snapshotFromTxMeta } from './lib/tx-state-history-helpers';
|
||
5 years ago
|
|
||
4 years ago
|
const noop = () => true;
|
||
7 years ago
|
|
||
7 years ago
|
describe('TransactionStateManager', function () {
|
||
4 years ago
|
let txStateManager;
|
||
4 years ago
|
const currentNetworkId = KOVAN_NETWORK_ID;
|
||
|
const currentChainId = KOVAN_CHAIN_ID;
|
||
4 years ago
|
const otherNetworkId = '2';
|
||
7 years ago
|
|
||
|
beforeEach(function () {
|
||
|
txStateManager = new TxStateManager({
|
||
|
initState: {
|
||
|
transactions: [],
|
||
|
},
|
||
|
txHistoryLimit: 10,
|
||
6 years ago
|
getNetwork: () => currentNetworkId,
|
||
4 years ago
|
getCurrentChainId: () => currentChainId,
|
||
4 years ago
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#setTxStatusSigned', function () {
|
||
|
it('sets the tx status to signed', function () {
|
||
4 years ago
|
const tx = {
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(tx, noop);
|
||
|
txStateManager.setTxStatusSigned(1);
|
||
|
const result = txStateManager.getTxList();
|
||
|
assert.ok(Array.isArray(result));
|
||
|
assert.equal(result.length, 1);
|
||
|
assert.equal(result[0].status, TRANSACTION_STATUSES.SIGNED);
|
||
|
});
|
||
7 years ago
|
|
||
5 years ago
|
it('should emit a signed event to signal the execution of callback', function () {
|
||
4 years ago
|
const tx = {
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
const clock = sinon.useFakeTimers();
|
||
|
const onSigned = sinon.spy();
|
||
5 years ago
|
|
||
4 years ago
|
txStateManager.addTx(tx);
|
||
|
txStateManager.on('1:signed', onSigned);
|
||
|
txStateManager.setTxStatusSigned(1);
|
||
|
clock.runAll();
|
||
|
clock.restore();
|
||
7 years ago
|
|
||
4 years ago
|
assert.ok(onSigned.calledOnce);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#setTxStatusRejected', function () {
|
||
5 years ago
|
it('sets the tx status to rejected and removes it from history', function () {
|
||
4 years ago
|
const tx = {
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(tx);
|
||
|
txStateManager.setTxStatusRejected(1);
|
||
|
const result = txStateManager.getTxList();
|
||
|
assert.ok(Array.isArray(result));
|
||
|
assert.equal(result.length, 0);
|
||
|
});
|
||
6 years ago
|
|
||
5 years ago
|
it('should emit a rejected event to signal the execution of callback', function () {
|
||
4 years ago
|
const tx = {
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
const clock = sinon.useFakeTimers();
|
||
|
const onSigned = sinon.spy();
|
||
5 years ago
|
|
||
4 years ago
|
txStateManager.addTx(tx);
|
||
|
txStateManager.on('1:rejected', onSigned);
|
||
|
txStateManager.setTxStatusRejected(1);
|
||
|
clock.runAll();
|
||
|
clock.restore();
|
||
5 years ago
|
|
||
4 years ago
|
assert.ok(onSigned.calledOnce);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#getFullTxList', function () {
|
||
|
it('when new should return empty array', function () {
|
||
4 years ago
|
const result = txStateManager.getTxList();
|
||
|
assert.ok(Array.isArray(result));
|
||
|
assert.equal(result.length, 0);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#getTxList', function () {
|
||
|
it('when new should return empty array', function () {
|
||
4 years ago
|
const result = txStateManager.getTxList();
|
||
|
assert.ok(Array.isArray(result));
|
||
|
assert.equal(result.length, 0);
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should return a full list of transactions', function () {
|
||
|
const submittedTx = {
|
||
|
id: 0,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 0,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x0',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.SUBMITTED,
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
|
const confirmedTx = {
|
||
|
id: 3,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 3,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x3',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
|
const txm = new TxStateManager({
|
||
|
initState: {
|
||
4 years ago
|
transactions: [submittedTx, confirmedTx],
|
||
4 years ago
|
},
|
||
|
getNetwork: () => currentNetworkId,
|
||
4 years ago
|
getCurrentChainId: () => currentChainId,
|
||
4 years ago
|
});
|
||
4 years ago
|
|
||
4 years ago
|
assert.deepEqual(txm.getTxList(), [submittedTx, confirmedTx]);
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should return a list of transactions, limited by N unique nonces when there are NO duplicates', function () {
|
||
|
const submittedTx0 = {
|
||
|
id: 0,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 0,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x0',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.SUBMITTED,
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
|
const unapprovedTx1 = {
|
||
|
id: 1,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 1,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x1',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
|
const approvedTx2 = {
|
||
|
id: 2,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 2,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x2',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.APPROVED,
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
|
const confirmedTx3 = {
|
||
|
id: 3,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 3,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x3',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
|
const txm = new TxStateManager({
|
||
|
initState: {
|
||
|
transactions: [
|
||
|
submittedTx0,
|
||
|
unapprovedTx1,
|
||
|
approvedTx2,
|
||
|
confirmedTx3,
|
||
|
],
|
||
|
},
|
||
|
getNetwork: () => currentNetworkId,
|
||
4 years ago
|
getCurrentChainId: () => currentChainId,
|
||
4 years ago
|
});
|
||
4 years ago
|
|
||
4 years ago
|
assert.deepEqual(txm.getTxList(2), [approvedTx2, confirmedTx3]);
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should return a list of transactions, limited by N unique nonces when there ARE duplicates', function () {
|
||
|
const submittedTx0s = [
|
||
|
{
|
||
|
id: 0,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 0,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x0',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.SUBMITTED,
|
||
4 years ago
|
},
|
||
|
{
|
||
|
id: 0,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 0,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x0',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.SUBMITTED,
|
||
4 years ago
|
},
|
||
4 years ago
|
];
|
||
4 years ago
|
|
||
|
const unapprovedTx1 = {
|
||
|
id: 1,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
4 years ago
|
chainId: currentChainId,
|
||
4 years ago
|
time: 1,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x1',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
|
const approvedTx2s = [
|
||
|
{
|
||
|
id: 2,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 2,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x2',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.APPROVED,
|
||
4 years ago
|
},
|
||
|
{
|
||
|
id: 2,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
4 years ago
|
chainId: currentChainId,
|
||
4 years ago
|
time: 2,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x2',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.APPROVED,
|
||
4 years ago
|
},
|
||
4 years ago
|
];
|
||
4 years ago
|
|
||
|
const failedTx3s = [
|
||
|
{
|
||
|
id: 3,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
time: 3,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x3',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.FAILED,
|
||
4 years ago
|
},
|
||
|
{
|
||
|
id: 3,
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
4 years ago
|
chainId: currentChainId,
|
||
4 years ago
|
time: 3,
|
||
|
txParams: {
|
||
|
from: '0xAddress',
|
||
|
to: '0xRecipient',
|
||
|
nonce: '0x3',
|
||
|
},
|
||
4 years ago
|
status: TRANSACTION_STATUSES.FAILED,
|
||
4 years ago
|
},
|
||
4 years ago
|
];
|
||
4 years ago
|
|
||
|
const txm = new TxStateManager({
|
||
|
initState: {
|
||
|
transactions: [
|
||
|
...submittedTx0s,
|
||
|
unapprovedTx1,
|
||
|
...approvedTx2s,
|
||
|
...failedTx3s,
|
||
|
],
|
||
|
},
|
||
|
getNetwork: () => currentNetworkId,
|
||
4 years ago
|
getCurrentChainId: () => currentChainId,
|
||
4 years ago
|
});
|
||
4 years ago
|
|
||
4 years ago
|
assert.deepEqual(txm.getTxList(2), [...approvedTx2s, ...failedTx3s]);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#addTx', function () {
|
||
|
it('adds a tx returned in getTxList', function () {
|
||
4 years ago
|
const tx = {
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(tx, noop);
|
||
|
const result = txStateManager.getTxList();
|
||
|
assert.ok(Array.isArray(result));
|
||
|
assert.equal(result.length, 1);
|
||
|
assert.equal(result[0].id, 1);
|
||
|
});
|
||
7 years ago
|
|
||
5 years ago
|
it('throws error and does not add tx if txParams are invalid', function () {
|
||
|
const validTxParams = {
|
||
|
from: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
||
|
to: '0x0039f22efb07a647557c7c5d17854cfd6d489ef3',
|
||
|
nonce: '0x3',
|
||
|
gas: '0x77359400',
|
||
|
gasPrice: '0x77359400',
|
||
|
value: '0x0',
|
||
|
data: '0x0',
|
||
4 years ago
|
};
|
||
|
const invalidValues = [1, true, {}, Symbol('1')];
|
||
5 years ago
|
|
||
4 years ago
|
Object.keys(validTxParams).forEach((key) => {
|
||
5 years ago
|
for (const value of invalidValues) {
|
||
|
const tx = {
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
5 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {
|
||
|
...validTxParams,
|
||
|
[key]: value,
|
||
|
},
|
||
4 years ago
|
};
|
||
4 years ago
|
assert.throws(
|
||
|
txStateManager.addTx.bind(txStateManager, tx),
|
||
|
'addTx should throw error',
|
||
4 years ago
|
);
|
||
|
const result = txStateManager.getTxList();
|
||
|
assert.ok(Array.isArray(result), 'txList should be an array');
|
||
|
assert.equal(result.length, 0, 'txList should be empty');
|
||
5 years ago
|
}
|
||
4 years ago
|
});
|
||
|
});
|
||
5 years ago
|
|
||
7 years ago
|
it('does not override txs from other networks', function () {
|
||
4 years ago
|
const tx = {
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
4 years ago
|
const tx2 = {
|
||
|
id: 2,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: otherNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(tx, noop);
|
||
|
txStateManager.addTx(tx2, noop);
|
||
|
const result = txStateManager.getFullTxList();
|
||
|
const result2 = txStateManager.getTxList();
|
||
|
assert.equal(result.length, 2, 'txs were deleted');
|
||
|
assert.equal(result2.length, 1, 'incorrect number of txs on network.');
|
||
|
});
|
||
7 years ago
|
|
||
|
it('cuts off early txs beyond a limit', function () {
|
||
4 years ago
|
const limit = txStateManager.txHistoryLimit;
|
||
7 years ago
|
for (let i = 0; i < limit + 1; i++) {
|
||
4 years ago
|
const tx = {
|
||
|
id: i,
|
||
|
time: new Date(),
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(tx, noop);
|
||
7 years ago
|
}
|
||
4 years ago
|
const result = txStateManager.getTxList();
|
||
|
assert.equal(result.length, limit, `limit of ${limit} txs enforced`);
|
||
|
assert.equal(result[0].id, 1, 'early txs truncated');
|
||
|
});
|
||
7 years ago
|
|
||
|
it('cuts off early txs beyond a limit whether or not it is confirmed or rejected', function () {
|
||
4 years ago
|
const limit = txStateManager.txHistoryLimit;
|
||
7 years ago
|
for (let i = 0; i < limit + 1; i++) {
|
||
4 years ago
|
const tx = {
|
||
|
id: i,
|
||
|
time: new Date(),
|
||
4 years ago
|
status: TRANSACTION_STATUSES.REJECTED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(tx, noop);
|
||
7 years ago
|
}
|
||
4 years ago
|
const result = txStateManager.getTxList();
|
||
|
assert.equal(result.length, limit, `limit of ${limit} txs enforced`);
|
||
|
assert.equal(result[0].id, 1, 'early txs truncated');
|
||
|
});
|
||
7 years ago
|
|
||
|
it('cuts off early txs beyond a limit but does not cut unapproved txs', function () {
|
||
4 years ago
|
const unconfirmedTx = {
|
||
|
id: 0,
|
||
|
time: new Date(),
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(unconfirmedTx, noop);
|
||
|
const limit = txStateManager.txHistoryLimit;
|
||
7 years ago
|
for (let i = 1; i < limit + 1; i++) {
|
||
4 years ago
|
const tx = {
|
||
|
id: i,
|
||
|
time: new Date(),
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
4 years ago
|
};
|
||
|
txStateManager.addTx(tx, noop);
|
||
7 years ago
|
}
|
||
4 years ago
|
const result = txStateManager.getTxList();
|
||
|
assert.equal(result.length, limit, `limit of ${limit} txs enforced`);
|
||
|
assert.equal(result[0].id, 0, 'first tx should still be there');
|
||
4 years ago
|
assert.equal(
|
||
|
result[0].status,
|
||
4 years ago
|
TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
'first tx should be unapproved',
|
||
4 years ago
|
);
|
||
|
assert.equal(result[1].id, 2, 'early txs truncated');
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#updateTx', function () {
|
||
|
it('replaces the tx with the same id', function () {
|
||
4 years ago
|
txStateManager.addTx(
|
||
|
{
|
||
|
id: '1',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
|
},
|
||
|
noop,
|
||
4 years ago
|
);
|
||
4 years ago
|
txStateManager.addTx(
|
||
|
{
|
||
|
id: '2',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
|
},
|
||
|
noop,
|
||
4 years ago
|
);
|
||
|
const txMeta = txStateManager.getTx('1');
|
||
|
txMeta.hash = 'foo';
|
||
|
txStateManager.updateTx(txMeta);
|
||
|
const result = txStateManager.getTx('1');
|
||
|
assert.equal(result.hash, 'foo');
|
||
|
});
|
||
7 years ago
|
|
||
5 years ago
|
it('throws error and does not update tx if txParams are invalid', function () {
|
||
|
const validTxParams = {
|
||
|
from: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
||
|
to: '0x0039f22efb07a647557c7c5d17854cfd6d489ef3',
|
||
|
nonce: '0x3',
|
||
|
gas: '0x77359400',
|
||
|
gasPrice: '0x77359400',
|
||
|
value: '0x0',
|
||
|
data: '0x0',
|
||
4 years ago
|
};
|
||
|
const invalidValues = [1, true, {}, Symbol('1')];
|
||
5 years ago
|
|
||
4 years ago
|
txStateManager.addTx({
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: validTxParams,
|
||
4 years ago
|
});
|
||
5 years ago
|
|
||
4 years ago
|
Object.keys(validTxParams).forEach((key) => {
|
||
5 years ago
|
for (const value of invalidValues) {
|
||
4 years ago
|
const originalTx = txStateManager.getTx(1);
|
||
5 years ago
|
const newTx = {
|
||
|
...originalTx,
|
||
|
txParams: {
|
||
|
...originalTx.txParams,
|
||
|
[key]: value,
|
||
|
},
|
||
4 years ago
|
};
|
||
4 years ago
|
assert.throws(
|
||
|
txStateManager.updateTx.bind(txStateManager, newTx),
|
||
|
'updateTx should throw an error',
|
||
4 years ago
|
);
|
||
|
const result = txStateManager.getTx(1);
|
||
|
assert.deepEqual(result, originalTx, 'tx should not be updated');
|
||
5 years ago
|
}
|
||
4 years ago
|
});
|
||
|
});
|
||
5 years ago
|
|
||
7 years ago
|
it('updates gas price and adds history items', function () {
|
||
4 years ago
|
const originalGasPrice = '0x01';
|
||
|
const desiredGasPrice = '0x02';
|
||
7 years ago
|
|
||
|
const txMeta = {
|
||
|
id: '1',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
7 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {
|
||
|
gasPrice: originalGasPrice,
|
||
|
},
|
||
4 years ago
|
};
|
||
7 years ago
|
|
||
4 years ago
|
txStateManager.addTx(txMeta);
|
||
|
const updatedTx = txStateManager.getTx('1');
|
||
7 years ago
|
// verify tx was initialized correctly
|
||
4 years ago
|
assert.equal(updatedTx.history.length, 1, 'one history item (initial)');
|
||
4 years ago
|
assert.equal(
|
||
|
Array.isArray(updatedTx.history[0]),
|
||
|
false,
|
||
|
'first history item is initial state',
|
||
4 years ago
|
);
|
||
4 years ago
|
assert.deepEqual(
|
||
|
updatedTx.history[0],
|
||
|
snapshotFromTxMeta(updatedTx),
|
||
|
'first history item is initial state',
|
||
4 years ago
|
);
|
||
7 years ago
|
// modify value and updateTx
|
||
4 years ago
|
updatedTx.txParams.gasPrice = desiredGasPrice;
|
||
|
const before = new Date().getTime();
|
||
|
txStateManager.updateTx(updatedTx);
|
||
|
const after = new Date().getTime();
|
||
7 years ago
|
// check updated value
|
||
4 years ago
|
const result = txStateManager.getTx('1');
|
||
4 years ago
|
assert.equal(
|
||
|
result.txParams.gasPrice,
|
||
|
desiredGasPrice,
|
||
|
'gas price updated',
|
||
4 years ago
|
);
|
||
7 years ago
|
// validate history was updated
|
||
4 years ago
|
assert.equal(
|
||
|
result.history.length,
|
||
|
2,
|
||
|
'two history items (initial + diff)',
|
||
4 years ago
|
);
|
||
4 years ago
|
assert.equal(
|
||
|
result.history[1].length,
|
||
|
1,
|
||
|
'two history state items (initial + diff)',
|
||
4 years ago
|
);
|
||
4 years ago
|
|
||
|
const expectedEntry = {
|
||
|
op: 'replace',
|
||
|
path: '/txParams/gasPrice',
|
||
|
value: desiredGasPrice,
|
||
4 years ago
|
};
|
||
4 years ago
|
assert.deepEqual(
|
||
|
result.history[1][0].op,
|
||
|
expectedEntry.op,
|
||
|
'two history items (initial + diff) operation',
|
||
4 years ago
|
);
|
||
4 years ago
|
assert.deepEqual(
|
||
|
result.history[1][0].path,
|
||
|
expectedEntry.path,
|
||
|
'two history items (initial + diff) path',
|
||
4 years ago
|
);
|
||
4 years ago
|
assert.deepEqual(
|
||
|
result.history[1][0].value,
|
||
|
expectedEntry.value,
|
||
|
'two history items (initial + diff) value',
|
||
4 years ago
|
);
|
||
4 years ago
|
assert.ok(
|
||
|
result.history[1][0].timestamp >= before &&
|
||
|
result.history[1][0].timestamp <= after,
|
||
4 years ago
|
);
|
||
|
});
|
||
5 years ago
|
|
||
|
it('does NOT add empty history items', function () {
|
||
|
const txMeta = {
|
||
|
id: '1',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
5 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {
|
||
|
gasPrice: '0x01',
|
||
|
},
|
||
4 years ago
|
};
|
||
5 years ago
|
|
||
4 years ago
|
txStateManager.addTx(txMeta);
|
||
|
txStateManager.updateTx(txMeta);
|
||
5 years ago
|
|
||
4 years ago
|
const { history } = txStateManager.getTx('1');
|
||
|
assert.equal(history.length, 1, 'two history items (initial + diff)');
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#getUnapprovedTxList', function () {
|
||
|
it('returns unapproved txs in a hash', function () {
|
||
4 years ago
|
txStateManager.addTx(
|
||
|
{
|
||
|
id: '1',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
|
},
|
||
|
noop,
|
||
4 years ago
|
);
|
||
4 years ago
|
txStateManager.addTx(
|
||
|
{
|
||
|
id: '2',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
|
},
|
||
|
noop,
|
||
4 years ago
|
);
|
||
|
const result = txStateManager.getUnapprovedTxList();
|
||
|
assert.equal(typeof result, 'object');
|
||
|
assert.equal(result['1'].status, TRANSACTION_STATUSES.UNAPPROVED);
|
||
|
assert.equal(result['2'], undefined);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#getTx', function () {
|
||
|
it('returns a tx with the requested id', function () {
|
||
4 years ago
|
txStateManager.addTx(
|
||
|
{
|
||
|
id: '1',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
|
},
|
||
|
noop,
|
||
4 years ago
|
);
|
||
4 years ago
|
txStateManager.addTx(
|
||
|
{
|
||
|
id: '2',
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
metamaskNetworkId: currentNetworkId,
|
||
|
txParams: {},
|
||
|
},
|
||
|
noop,
|
||
4 years ago
|
);
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getTx('1').status,
|
||
|
TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
);
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getTx('2').status,
|
||
|
TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#getFilteredTxList', function () {
|
||
|
it('returns a tx with the requested data', function () {
|
||
|
const txMetas = [
|
||
4 years ago
|
{
|
||
|
id: 0,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 3,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: '0xbb', to: '0xaa' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 4,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: '0xbb', to: '0xaa' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 5,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 6,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 7,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: '0xbb', to: '0xaa' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 8,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: '0xbb', to: '0xaa' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 9,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: '0xbb', to: '0xaa' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
4 years ago
|
];
|
||
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop));
|
||
|
let filterParams;
|
||
7 years ago
|
|
||
4 years ago
|
filterParams = { status: TRANSACTION_STATUSES.UNAPPROVED, from: '0xaa' };
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFilteredTxList(filterParams).length,
|
||
|
3,
|
||
|
`getFilteredTxList - ${JSON.stringify(filterParams)}`,
|
||
4 years ago
|
);
|
||
|
filterParams = { status: TRANSACTION_STATUSES.UNAPPROVED, to: '0xaa' };
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFilteredTxList(filterParams).length,
|
||
|
2,
|
||
|
`getFilteredTxList - ${JSON.stringify(filterParams)}`,
|
||
4 years ago
|
);
|
||
|
filterParams = { status: TRANSACTION_STATUSES.CONFIRMED, from: '0xbb' };
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFilteredTxList(filterParams).length,
|
||
|
3,
|
||
|
`getFilteredTxList - ${JSON.stringify(filterParams)}`,
|
||
4 years ago
|
);
|
||
|
filterParams = { status: TRANSACTION_STATUSES.CONFIRMED };
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFilteredTxList(filterParams).length,
|
||
|
5,
|
||
|
`getFilteredTxList - ${JSON.stringify(filterParams)}`,
|
||
4 years ago
|
);
|
||
|
filterParams = { from: '0xaa' };
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFilteredTxList(filterParams).length,
|
||
|
5,
|
||
|
`getFilteredTxList - ${JSON.stringify(filterParams)}`,
|
||
4 years ago
|
);
|
||
|
filterParams = { to: '0xaa' };
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFilteredTxList(filterParams).length,
|
||
|
5,
|
||
|
`getFilteredTxList - ${JSON.stringify(filterParams)}`,
|
||
4 years ago
|
);
|
||
4 years ago
|
filterParams = {
|
||
|
status: (status) => status !== TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
};
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFilteredTxList(filterParams).length,
|
||
|
5,
|
||
|
`getFilteredTxList - ${JSON.stringify(filterParams)}`,
|
||
4 years ago
|
);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#wipeTransactions', function () {
|
||
4 years ago
|
const specificAddress = '0xaa';
|
||
|
const otherAddress = '0xbb';
|
||
7 years ago
|
|
||
|
it('should remove only the transactions from a specific address', function () {
|
||
|
const txMetas = [
|
||
4 years ago
|
{
|
||
|
id: 0,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: specificAddress, to: otherAddress },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: otherAddress, to: specificAddress },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: otherAddress, to: specificAddress },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
4 years ago
|
];
|
||
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop));
|
||
7 years ago
|
|
||
4 years ago
|
txStateManager.wipeTransactions(specificAddress);
|
||
7 years ago
|
|
||
4 years ago
|
const transactionsFromCurrentAddress = txStateManager
|
||
|
.getTxList()
|
||
4 years ago
|
.filter((txMeta) => txMeta.txParams.from === specificAddress);
|
||
4 years ago
|
const transactionsFromOtherAddresses = txStateManager
|
||
|
.getTxList()
|
||
4 years ago
|
.filter((txMeta) => txMeta.txParams.from !== specificAddress);
|
||
7 years ago
|
|
||
4 years ago
|
assert.equal(transactionsFromCurrentAddress.length, 0);
|
||
|
assert.equal(transactionsFromOtherAddresses.length, 2);
|
||
|
});
|
||
7 years ago
|
|
||
|
it('should not remove the transactions from other networks', function () {
|
||
|
const txMetas = [
|
||
4 years ago
|
{
|
||
|
id: 0,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: specificAddress, to: otherAddress },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: specificAddress, to: otherAddress },
|
||
|
metamaskNetworkId: otherNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: specificAddress, to: otherAddress },
|
||
|
metamaskNetworkId: otherNetworkId,
|
||
|
},
|
||
4 years ago
|
];
|
||
7 years ago
|
|
||
4 years ago
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop));
|
||
7 years ago
|
|
||
4 years ago
|
txStateManager.wipeTransactions(specificAddress);
|
||
7 years ago
|
|
||
4 years ago
|
const txsFromCurrentNetworkAndAddress = txStateManager
|
||
|
.getTxList()
|
||
4 years ago
|
.filter((txMeta) => txMeta.txParams.from === specificAddress);
|
||
4 years ago
|
const txFromOtherNetworks = txStateManager
|
||
|
.getFullTxList()
|
||
4 years ago
|
.filter((txMeta) => txMeta.metamaskNetworkId === otherNetworkId);
|
||
7 years ago
|
|
||
4 years ago
|
assert.equal(txsFromCurrentNetworkAndAddress.length, 0);
|
||
|
assert.equal(txFromOtherNetworks.length, 2);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
|
||
7 years ago
|
describe('#_removeTx', function () {
|
||
5 years ago
|
it('should remove the transaction from the storage', function () {
|
||
4 years ago
|
txStateManager._saveTxList([{ id: 1 }]);
|
||
|
txStateManager._removeTx(1);
|
||
4 years ago
|
assert.ok(
|
||
|
!txStateManager.getFullTxList().length,
|
||
|
'txList should be empty',
|
||
4 years ago
|
);
|
||
|
});
|
||
7 years ago
|
|
||
5 years ago
|
it('should only remove the transaction with ID 1 from the storage', function () {
|
||
4 years ago
|
txStateManager._saveTxList([{ id: 1 }, { id: 2 }]);
|
||
|
txStateManager._removeTx(1);
|
||
4 years ago
|
assert.equal(
|
||
|
txStateManager.getFullTxList()[0].id,
|
||
|
2,
|
||
|
'txList should have a id of 2',
|
||
4 years ago
|
);
|
||
|
});
|
||
|
});
|
||
4 years ago
|
|
||
|
describe('#clearUnapprovedTxs', function () {
|
||
|
it('removes unapproved transactions', function () {
|
||
|
const txMetas = [
|
||
4 years ago
|
{
|
||
|
id: 0,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 1,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: currentNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: otherNetworkId,
|
||
|
},
|
||
|
{
|
||
|
id: 3,
|
||
4 years ago
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
4 years ago
|
txParams: { from: '0xaa', to: '0xbb' },
|
||
|
metamaskNetworkId: otherNetworkId,
|
||
|
},
|
||
4 years ago
|
];
|
||
4 years ago
|
|
||
4 years ago
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop));
|
||
4 years ago
|
|
||
4 years ago
|
txStateManager.clearUnapprovedTxs();
|
||
4 years ago
|
|
||
4 years ago
|
const unapprovedTxList = txStateManager
|
||
|
.getFullTxList()
|
||
4 years ago
|
.filter((tx) => tx.status === TRANSACTION_STATUSES.UNAPPROVED);
|
||
4 years ago
|
|
||
4 years ago
|
assert.equal(unapprovedTxList.length, 0);
|
||
|
});
|
||
|
});
|
||
|
});
|