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/test/util/integration.truffle.js

172 lines
4.4 KiB

/*
Utilities for generating a mock truffle project to test plugin.
*/
const path = require('path');
const fs = require('fs');
const shell = require('shelljs');
const TruffleConfig = require('truffle-config');
const decache = require('decache');
const temp = './sc_temp';
const truffleConfigName = 'truffle-config.js';
const configPath = `${temp}/.solcover.js`;
const testPath = './test/sources/js/';
const sourcesPath = './test/sources/solidity/contracts/app/';
const migrationPath = `${temp}/migrations/2_deploy.js`;
const templatePath = './test/integration/truffle/*';
function getDefaultTruffleConfig(){
const logger = process.env.SILENT ? { log: () => {} } : console;
const reporter = process.env.SILENT ? 'dot' : 'spec';
const mockwd = path.join(process.cwd(), temp);
const vals = {
working_directory: mockwd,
build_directory: path.join(mockwd, 'build'),
contracts_directory: path.join(mockwd, 'contracts'),
contracts_build_directory: path.join(mockwd, 'build', 'contracts'),
migrations_directory: path.join(mockwd, 'migrations'),
test_directory: path.join(mockwd, 'test'),
logger: logger,
mocha: { reporter: reporter },
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*"
}
},
compilers: {
solc: {
version: "0.5.3",
settings: { optimizer: {} }
}
}
}
return (new TruffleConfig()).with(vals);
}
function getSolcoverJS(config){
return `module.exports = ${JSON.stringify(config, null, ' ')}`
}
function getTruffleConfigJS(config){
if (config) return `module.exports = ${JSON.stringify(config, null, ' ')}`
return `module.exports = ${JSON.stringify(getDefaultTruffleConfig(), null, ' ')}`
}
function deploySingle(contractName){
return `
const A = artifacts.require("${contractName}");
module.exports = function(deployer) { deployer.deploy(A) };
`;
}
function deployDouble(contractNames){
return `
var A = artifacts.require("${contractNames[0]}");
var B = artifacts.require("${contractNames[1]}");
module.exports = function(deployer) {
deployer.deploy(A);
deployer.link(A, B);
deployer.deploy(B);
};
`;
}
/**
* Installs mock truffle project at ./temp with a single contract
* and test specified by the params.
* @param {String} contract <contractName.sol> located in /test/sources/cli/
* @param {[type]} test <testName.js> located in /test/cli/
*/
function install(
contract,
test,
config,
_truffleConfig,
noMigrations
) {
const configjs = getSolcoverJS(config);
const trufflejs = getTruffleConfigJS(_truffleConfig);
const migration = deploySingle(contract);
// Scaffold
shell.mkdir(temp);
shell.cp('-Rf', templatePath, temp);
// Contract
shell.cp(`${sourcesPath}${contract}.sol`, `${temp}/contracts/${contract}.sol`);
// Migration
if (!noMigrations) fs.writeFileSync(migrationPath, migration);
// Test
shell.cp(`${testPath}${test}`, `${temp}/test/${test}`);
// Configs
fs.writeFileSync(`${temp}/${truffleConfigName}`, trufflejs);
fs.writeFileSync(configPath, configjs);
decache(`${process.cwd()}/${temp}/.solcover.js`);
decache(`${process.cwd()}/${temp}/${truffleConfigName}`);
};
/**
* Installs mock truffle project with two contracts (for inheritance, libraries, etc)
*
*/
function installDouble(contracts, test, config) {
const configjs = getSolcoverJS(config);
const migration = deployDouble(contracts);
// Scaffold
shell.mkdir(temp);
shell.cp('-Rf', templatePath, temp);
// Contracts
contracts.forEach(item => {
shell.cp(`${sourcesPath}${item}.sol`, `${temp}/contracts/${item}.sol`)
});
// Migration
fs.writeFileSync(migrationPath, migration)
// Test
shell.cp(`${testPath}${test}`, `${temp}/test/${test}`);
// Configs
fs.writeFileSync(`${temp}/${truffleConfigName}`, getTruffleConfigJS());
fs.writeFileSync(configPath, configjs);
decache(`${process.cwd()}/${temp}/.solcover.js`);
decache(`${process.cwd()}/${temp}/${truffleConfigName}`);
};
/**
* Removes mock truffle project and coverage reports generated by test
*/
function clean() {
shell.config.silent = true;
shell.rm('-Rf', temp);
shell.rm('-Rf', 'coverage');
shell.rm('coverage.json');
shell.config.silent = false;
};
module.exports = {
getDefaultTruffleConfig: getDefaultTruffleConfig,
install: install,
installDouble: installDouble,
clean: clean
}