* Add network name display instead of chainID * Add display of correct ticker along with network * Add FTM * Clang-format * Add comment in python script * Rename SIZE_MAX to MAX_SIZE * Change %u to %d in printf * Remove needless PIC * Update comment about get_chain_id() * Update example script to follow EIP155 * Remove unused PIC calls * Add whitespace between ticker and amount when using EIP155 * Remove decimal config per network, set back 18 everywhere * Adapt u32_from_BE to swith cases * Remove chainid from signTx.py * Switch to switch in stead of if in get_chain_id * Revert "Remove chainid from signTx.py" This reverts commit 454e09f280ec3e3ec1c7d7cc0027247ef4390088. * Change Ethereum chainid to 1 * Rename chainid_step to network_step * Adapt finalizeParsing to new chainid for Ethereum * Update snapshots * clang-format * Fix network display logic for clones * Fix tests * Add clone tests Co-authored-by: TamtamHero <10632523+TamtamHero@users.noreply.github.com>
184 lines
7.6 KiB
JavaScript
184 lines
7.6 KiB
JavaScript
import "core-js/stable";
|
|
import "regenerator-runtime/runtime";
|
|
import Eth from "@ledgerhq/hw-app-eth";
|
|
import { byContractAddress } from "@ledgerhq/hw-app-eth/erc20";
|
|
import Zemu from "@zondax/zemu";
|
|
import { TransportStatusError } from "@ledgerhq/errors";
|
|
import { expect } from "../jest";
|
|
|
|
const {NANOS_ELF_PATH, NANOX_ELF_PATH, sim_options_nanos, sim_options_nanox, TIMEOUT} = require("generic.js");
|
|
|
|
const ORIGINAL_SNAPSHOT_PATH_PREFIX = "snapshots/send_bsc/";
|
|
const SNAPSHOT_PATH_PREFIX = "snapshots/tmp/";
|
|
|
|
const ORIGINAL_SNAPSHOT_PATH_NANOS = ORIGINAL_SNAPSHOT_PATH_PREFIX + "nanos/";
|
|
const ORIGINAL_SNAPSHOT_PATH_NANOX = ORIGINAL_SNAPSHOT_PATH_PREFIX + "nanox/";
|
|
|
|
const SNAPSHOT_PATH_NANOS = SNAPSHOT_PATH_PREFIX + "nanos/";
|
|
const SNAPSHOT_PATH_NANOX = SNAPSHOT_PATH_PREFIX + "nanox/";
|
|
|
|
|
|
test("Transfer bsc nanos", async () => {
|
|
jest.setTimeout(TIMEOUT);
|
|
const sim = new Zemu(NANOS_ELF_PATH);
|
|
|
|
try {
|
|
await sim.start(sim_options_nanos);
|
|
|
|
let transport = await sim.getTransport();
|
|
|
|
let buffer = Buffer.from("058000002C8000003C800000010000000000000000EB0185012A05F200825208945A321744667052AFFA8386ED49E00EF223CBFFC3876F9C9E7BF6181880388080", "hex");
|
|
|
|
// Send transaction
|
|
let tx = transport.send(0xe0, 0x04, 0x00, 0x00, buffer);
|
|
let filename;
|
|
|
|
await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot());
|
|
// Review tx
|
|
filename = "review.png";
|
|
await sim.snapshot(SNAPSHOT_PATH_NANOS + filename);
|
|
const review = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_review = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(review).toEqual(expected_review);
|
|
|
|
// Amount 1/3
|
|
filename = "amount_1.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const amount_1 = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_amount_1 = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(amount_1).toEqual(expected_amount_1);
|
|
|
|
// Amount 2/3
|
|
filename = "amount_2.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const amount_2 = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_amount_2 = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(amount_2).toEqual(expected_amount_2);
|
|
|
|
// Amount 3/3
|
|
filename = "amount_3.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const amount_3 = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_amount_3 = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(amount_3).toEqual(expected_amount_3);
|
|
|
|
// Address 1/3
|
|
filename = "address_1.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const address_1 = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_address_1 = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(address_1).toEqual(expected_address_1);
|
|
|
|
// Address 2/3
|
|
filename = "address_2.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const address_2 = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_address_2 = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(address_2).toEqual(expected_address_2);
|
|
|
|
// Address 3/3
|
|
filename = "address_3.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const address_3 = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_address_3 = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(address_3).toEqual(expected_address_3);
|
|
|
|
// Network name
|
|
filename = "network.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const chainid = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_chainid = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(chainid).toEqual(expected_chainid);
|
|
|
|
// Max Fees
|
|
filename = "fees.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const fees = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_fees = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(fees).toEqual(expected_fees);
|
|
|
|
// Accept
|
|
filename = "accept.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOS + filename);
|
|
const accept = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOS + filename);
|
|
const expected_accept = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOS + filename);
|
|
expect(accept).toEqual(expected_accept);
|
|
|
|
await sim.clickBoth();
|
|
|
|
await expect(tx).resolves.toEqual(
|
|
Buffer.from([147, 246, 103, 204, 52, 233, 129, 93, 244, 240, 82, 251, 52, 99, 205, 190, 53, 95, 255, 92, 26, 207, 78, 145, 155, 53, 57, 128, 101, 33, 160, 89, 173, 107, 53, 73, 43, 113, 8, 217, 217, 225, 204, 122, 237, 229, 54, 237, 107, 49, 115, 25, 123, 86, 221, 135, 60, 188, 59, 67, 224, 65, 214, 244, 7, 144, 0]),
|
|
);
|
|
|
|
} finally {
|
|
await sim.close();
|
|
}
|
|
});
|
|
|
|
test("Transfer bsc nanox", async () => {
|
|
jest.setTimeout(TIMEOUT);
|
|
const sim = new Zemu(NANOX_ELF_PATH);
|
|
|
|
try {
|
|
await sim.start(sim_options_nanox);
|
|
|
|
let transport = await sim.getTransport();
|
|
let buffer = Buffer.from("058000002C8000003C800000010000000000000000EB0185012A05F200825208945A321744667052AFFA8386ED49E00EF223CBFFC3876F9C9E7BF6181880388080", "hex");
|
|
|
|
// Send transaction
|
|
let tx = transport.send(0xe0, 0x04, 0x00, 0x00, buffer);
|
|
let filename;
|
|
|
|
await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot());
|
|
// Review tx
|
|
filename = "review.png";
|
|
await sim.snapshot(SNAPSHOT_PATH_NANOX + filename);
|
|
const review = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOX + filename);
|
|
const expected_review = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOX + filename);
|
|
expect(review).toEqual(expected_review);
|
|
|
|
// Amount
|
|
filename = "amount.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOX + filename);
|
|
const amount = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOX + filename);
|
|
const expected_amount = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOX + filename);
|
|
expect(amount).toEqual(expected_amount);
|
|
|
|
// Address
|
|
filename = "address.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOX + filename);
|
|
const address = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOX + filename);
|
|
const expected_address = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOX + filename);
|
|
expect(address).toEqual(expected_address);
|
|
|
|
// Network name
|
|
filename = "network.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOX + filename);
|
|
const chainid = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOX + filename);
|
|
const expected_chainid = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOX + filename);
|
|
expect(chainid).toEqual(expected_chainid);
|
|
|
|
// Max Fees
|
|
filename = "fees.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOX + filename);
|
|
const fees = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOX + filename);
|
|
const expected_fees = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOX + filename);
|
|
expect(fees).toEqual(expected_fees);
|
|
|
|
// Accept
|
|
filename = "accept.png";
|
|
await sim.clickRight(SNAPSHOT_PATH_NANOX + filename);
|
|
const accept = Zemu.LoadPng2RGB(SNAPSHOT_PATH_NANOX + filename);
|
|
const expected_accept = Zemu.LoadPng2RGB(ORIGINAL_SNAPSHOT_PATH_NANOX + filename);
|
|
expect(accept).toEqual(expected_accept);
|
|
|
|
await sim.clickBoth();
|
|
|
|
await expect(tx).resolves.toEqual(
|
|
Buffer.from([147, 246, 103, 204, 52, 233, 129, 93, 244, 240, 82, 251, 52, 99, 205, 190, 53, 95, 255, 92, 26, 207, 78, 145, 155, 53, 57, 128, 101, 33, 160, 89, 173, 107, 53, 73, 43, 113, 8, 217, 217, 225, 204, 122, 237, 229, 54, 237, 107, 49, 115, 25, 123, 86, 221, 135, 60, 188, 59, 67, 224, 65, 214, 244, 7, 144, 0]),
|
|
);
|
|
|
|
} finally {
|
|
await sim.close();
|
|
}
|
|
}); |