|
|
@ -241,14 +241,15 @@ describe('TransactionStateManger', function () { |
|
|
|
|
|
|
|
|
|
|
|
describe('#wipeTransactions', function () { |
|
|
|
describe('#wipeTransactions', function () { |
|
|
|
|
|
|
|
|
|
|
|
const specificAddress = '0xaa'; |
|
|
|
const specificAddress = '0xaa' |
|
|
|
|
|
|
|
const otherAddress = '0xbb' |
|
|
|
|
|
|
|
|
|
|
|
it('should remove only the transactions from a specific address', function () { |
|
|
|
it('should remove only the transactions from a specific address', function () { |
|
|
|
|
|
|
|
|
|
|
|
const txMetas = [ |
|
|
|
const txMetas = [ |
|
|
|
{ id: 0, status: 'unapproved', txParams: { from: specificAddress, to: '0xbb' }, metamaskNetworkId: currentNetworkId }, |
|
|
|
{ id: 0, status: 'unapproved', txParams: { from: specificAddress, to: otherAddress }, metamaskNetworkId: currentNetworkId }, |
|
|
|
{ id: 1, status: 'confirmed', txParams: { from: '0xbb', to: specificAddress }, metamaskNetworkId: currentNetworkId }, |
|
|
|
{ id: 1, status: 'confirmed', txParams: { from: otherAddress, to: specificAddress }, metamaskNetworkId: currentNetworkId }, |
|
|
|
{ id: 2, status: 'confirmed', txParams: { from: '0xcc', to: specificAddress }, metamaskNetworkId: currentNetworkId }, |
|
|
|
{ id: 2, status: 'confirmed', txParams: { from: otherAddress, to: specificAddress }, metamaskNetworkId: currentNetworkId }, |
|
|
|
] |
|
|
|
] |
|
|
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop)) |
|
|
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop)) |
|
|
|
|
|
|
|
|
|
|
@ -257,18 +258,15 @@ describe('TransactionStateManger', function () { |
|
|
|
const transactionsFromCurrentAddress = txStateManager.getTxList().filter((txMeta) => txMeta.txParams.from === specificAddress) |
|
|
|
const transactionsFromCurrentAddress = txStateManager.getTxList().filter((txMeta) => txMeta.txParams.from === specificAddress) |
|
|
|
const transactionsFromOtherAddresses = txStateManager.getTxList().filter((txMeta) => txMeta.txParams.from !== specificAddress) |
|
|
|
const transactionsFromOtherAddresses = txStateManager.getTxList().filter((txMeta) => txMeta.txParams.from !== specificAddress) |
|
|
|
|
|
|
|
|
|
|
|
assert.equal(transactionsFromCurrentAddress.length, 0); |
|
|
|
assert.equal(transactionsFromCurrentAddress.length, 0) |
|
|
|
assert.equal(transactionsFromOtherAddresses.length, 2); |
|
|
|
assert.equal(transactionsFromOtherAddresses.length, 2) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
it('should not remove the transactions from other networks', function () { |
|
|
|
it('should not remove the transactions from other networks', function () { |
|
|
|
|
|
|
|
|
|
|
|
const txMetas = [ |
|
|
|
const txMetas = [ |
|
|
|
{ id: 0, status: 'unapproved', txParams: { from: specificAddress, to: '0xbb' }, metamaskNetworkId: currentNetworkId }, |
|
|
|
{ id: 0, status: 'unapproved', txParams: { from: specificAddress, to: otherAddress }, metamaskNetworkId: currentNetworkId }, |
|
|
|
{ id: 1, status: 'confirmed', txParams: { from: specificAddress, to: specificAddress }, metamaskNetworkId: otherNetworkId }, |
|
|
|
{ id: 1, status: 'confirmed', txParams: { from: specificAddress, to: otherAddress }, metamaskNetworkId: otherNetworkId }, |
|
|
|
{ id: 2, status: 'confirmed', txParams: { from: specificAddress, to: specificAddress }, metamaskNetworkId: otherNetworkId }, |
|
|
|
{ id: 2, status: 'confirmed', txParams: { from: specificAddress, to: otherAddress }, metamaskNetworkId: otherNetworkId }, |
|
|
|
] |
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop)) |
|
|
|
txMetas.forEach((txMeta) => txStateManager.addTx(txMeta, noop)) |
|
|
@ -276,14 +274,10 @@ describe('TransactionStateManger', function () { |
|
|
|
txStateManager.wipeTransactions(specificAddress) |
|
|
|
txStateManager.wipeTransactions(specificAddress) |
|
|
|
|
|
|
|
|
|
|
|
const txsFromCurrentNetworkAndAddress = txStateManager.getTxList().filter((txMeta) => txMeta.txParams.from === specificAddress) |
|
|
|
const txsFromCurrentNetworkAndAddress = txStateManager.getTxList().filter((txMeta) => txMeta.txParams.from === specificAddress) |
|
|
|
const txFromOtherNetworks= txStateManager.getFullTxList().filter((txMeta) => txMeta.metamaskNetworkId === otherNetworkId) |
|
|
|
const txFromOtherNetworks = txStateManager.getFullTxList().filter((txMeta) => txMeta.metamaskNetworkId === otherNetworkId) |
|
|
|
|
|
|
|
|
|
|
|
console.log('NETWORK TX LIST: ', txStateManager.getTxList()); |
|
|
|
|
|
|
|
console.log('FULL TX LIST: ', txStateManager.getFullTxList()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert.equal(txsFromCurrentNetworkAndAddress.length, 0); |
|
|
|
|
|
|
|
assert.equal(txFromOtherNetworks.length, 2); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert.equal(txsFromCurrentNetworkAndAddress.length, 0) |
|
|
|
|
|
|
|
assert.equal(txFromOtherNetworks.length, 2) |
|
|
|
|
|
|
|
|
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|