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.
Tag:
Branch:
Tree:
91601ebe5e
develop
feature/default_network_editable
v10.22.3
${ noResults }
63 lines
1.9 KiB
63 lines
1.9 KiB
import {
|
|||
TRANSACTION_TYPES,
|
|||
TRANSACTION_GROUP_STATUSES,
|
|||
TRANSACTION_STATUSES,
|
|||
|
} from '../../../shared/constants/transaction';
|
||
import * as utils from './transactions.util';
|
|||
|
|
||
describe('Transactions utils', () => {
|
|||
describe('getTokenData', () => {
|
|||
it('should return token data', () => {
|
|||
|
const tokenData = utils.getTokenData(
|
||
'0xa9059cbb00000000000000000000000050a9d56c2b8ba9a5c7f2c08c3d26e0499f23a7060000000000000000000000000000000000000000000000000000000000004e20',
|
|||
);
|
|||
expect(tokenData).toStrictEqual(expect.anything());
|
|||
const { name, args } = tokenData;
|
|||
expect(name).toStrictEqual(TRANSACTION_TYPES.TOKEN_METHOD_TRANSFER);
|
|||
const to = args._to;
|
|||
const value = args._value.toString();
|
|||
expect(to).toStrictEqual('0x50A9D56C2B8BA9A5c7f2C08C3d26E0499F23a706');
|
|||
expect(value).toStrictEqual('20000');
|
|||
});
|
|||
|
|
||
it('should not throw errors when called without arguments', () => {
|
|||
expect(() => utils.getTokenData()).not.toThrow();
|
|||
});
|
|||
});
|
|||
|
|||
describe('getStatusKey', () => {
|
|||
it('should return the correct status', () => {
|
|||
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 }) => {
|
|||
expect(utils.getStatusKey(transaction)).toStrictEqual(expected);
|
|||
});
|
|||
});
|
|||
});
|
|||
});
|