New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

contract-coverager

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contract-coverager

Name ====

latest
Source
npmnpm
Version
0.3.1
Version published
Maintainers
1
Created
Source

Name

Overview

Description

Coverage Tool for SmartContract. Analayzing based on bytecodes and abi specification for functions.

Requirement

Truffle v5.0.14 or higher.

## Install
`npm install contract-coverage`

## Usage
Add following code in your truffle test cases:
```js
const CoverageSubprovider = require('contract-coverager')
const engine = CoverageSubprovider.injectInTruffle(artifacts, web3)

and define before, after hook code:

before(() => engine.start())
after(() => engine.stop())

example code overall:

const CoverageSubprovider = require('contract-coverager')
const engine = CoverageSubprovider.injectInTruffle(artifacts, web3)
const VyperStorage = artifacts.require("VyperStorage")

contract("VyperStorage", (accounts) => {
  before(() => engine.start())
  after(() => engine.stop())

  it("...should store the value 89.", async () => {
    const storage = await VyperStorage.new()

    // Set value of 89
    const receipt = await storage.set(89)
    // Get stored value
    const storedData = await storage.get()
    assert.equal(storedData, 89, "The value 89 was not stored.")
  })
})

CAUTION

if request method is eth_call, then this Lib re-request eth_sendTransaction with same params, for getting traceLogs. so that, in using this coverage tool, more gas is consumes. may out of gas error a lot of happen.

Demo

Not yet support list

  • Solidity's Contract (maybe available, but not tested)

Licence

GPLv3

Author

nakajo2011

Keywords

ethereum

FAQs

Package last updated on 21 May 2019

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