1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 12:52:33 +02:00
metamask-extension/ui/app/helpers/utils/transactions.util.test.js
Brad Decker a49a4a066c
expand transaction constants coverage (#9790)
* expand transaction constants coverage

* touchups

* dont import inside of e2e

* Update app/scripts/controllers/transactions/tx-state-manager.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

* Update test/unit/app/controllers/transactions/tx-controller-test.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

Co-authored-by: Mark Stacey <markjstacey@gmail.com>
2020-11-07 01:38:12 -06:00

107 lines
3.1 KiB
JavaScript

import assert from 'assert'
import {
TRANSACTION_CATEGORIES,
TRANSACTION_GROUP_STATUSES,
TRANSACTION_STATUSES,
} from '../../../../shared/constants/transaction'
import * as utils from './transactions.util'
describe('Transactions utils', function () {
describe('getTokenData', function () {
it('should return token data', function () {
const tokenData = utils.getTokenData(
'0xa9059cbb00000000000000000000000050a9d56c2b8ba9a5c7f2c08c3d26e0499f23a7060000000000000000000000000000000000000000000000000000000000004e20',
)
assert.ok(tokenData)
const { name, args } = tokenData
assert.equal(name, TRANSACTION_CATEGORIES.TOKEN_METHOD_TRANSFER)
const to = args._to
const value = args._value.toString()
assert.equal(to, '0x50A9D56C2B8BA9A5c7f2C08C3d26E0499F23a706')
assert.equal(value, '20000')
})
it('should not throw errors when called without arguments', function () {
assert.doesNotThrow(() => utils.getTokenData())
})
})
describe('getStatusKey', function () {
it('should return the correct status', function () {
const tests = [
{
transaction: {
status: TRANSACTION_STATUSES.CONFIRMED,
txReceipt: {
status: '0x0',
},
},
expected: TRANSACTION_STATUSES.FAILED,
},
{
transaction: {
status: TRANSACTION_STATUSES.CONFIRMED,
txReceipt: {
status: '0x1',
},
},
expected: TRANSACTION_STATUSES.CONFIRMED,
},
{
transaction: {
status: TRANSACTION_GROUP_STATUSES.PENDING,
},
expected: TRANSACTION_GROUP_STATUSES.PENDING,
},
]
tests.forEach(({ transaction, expected }) => {
assert.equal(utils.getStatusKey(transaction), expected)
})
})
})
describe('getBlockExplorerUrlForTx', function () {
it('should return the correct block explorer url for a transaction', function () {
const tests = [
{
expected: 'https://etherscan.io/tx/0xabcd',
networkId: '1',
hash: '0xabcd',
},
{
expected: 'https://ropsten.etherscan.io/tx/0xdef0',
networkId: '3',
hash: '0xdef0',
rpcPrefs: {},
},
{
// test handling of `blockExplorerUrl` for a custom RPC
expected: 'https://block.explorer/tx/0xabcd',
networkId: '31',
hash: '0xabcd',
rpcPrefs: {
blockExplorerUrl: 'https://block.explorer',
},
},
{
// test handling of trailing `/` in `blockExplorerUrl` for a custom RPC
expected: 'https://another.block.explorer/tx/0xdef0',
networkId: '33',
hash: '0xdef0',
rpcPrefs: {
blockExplorerUrl: 'https://another.block.explorer/',
},
},
]
tests.forEach(({ expected, networkId, hash, rpcPrefs }) => {
assert.equal(
utils.getBlockExplorerUrlForTx(networkId, hash, rpcPrefs),
expected,
)
})
})
})
})