mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
4826c8c95e
* Add collectibles send flow
79 lines
2.4 KiB
JavaScript
79 lines
2.4 KiB
JavaScript
import {
|
|
TRANSACTION_TYPES,
|
|
TRANSACTION_GROUP_STATUSES,
|
|
TRANSACTION_STATUSES,
|
|
TRANSACTION_ENVELOPE_TYPES,
|
|
} from '../../../shared/constants/transaction';
|
|
import * as utils from './transactions.util';
|
|
|
|
describe('Transactions utils', () => {
|
|
describe('getTransactionData', () => {
|
|
it('should return token data', () => {
|
|
const tokenData = utils.getTransactionData(
|
|
'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.getTransactionData()).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);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('isLegacyTransaction', () => {
|
|
it('should return true if transaction is type-0', () => {
|
|
expect(
|
|
utils.isLegacyTransaction({ type: TRANSACTION_ENVELOPE_TYPES.LEGACY }),
|
|
).toStrictEqual(true);
|
|
});
|
|
it('should return false if transaction is not type-0', () => {
|
|
expect(
|
|
utils.isLegacyTransaction({
|
|
type: TRANSACTION_ENVELOPE_TYPES.FEE_MARKET,
|
|
}),
|
|
).toStrictEqual(false);
|
|
});
|
|
});
|
|
});
|