Add --version, option.client, and update README (#393)

* Initial README simplification

* Add --version cli flag
pull/398/head
cgewecke 5 years ago committed by GitHub
commit 362183fc40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 94
      README.md
  2. 7
      dist/truffle.plugin.js
  3. 2
      lib/app.js
  4. 10
      lib/ui.js
  5. 7
      test/units/app.js

@ -19,52 +19,39 @@ find discrepancies between the coverage report and your suite's behavior, please
``` ```
$ npm install --save-dev solidity-coverage $ npm install --save-dev solidity-coverage
``` ```
### Run
Set a `coverage` network in truffle-config.js (see [Network Configuration](#network-configuration)) and then run:
```
$ npx solidity-coverage
```
### Usage notes: ### Usage notes:
+ For pragma solidity >=0.4.22 <0.6.0 / Petersburg / Truffle v4 and v5 + For pragma solidity >=0.4.22 <0.6.0 / Petersburg
+ Tests run more slowly while coverage is being generated. + Coverage runs tests a little more slowly.
+ Your contracts will be double-compiled and a (long) delay between compilation and + Coverage distorts gas consumption.
the beginning of test execution is possible if your contracts are large. + Coverage launches its own in-process ganache instance. You can
+ Truffle should be globallly installed in your environment.. If you prefer running truffle as set [ganache options](https://github.com/trufflesuite/ganache-core#options) via
a local dependency, please see [this section](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-truffle-as-a-local-dependency) of the FAQ. the `providerOptions` key in your `.solcover.js` config file.
+ If your suite uses native Solidity testing or accesses contracts via mocks stored in `tests/` (a la Zeppelin), coverage will trigger test errors because it can't control the way truffle compiles that folder. Mocks should be relocated to the root `contracts` directory. More on why this is necessary at issue [146](https://github.com/sc-forks/solidity-coverage/issues/146)
### Network Configuration
By default, this tool connects to a coverage-enabled fork of ganache-cli
called **testrpc-sc** on port 8555.
+ it's a dependency - there's nothing extra to download.
+ the solidity-coverage command launches it automatically in the background. (See [this section of the FAQ](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-testrpc-sc-on-its-own) if you need to launch it separately yourself)
In `truffle-config.js`, add a coverage network following the example below. ### Truffle V5
**Example** Add "solidity-coverage" to your plugins array in `truffle-config.js`
```javascript ```javascript
module.exports = { module.exports = {
networks: { networks: {...},
development: { plugins: ["solidity-coverage"]
host: "localhost", }
port: 8545, ```
network_id: "*" Run
}, ```
coverage: { truffle run coverage [options]
host: "localhost",
network_id: "*",
port: 8555, // <-- If you change this, also set the port option in .solcover.js.
gas: 0xfffffffffff, // <-- Use this high gas value
gasPrice: 0x01 // <-- Use this low gas price
},
...etc...
}
};
``` ```
### Options
### Command Options
| Option | Example | Description |
|--------------|--------------------------------|-------------|
| --file | --file="test/registry/*.js" | Filename or glob describing a subset of JS tests to run. (Globs must be enclosed by quotes.)|
| --solcoverjs | --solcoverjs ./../.solcover.js | Relative path from working directory to config. Useful for monorepo packages that share settings. (Path must be "./" prefixed) |
| --version | | Version info |
| --help | | Usage notes |
|<img width=250/>|<img width=500/> |<img width=100/>|
### Config Options
Additional options can be specified in a `.solcover.js` config file located in Additional options can be specified in a `.solcover.js` config file located in
the root directory of your project. the root directory of your project.
@ -72,43 +59,26 @@ the root directory of your project.
**Example:** **Example:**
```javascript ```javascript
module.exports = { module.exports = {
port: 6545, skipFiles: ['Routers/EtherRouter.sol']
testrpcOptions: '-p 6545 -u 0x54fd80d6ae7584d8e9a19fe1df43f04e5282cc43',
testCommand: 'mocha --timeout 5000',
norpc: true,
dir: './secretDirectory',
copyPackages: ['openzeppelin-solidity'],
skipFiles: ['Routers/EtherRouter.sol']
}; };
``` ```
| Option | Type | Default | Description | | Option | Type | Default | Description |
| ------ | ---- | ------- | ----------- | | ------ | ---- | ------- | ----------- |
| accounts | *Number* | 35 | Number of accounts to launch testrpc with. | | client | *Object* | require("truffle").ganache | Useful if you need a specific ganache version. (usage: `client: require("ganache-core")`)|
| port | *Number* | 8555 | Port to run testrpc on / have truffle connect to | | providerOptions | *Object* | {} | ganache-core options (ex: `network_id: 55`). Complete list of options [here](https://github.com/trufflesuite/ganache-core#options). |
| norpc | *Boolean* | false | Prevent solidity-coverage from launching its own testrpc. Useful if you are managing a complex test suite with a [shell script](https://github.com/OpenZeppelin/openzeppelin-solidity/blob/ed872ca0a11c4926f8bb91dd103bea1378a3384c/scripts/coverage.sh) |
| testCommand | *String* | `truffle test` | Run an arbitrary test command. ex: `mocha --timeout 5000`. NB: Also set the `port` option to whatever your tests require (probably 8545). |
| testrpcOptions | *String* | `--port 8555` | options to append to a command line invocation of testrpc. NB: Using this overwrites the defaults so always specify a port in this string *and* in the `port` option |
| copyNodeModules | *Boolean* | false | :warning: **DEPRECATED** use `copyPackages` instead :warning: Copies `node_modules` into the coverage environment. May significantly increase the time for coverage to complete if enabled. Useful if your contracts import solidity files from an npm installed package (and your node_modules is small). |
| copyPackages | *Array* | `[]` | Copies specific `node_modules` packages into the coverage environment. May significantly reduce the time for coverage to complete compared to `copyNodeModules`. Useful if your contracts import solidity files from an npm installed package. |
| skipFiles | *Array* | `['Migrations.sol']` | Array of contracts or folders (with paths expressed relative to the `contracts` directory) that should be skipped when doing instrumentation. `Migrations.sol` is skipped by default, and does not need to be added to this configuration option if it is used. | | skipFiles | *Array* | `['Migrations.sol']` | Array of contracts or folders (with paths expressed relative to the `contracts` directory) that should be skipped when doing instrumentation. `Migrations.sol` is skipped by default, and does not need to be added to this configuration option if it is used. |
| deepSkip | boolean | false | Use this if instrumentation hangs on large, skipped files (like Oraclize). It's faster. |
| dir | *String* | `.` | Solidity-coverage copies all the assets in your root directory (except `node_modules`) to a special folder where it instruments the contracts and executes the tests. `dir` allows you to define a relative path from the root directory to those assets. Useful if your contracts & tests are within their own folder as part of a larger project.|
| buildDirPath | *String* | `/build/contracts` | Build directory path for compiled smart contracts |
| istanbulReporter | *Array* | ['html', 'lcov', 'text'] | Coverage reporters for Istanbul. Optional reporter replaces the default reporters. | | istanbulReporter | *Array* | ['html', 'lcov', 'text'] | Coverage reporters for Istanbul. Optional reporter replaces the default reporters. |
### FAQ ### FAQ
Solutions to common problems people run into: Common problems & questions:
+ [Running out of gas](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-out-of-gas) + [Running out of gas](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-out-of-gas)
+ [Running out of memory (locally and in CI)](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-out-of-memory-locally-and-in-ci) + [Running out of memory (locally and in CI)](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-out-of-memory-locally-and-in-ci)
+ [Running out of time (in mocha)](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-out-of-time-in-mocha) + [Running out of time (in mocha)](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-out-of-time-in-mocha)
+ [Running on windows](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-on-windows) + [Running in CI](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#continuous-integration-installing-metacoin-on-travisci-with-coveralls)
+ [Running testrpc-sc on its own](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-testrpc-sc-on-its-own)
+ [Running truffle as a local dependency](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#running-truffle-as-a-local-dependency)
+ [Integrating into CI](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#continuous-integration-installing-metacoin-on-travisci-with-coveralls)
+ [Why are asserts and requires highlighted as branch points?](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#why-has-my-branch-coverage-decreased-why-is-assert-being-shown-as-a-branch-point) + [Why are asserts and requires highlighted as branch points?](https://github.com/sc-forks/solidity-coverage/blob/master/docs/faq.md#why-has-my-branch-coverage-decreased-why-is-assert-being-shown-as-a-branch-point)

@ -26,6 +26,7 @@
*/ */
const App = require('./../lib/app'); const App = require('./../lib/app');
const pkg = require('./../package.json');
const req = require('req-cwd'); const req = require('req-cwd');
const death = require('death'); const death = require('death');
const path = require('path'); const path = require('path');
@ -66,7 +67,7 @@ async function plugin(truffleConfig){
// Instrument and test.. // Instrument and test..
try { try {
death(app.cleanUp); death(app.cleanUp); // This doesn't work...
// Launch in-process provider // Launch in-process provider
const provider = await app.provider(truffle.ganache); const provider = await app.provider(truffle.ganache);
@ -77,6 +78,10 @@ async function plugin(truffleConfig){
app.ui.report('truffle-version', [truffle.version]); app.ui.report('truffle-version', [truffle.version]);
app.ui.report('ganache-version', [ganacheVersion]); app.ui.report('ganache-version', [ganacheVersion]);
app.ui.report('coverage-version',[pkg.version]);
// Bail early if user ran: --version
if (truffleConfig.version) return;
// Write instrumented sources to temp folder // Write instrumented sources to temp folder
app.instrument(); app.instrument();

@ -32,7 +32,7 @@ class App {
this.originalContractsDir = config.originalContractsDir this.originalContractsDir = config.originalContractsDir
this.client = config.provider; this.client = config.client;
this.providerOptions = config.providerOptions || {}; this.providerOptions = config.providerOptions || {};
this.skippedFolders = []; this.skippedFolders = [];

@ -28,11 +28,13 @@ class UI {
'truffle-help': `Usage: truffle run coverage [options]\n\n` + 'truffle-help': `Usage: truffle run coverage [options]\n\n` +
`Options:\n` + `Options:\n` +
` --file: path (or glob) to run subset of JS test files\n` + ` --file: path (or glob) to subset of JS test files. (Quote your globs)\n` +
` --solcoverjs: relative path to .solcover.js (ex: ./../.solcover.js)\n`, ` --solcoverjs: relative path to .solcover.js (ex: ./../.solcover.js)\n` +
` --version: version info\n`,
'truffle-version': `${ct} ${c.bold('truffle')}: v${args[0]}`, 'truffle-version': `${ct} ${c.bold('truffle')}: v${args[0]}`,
'ganache-version': `${ct} ${c.bold('ganache-core')}: ${args[0]}`, 'ganache-version': `${ct} ${c.bold('ganache-core')}: ${args[0]}`,
'coverage-version': `${ct} ${c.bold('solidity-coverage')}: v${args[0]}`,
'instr-start': `\n${c.bold('Instrumenting for coverage...')}` + 'instr-start': `\n${c.bold('Instrumenting for coverage...')}` +
`\n${c.bold('=============================')}\n`, `\n${c.bold('=============================')}\n`,

@ -183,6 +183,13 @@ describe('app', function() {
await plugin(truffleConfig); await plugin(truffleConfig);
}) })
it('truffle run coverage --version', async function(){
assertCleanInitialState();
truffleConfig.version = "true";
mock.install('Simple', 'simple.js', solcoverConfig);
await plugin(truffleConfig);
})
it('truffle run coverage --file test/<fileName>', async function() { it('truffle run coverage --file test/<fileName>', async function() {
assertCleanInitialState(); assertCleanInitialState();

Loading…
Cancel
Save