Code coverage for Solidity smart-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
solidity-coverage/README.md

70 lines
2.8 KiB

# SolCover
![CircleCI Status](https://circleci.com/gh/JoinColony/solcover.svg?style=shield&circle-token=53d5360d290ef593c7bdce505b86ae8b9414e684)
[![codecov](https://codecov.io/gh/JoinColony/solcover/branch/master/graph/badge.svg)](https://codecov.io/gh/JoinColony/solcover)
### Code coverage for Solidity testing
![coverage example](https://cdn-images-1.medium.com/max/800/1*uum8t-31bUaa6dTRVVhj6w.png)
For more details about what this is, how it work and potential limitations, see
[the accompanying article](https://blog.colony.io/code-coverage-for-solidity-eecfa88668c2).
8 years ago
This branch is an attempt to prepare solcover for npm publication and simplify its use as a
command line utility. Gas cost issues etc are managed under the hood and the tool cleans up after
itself if (when) it crashes.
8 years ago
### Configuration
By default, solcover generates a stub `truffle.js` that accomodates its special gas needs and
connects to a modified version of testrpc on port 8555. If your tests can run on the development network
using a standard `truffle.js`, you shouldn't have to do any configuration. If your tests
depend on logic added to `truffle.js` - for example: [zeppelin-solidity](https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/truffle.js)
uses the file to expose a babel polyfill that its suite needs to run correctly - you can override the default behavior
by specifying a coverage network in `truffle.js`.
Example coverage network config
```javascript
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
coverage: {
host: "localhost",
network_id: "*",
port: 8555, // <-- Use this port only
gas: 0xfffffffffff, // <-- Use this high gas value
gasPrice: 0x01 // <-- Use this low gas price
}
}
};
```
### Install
8 years ago
```
$ npm install --save-dev https://github.com/JoinColony/solcover.git#truffle3
8 years ago
```
### Run
8 years ago
```
$ ./node_modules/solcover/exec.js
8 years ago
```
Tests run signficantly slower while coverage is being generated. A 1 to 2 minute delay
between the end of Truffle compilation and the beginning of test execution is not impossible if your
test suite is large.
8 years ago
Note that if you have hardcoded gas costs into your tests some of them may fail when using SolCover.
This is because the instrumentation process increases the gas costs for using the contracts, due to
the extra events. If this is the case, then the coverage may be incomplete. To avoid this, using
`estimateGas` to estimate your gas costs should be more resilient in most cases.
8 years ago
### TODO
8 years ago
- [ ] Turn into a true command line tool, rather than just a hacked-together script
- [ ] Allow the use of a dedicated coverage network in `truffle.js`
8 years ago
- [ ] Release on NPM
- [ ] Support for arbitrary testing commands
- [ ] [You tell me](http://github.com/JoinColony/solcover/issues)