mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
add Test for txManager. As well as fix tests to account for txManager.
This commit is contained in:
parent
090935f90a
commit
5aba096bd1
@ -20,6 +20,10 @@ QUnit.module('Old Style Vaults', {
|
|||||||
this.keyringController = new KeyringController({
|
this.keyringController = new KeyringController({
|
||||||
configManager: this.configManager,
|
configManager: this.configManager,
|
||||||
getNetwork: () => { return '2' },
|
getNetwork: () => { return '2' },
|
||||||
|
txManager: {
|
||||||
|
getTxList: () => [],
|
||||||
|
getUnapprovedTxList: () => []
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
this.ethStore = {
|
this.ethStore = {
|
||||||
|
@ -9,6 +9,7 @@ module.exports = function() {
|
|||||||
function loadData () {
|
function loadData () {
|
||||||
var oldData = getOldStyleData()
|
var oldData = getOldStyleData()
|
||||||
var newData
|
var newData
|
||||||
|
|
||||||
try {
|
try {
|
||||||
newData = JSON.parse(window.localStorage[STORAGE_KEY])
|
newData = JSON.parse(window.localStorage[STORAGE_KEY])
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
|
@ -215,7 +215,7 @@ describe('config-manager', function() {
|
|||||||
|
|
||||||
describe('transactions', function() {
|
describe('transactions', function() {
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
configManager._saveTxList([])
|
configManager.setTxList([])
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('#getTxList', function() {
|
describe('#getTxList', function() {
|
||||||
@ -226,90 +226,13 @@ describe('config-manager', function() {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('#_saveTxList', function() {
|
describe('#setTxList', function() {
|
||||||
it('saves the submitted data to the tx list', function() {
|
it('saves the submitted data to the tx list', function() {
|
||||||
var target = [{ foo: 'bar' }]
|
var target = [{ foo: 'bar' }]
|
||||||
configManager._saveTxList(target)
|
configManager.setTxList(target)
|
||||||
var result = configManager.getTxList()
|
var result = configManager.getTxList()
|
||||||
assert.equal(result[0].foo, 'bar')
|
assert.equal(result[0].foo, 'bar')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('#addTx', function() {
|
|
||||||
it('adds a tx returned in getTxList', function() {
|
|
||||||
var tx = { id: 1 }
|
|
||||||
configManager.addTx(tx)
|
|
||||||
var result = configManager.getTxList()
|
|
||||||
assert.ok(Array.isArray(result))
|
|
||||||
assert.equal(result.length, 1)
|
|
||||||
assert.equal(result[0].id, 1)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('cuts off early txs beyond a limit', function() {
|
|
||||||
const limit = configManager.txLimit
|
|
||||||
for (let i = 0; i < limit + 1; i++) {
|
|
||||||
let tx = { id: i }
|
|
||||||
configManager.addTx(tx)
|
|
||||||
}
|
|
||||||
var result = configManager.getTxList()
|
|
||||||
assert.equal(result.length, limit, `limit of ${limit} txs enforced`)
|
|
||||||
assert.equal(result[0].id, 1, 'early txs truncted')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('#confirmTx', function() {
|
|
||||||
it('sets the tx status to confirmed', function() {
|
|
||||||
var tx = { id: 1, status: 'unconfirmed' }
|
|
||||||
configManager.addTx(tx)
|
|
||||||
configManager.confirmTx(1)
|
|
||||||
var result = configManager.getTxList()
|
|
||||||
assert.ok(Array.isArray(result))
|
|
||||||
assert.equal(result.length, 1)
|
|
||||||
assert.equal(result[0].status, 'confirmed')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('#rejectTx', function() {
|
|
||||||
it('sets the tx status to rejected', function() {
|
|
||||||
var tx = { id: 1, status: 'unconfirmed' }
|
|
||||||
configManager.addTx(tx)
|
|
||||||
configManager.rejectTx(1)
|
|
||||||
var result = configManager.getTxList()
|
|
||||||
assert.ok(Array.isArray(result))
|
|
||||||
assert.equal(result.length, 1)
|
|
||||||
assert.equal(result[0].status, 'rejected')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('#updateTx', function() {
|
|
||||||
it('replaces the tx with the same id', function() {
|
|
||||||
configManager.addTx({ id: '1', status: 'unconfirmed' })
|
|
||||||
configManager.addTx({ id: '2', status: 'confirmed' })
|
|
||||||
configManager.updateTx({ id: '1', status: 'blah', hash: 'foo' })
|
|
||||||
var result = configManager.getTx('1')
|
|
||||||
assert.equal(result.hash, 'foo')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('#unconfirmedTxs', function() {
|
|
||||||
it('returns unconfirmed txs in a hash', function() {
|
|
||||||
configManager.addTx({ id: '1', status: 'unconfirmed' })
|
|
||||||
configManager.addTx({ id: '2', status: 'confirmed' })
|
|
||||||
let result = configManager.unconfirmedTxs()
|
|
||||||
assert.equal(typeof result, 'object')
|
|
||||||
assert.equal(result['1'].status, 'unconfirmed')
|
|
||||||
assert.equal(result['0'], undefined)
|
|
||||||
assert.equal(result['2'], undefined)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('#getTx', function() {
|
|
||||||
it('returns a tx with the requested id', function() {
|
|
||||||
configManager.addTx({ id: '1', status: 'unconfirmed' })
|
|
||||||
configManager.addTx({ id: '2', status: 'confirmed' })
|
|
||||||
assert.equal(configManager.getTx('1').status, 'unconfirmed')
|
|
||||||
assert.equal(configManager.getTx('2').status, 'confirmed')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -64,6 +64,10 @@ describe('IdentityStore to KeyringController migration', function() {
|
|||||||
addAccount(acct) { newAccounts.push(ethUtil.addHexPrefix(acct)) },
|
addAccount(acct) { newAccounts.push(ethUtil.addHexPrefix(acct)) },
|
||||||
del(acct) { delete newAccounts[acct] },
|
del(acct) { delete newAccounts[acct] },
|
||||||
},
|
},
|
||||||
|
txManager: {
|
||||||
|
getTxList: () => [],
|
||||||
|
getUnapprovedTxList: () => []
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
// Stub out the browser crypto for a mock encryptor.
|
// Stub out the browser crypto for a mock encryptor.
|
||||||
|
@ -23,6 +23,10 @@ describe('KeyringController', function() {
|
|||||||
|
|
||||||
keyringController = new KeyringController({
|
keyringController = new KeyringController({
|
||||||
configManager: configManagerGen(),
|
configManager: configManagerGen(),
|
||||||
|
txManager: {
|
||||||
|
getTxList: () => [],
|
||||||
|
getUnapprovedTxList: () => []
|
||||||
|
},
|
||||||
ethStore: {
|
ethStore: {
|
||||||
addAccount(acct) { accounts.push(ethUtil.addHexPrefix(acct)) },
|
addAccount(acct) { accounts.push(ethUtil.addHexPrefix(acct)) },
|
||||||
},
|
},
|
||||||
|
169
test/unit/tx-manager-test.js
Normal file
169
test/unit/tx-manager-test.js
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
const assert = require('assert')
|
||||||
|
const extend = require('xtend')
|
||||||
|
const STORAGE_KEY = 'metamask-persistance-key'
|
||||||
|
const TransactionManager = require('../../app/scripts/transaction-manager')
|
||||||
|
|
||||||
|
describe('Transaction Manager', function() {
|
||||||
|
let txManager
|
||||||
|
|
||||||
|
const onTxDoneCb = () => true
|
||||||
|
beforeEach(function() {
|
||||||
|
txManager = new TransactionManager ({
|
||||||
|
TxListFromStore: [],
|
||||||
|
setTxList: () => {},
|
||||||
|
provider: "testnet",
|
||||||
|
txLimit: 40,
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#getTxList', function() {
|
||||||
|
it('when new should return empty array', function() {
|
||||||
|
var result = txManager.getTxList()
|
||||||
|
assert.ok(Array.isArray(result))
|
||||||
|
assert.equal(result.length, 0)
|
||||||
|
})
|
||||||
|
it('should also return transactions from local storage if any', function() {
|
||||||
|
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#_saveTxList', function() {
|
||||||
|
it('saves the submitted data to the tx list', function() {
|
||||||
|
var target = [{ foo: 'bar' }]
|
||||||
|
txManager._saveTxList(target)
|
||||||
|
var result = txManager.getTxList()
|
||||||
|
assert.equal(result[0].foo, 'bar')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#addTx', function() {
|
||||||
|
it('adds a tx returned in getTxList', function() {
|
||||||
|
var tx = { id: 1 }
|
||||||
|
txManager.addTx(tx, onTxDoneCb)
|
||||||
|
var result = txManager.getTxList()
|
||||||
|
assert.ok(Array.isArray(result))
|
||||||
|
assert.equal(result.length, 1)
|
||||||
|
assert.equal(result[0].id, 1)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('cuts off early txs beyond a limit', function() {
|
||||||
|
const limit = txManager.txLimit
|
||||||
|
for (let i = 0; i < limit + 1; i++) {
|
||||||
|
let tx = { id: i, time: new Date()}
|
||||||
|
txManager.addTx(tx, onTxDoneCb)
|
||||||
|
}
|
||||||
|
var result = txManager.getTxList()
|
||||||
|
assert.equal(result.length, limit, `limit of ${limit} txs enforced`)
|
||||||
|
assert.equal(result[0].id, 1, 'early txs truncted')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#setTxStatusSigned', function() {
|
||||||
|
it('sets the tx status to signed', function() {
|
||||||
|
var tx = { id: 1, status: 'unapproved' }
|
||||||
|
txManager.addTx(tx, onTxDoneCb)
|
||||||
|
txManager.setTxStatusSigned(1)
|
||||||
|
var result = txManager.getTxList()
|
||||||
|
assert.ok(Array.isArray(result))
|
||||||
|
assert.equal(result.length, 1)
|
||||||
|
assert.equal(result[0].status, 'signed')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should emit a signed event to signal the exciton of callback', (done) => {
|
||||||
|
this.timeout(10000)
|
||||||
|
var tx = { id: 1, status: 'unapproved' }
|
||||||
|
txManager.on('signed', function (txId) {
|
||||||
|
var approvalCb = this._unconfTxCbs[txId]
|
||||||
|
assert(approvalCb(), 'txCb was retrieved')
|
||||||
|
assert.equal(txId, 1)
|
||||||
|
assert(true, 'event listener has been triggered')
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
txManager.addTx(tx, onTxDoneCb)
|
||||||
|
txManager.setTxStatusSigned(1)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#setTxStatusRejected', function() {
|
||||||
|
it('sets the tx status to rejected', function() {
|
||||||
|
var tx = { id: 1, status: 'unapproved' }
|
||||||
|
txManager.addTx(tx)
|
||||||
|
txManager.setTxStatusRejected(1)
|
||||||
|
var result = txManager.getTxList()
|
||||||
|
assert.ok(Array.isArray(result))
|
||||||
|
assert.equal(result.length, 1)
|
||||||
|
assert.equal(result[0].status, 'rejected')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should emit a rejected event to signal the exciton of callback', (done) => {
|
||||||
|
this.timeout(10000)
|
||||||
|
var tx = { id: 1, status: 'unapproved' }
|
||||||
|
txManager.on('rejected', function (txId) {
|
||||||
|
var approvalCb = this._unconfTxCbs[txId]
|
||||||
|
assert(approvalCb(), 'txCb was retrieved')
|
||||||
|
assert.equal(txId, 1)
|
||||||
|
assert(true, 'event listener has been triggered')
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
txManager.addTx(tx, onTxDoneCb)
|
||||||
|
txManager.setTxStatusRejected(1)
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#updateTx', function() {
|
||||||
|
it('replaces the tx with the same id', function() {
|
||||||
|
txManager.addTx({ id: '1', status: 'unapproved' }, onTxDoneCb)
|
||||||
|
txManager.addTx({ id: '2', status: 'confirmed' }, onTxDoneCb)
|
||||||
|
txManager.updateTx({ id: '1', status: 'blah', hash: 'foo' })
|
||||||
|
var result = txManager.getTx('1')
|
||||||
|
assert.equal(result.hash, 'foo')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#getUnapprovedTxList', function() {
|
||||||
|
it('returns unapproved txs in a hash', function() {
|
||||||
|
txManager.addTx({ id: '1', status: 'unapproved' }, onTxDoneCb)
|
||||||
|
txManager.addTx({ id: '2', status: 'confirmed' }, onTxDoneCb)
|
||||||
|
let result = txManager.getUnapprovedTxList()
|
||||||
|
assert.equal(typeof result, 'object')
|
||||||
|
assert.equal(result['1'].status, 'unapproved')
|
||||||
|
assert.equal(result['0'], undefined)
|
||||||
|
assert.equal(result['2'], undefined)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#getTx', function() {
|
||||||
|
it('returns a tx with the requested id', function() {
|
||||||
|
txManager.addTx({ id: '1', status: 'unapproved' }, onTxDoneCb)
|
||||||
|
txManager.addTx({ id: '2', status: 'confirmed' }, onTxDoneCb)
|
||||||
|
assert.equal(txManager.getTx('1').status, 'unapproved')
|
||||||
|
assert.equal(txManager.getTx('2').status, 'confirmed')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#getFilterdTxList', function() {
|
||||||
|
it('returns a tx with the requested data', function() {
|
||||||
|
var foop = 0
|
||||||
|
var zoop = 0
|
||||||
|
for (let i = 0; i < 10; ++i ){
|
||||||
|
let evryOther = i % 2
|
||||||
|
txManager.addTx({ id: i,
|
||||||
|
status: evryOther ? 'unapproved' : 'confirmed',
|
||||||
|
txParams: {
|
||||||
|
from: evryOther ? 'foop' : 'zoop',
|
||||||
|
to: evryOther ? 'zoop' : 'foop',
|
||||||
|
}
|
||||||
|
}, onTxDoneCb)
|
||||||
|
evryOther ? ++foop : ++zoop
|
||||||
|
}
|
||||||
|
assert.equal(txManager.getFilterdTxList({status: 'confirmed', from: 'zoop'}).length, zoop)
|
||||||
|
assert.equal(txManager.getFilterdTxList({status: 'confirmed', to: 'foop'}).length, zoop)
|
||||||
|
assert.equal(txManager.getFilterdTxList({status: 'confirmed', from: 'foop'}).length, 0)
|
||||||
|
assert.equal(txManager.getFilterdTxList({status: 'confirmed'}).length, zoop)
|
||||||
|
assert.equal(txManager.getFilterdTxList({from: 'foop'}).length, foop)
|
||||||
|
assert.equal(txManager.getFilterdTxList({from: 'zoop'}).length, zoop)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user