mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 04:46:10 +01:00
64 lines
1.9 KiB
JavaScript
64 lines
1.9 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.strictEqual(name, TRANSACTION_CATEGORIES.TOKEN_METHOD_TRANSFER);
|
|
const to = args._to;
|
|
const value = args._value.toString();
|
|
assert.strictEqual(to, '0x50A9D56C2B8BA9A5c7f2C08C3d26E0499F23a706');
|
|
assert.strictEqual(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.strictEqual(utils.getStatusKey(transaction), expected);
|
|
});
|
|
});
|
|
});
|
|
});
|