Add a UI warning when contract data are not enabled in the settings (#193)

* Add a UI warning when contract data are not enabled in the settings

* Update wording "contract data" -> "blind signing" to raise awareness

* Bump version 1.9.5

* remove hardcoded path in helper build script

* Add blind signature test

* Add snapshot-tmp to gitignore

* Remove unused snapshots

* Increase tests timings

* Remove unused snapshots

* Fix and rename compound blind deposit test

* Update Approve and Transfer tests

* Update tests

* Cosmetic changes + disable debug flag

* Update CHANGELOG.md
This commit is contained in:
Jean P
2021-09-28 12:32:06 +02:00
committed by GitHub
parent 9951cc0e46
commit fa355a5d97
196 changed files with 475 additions and 1554 deletions

75
tests/src/test.fixture.js Normal file
View File

@@ -0,0 +1,75 @@
import Zemu from '@zondax/zemu';
import Eth from '@ledgerhq/hw-app-eth';
const transactionUploadDelay = 60000;
async function waitForAppScreen(sim) {
await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot(), transactionUploadDelay);
}
const sim_options_nanos = {
model: 'nanos',
logging: true,
X11: true,
startDelay: 5000,
custom: '',
};
const sim_options_nanox = {
model: 'nanox',
logging: true,
X11: true,
startDelay: 5000,
custom: '',
};
const Resolve = require('path').resolve;
const NANOS_ELF_PATH = Resolve('elfs/ethereum_nanos.elf');
const NANOX_ELF_PATH = Resolve('elfs/ethereum_nanox.elf');
const NANOS_ETH_LIB = { "Ethereum": NANOS_ELF_PATH };
const NANOX_ETH_LIB = { "Ethereum": NANOX_ELF_PATH };
const NANOS_CLONE_ELF_PATH = Resolve("elfs/ethereum_classic_nanos.elf");
const NANOX_CLONE_ELF_PATH = Resolve("elfs/ethereum_classic_nanox.elf");
const TIMEOUT = 1000000;
function zemu(device, func) {
return async () => {
jest.setTimeout(TIMEOUT);
let zemu_args;
let sim_options;
if(device === "nanos") {
zemu_args = [NANOS_ELF_PATH];
sim_options = sim_options_nanos;
}
else {
zemu_args = [NANOX_ELF_PATH];
sim_options = sim_options_nanox;
}
const sim = new Zemu(...zemu_args);
try {
await sim.start(sim_options);
const transport = await sim.getTransport();
await func(sim, new Eth(transport));
} finally {
await sim.close();
}
};
}
module.exports = {
zemu,
waitForAppScreen,
NANOS_ELF_PATH,
NANOX_ELF_PATH,
NANOS_ETH_LIB,
NANOX_ETH_LIB,
NANOS_CLONE_ELF_PATH,
NANOX_CLONE_ELF_PATH,
sim_options_nanos,
sim_options_nanox,
TIMEOUT
}