|
|
@ -56,7 +56,6 @@ const config = reqCwd.silent('./.solcover.js') || {}; |
|
|
|
const workingDir = config.dir || '.'; // Relative path to contracts folder
|
|
|
|
const workingDir = config.dir || '.'; // Relative path to contracts folder
|
|
|
|
const port = config.port || 8555; // Port testrpc listens on
|
|
|
|
const port = config.port || 8555; // Port testrpc listens on
|
|
|
|
const accounts = config.accounts || 35; // Number of accounts to testrpc launches with
|
|
|
|
const accounts = config.accounts || 35; // Number of accounts to testrpc launches with
|
|
|
|
const isTruffle = config.isTruffle || true; // Is target a truffle project?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set testrpc options
|
|
|
|
// Set testrpc options
|
|
|
|
const defaultRpcOptions = `--gasLimit ${gasLimitString} --accounts ${accounts} --port ${port}`; |
|
|
|
const defaultRpcOptions = `--gasLimit ${gasLimitString} --accounts ${accounts} --port ${port}`; |
|
|
@ -82,14 +81,18 @@ if (!config.norpc) { |
|
|
|
// environment folder.
|
|
|
|
// environment folder.
|
|
|
|
log('Generating coverage environment'); |
|
|
|
log('Generating coverage environment'); |
|
|
|
try { |
|
|
|
try { |
|
|
|
// Common environment: /contracts/ & /test/
|
|
|
|
|
|
|
|
|
|
|
|
// Truffle environment:
|
|
|
|
|
|
|
|
// contracts/
|
|
|
|
|
|
|
|
// test/
|
|
|
|
|
|
|
|
// migrations/
|
|
|
|
|
|
|
|
// truffle.js
|
|
|
|
|
|
|
|
|
|
|
|
shell.mkdir(`${coverageDir}`); |
|
|
|
shell.mkdir(`${coverageDir}`); |
|
|
|
shell.cp('-R', `${workingDir}/contracts`, `${coverageDir}`); |
|
|
|
shell.cp('-R', `${workingDir}/contracts`, `${coverageDir}`); |
|
|
|
shell.cp('-R', `${workingDir}/test`, `${coverageDir}`); |
|
|
|
shell.cp('-R', `${workingDir}/test`, `${coverageDir}`); |
|
|
|
|
|
|
|
|
|
|
|
// Truffle environment: + /migrations/, truffle.js
|
|
|
|
|
|
|
|
if (isTruffle) { |
|
|
|
|
|
|
|
shell.cp('-R', `${workingDir}/migrations`, `${coverageDir}`); |
|
|
|
shell.cp('-R', `${workingDir}/migrations`, `${coverageDir}`); |
|
|
|
|
|
|
|
|
|
|
|
const truffleConfig = reqCwd(`${workingDir}/truffle.js`); |
|
|
|
const truffleConfig = reqCwd(`${workingDir}/truffle.js`); |
|
|
|
|
|
|
|
|
|
|
|
// Coverage network opts specified: copy truffle.js whole to coverage environment
|
|
|
|
// Coverage network opts specified: copy truffle.js whole to coverage environment
|
|
|
@ -115,7 +118,6 @@ try { |
|
|
|
coverageOption = ''; |
|
|
|
coverageOption = ''; |
|
|
|
fs.writeFileSync(`${coverageDir}/truffle.js`, trufflejs); |
|
|
|
fs.writeFileSync(`${coverageDir}/truffle.js`, trufflejs); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} catch (err) { |
|
|
|
} catch (err) { |
|
|
|
const msg = ('There was a problem generating the coverage environment: '); |
|
|
|
const msg = ('There was a problem generating the coverage environment: '); |
|
|
|
cleanUp(msg + err); |
|
|
|
cleanUp(msg + err); |
|
|
|