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.
33 lines
1.2 KiB
33 lines
1.2 KiB
/* eslint-env node, mocha */
|
|
|
|
const solc = require('solc');
|
|
const getInstrumentedVersion = require('./../instrumentSolidity.js');
|
|
const util = require('./util/util.js');
|
|
const CoverageMap = require('./../coverageMap');
|
|
const path = require('path');
|
|
const vm = require('./util/vm');
|
|
const assert = require('assert');
|
|
|
|
/**
|
|
* NB: passing '1' to solc as an option activates the optimiser
|
|
* NB: solc will throw if there is a compilation error, causing the test to fail
|
|
* and passing the error to mocha.
|
|
*/
|
|
describe('generic expressions', () => {
|
|
const filePath = path.resolve('./test.sol');
|
|
const pathPrefix = './';
|
|
|
|
it('should compile after instrumenting a single binary expression', () => {
|
|
const contract = util.getCode('expressions/single-binary-expression.sol');
|
|
const info = getInstrumentedVersion(contract, filePath, true);
|
|
const output = solc.compile(info.contract, 1);
|
|
util.report(output.errors);
|
|
});
|
|
|
|
it('should compile after instrumenting a new expression', () => {
|
|
const contract = util.getCode('expressions/new-expression.sol');
|
|
const info = getInstrumentedVersion(contract, filePath, true);
|
|
const output = solc.compile(info.contract, 1);
|
|
util.report(output.errors);
|
|
});
|
|
});
|
|
|