Socket
Socket
Sign inDemoInstall

@zondax/zemu

Package Overview
Dependencies
Maintainers
1
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zondax/zemu

Zemu Testing Framework


Version published
Weekly downloads
3.4K
increased by2.02%
Maintainers
1
Weekly downloads
 
Created
Source

Zondax Zemu Testing Framework

License npm version CircleCI

We appreciate any contributions to this effort!

We recommend using the npmjs package in order to receive updates/fixes.

This project is under active development - API and usage guidelines are very likely to change

Overview

Integration and end-to-end testing of Ledger Apps is a manual and time consuming process. We believe that the Ledger apps ecosystem is lacking an adequate approach with respect to testing. The Zemu Framework is our solution for this problem. We stand on the shoulders of the giant greenknot’s speculos.

Zemu is an emulation and testing framework for Ledger Nano S/X devices.

Features

  • Minimal configuration + Docker based
  • Speculous/Qemu based emulation
  • Easy JS API
    • Mocha / Jest compatible
    • Parallelized testing
    • Abstracted device control (buttons, reset, etc.)
    • Screenshots + comparisons
  • Future support for Rust & Go
  • Debugging Apps with VSCode (Planned)
  • PDF reporting (Planned)
  • Used by Zondax in multiple apps

QuickStart

Zemu class provides access and control to your emulated Ledger app running on a docker container.

Basic testing code:

jest.setTimeout(20000);

test("demo", async () => {
    //Create Zemu object. Pass the path to your .elf file
    const sim = new Zemu("/ledger-demo/app/bin/");
    //Create an instance of your Ledger-js app
  try {
    const demoJSApp = new DemoApp(sim.getTransport());
    //Start simulator. A new docker container instance will be created.
    await sim.start();
    //Do your tests
    ...
    //Finally, close the simulator. This will stop and remove the container.
  } finally {
    await sim.close();
  }
});

Basic control commands examples:**

  • Take a screenshot and save it:
    await sim.snapshot("tests/snapshots/0.png")

  • Send "click left":
    await sim.clickLeft()

  • Send "click right":
    await sim.clickRight()

  • Send "click both":
    await sim.clickBoth()

  • Wait some time:
    await Zemu.sleep(500) //Time in [ms]

Keywords

FAQs

Package last updated on 13 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc