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.
89 lines
3.2 KiB
89 lines
3.2 KiB
const assert = require('assert');
|
|
const util = require('./../util/util.js');
|
|
const Coverage = require('./../../lib/coverage');
|
|
const Api = require('./../../lib/api')
|
|
|
|
describe('for and while statements', () => {
|
|
let coverage;
|
|
let api;
|
|
|
|
before(async () => api = new Api({silent: true}));
|
|
beforeEach(() => coverage = new Coverage());
|
|
after(async() => await api.finish());
|
|
|
|
// Runs: a() => for(var x = 1; x < 10; x++){\n sha3(x);\n }
|
|
it('should cover a for statement with a bracketed body (multiline)', async function() {
|
|
const contract = await util.bootstrapCoverage('loops/for-with-brackets', api, this.provider);
|
|
coverage.addContract(contract.instrumented, util.filePath);
|
|
await contract.instance.a(contract.gas);
|
|
const mapping = coverage.generate(contract.data, util.pathPrefix);
|
|
|
|
assert.deepEqual(mapping[util.filePath].l, {
|
|
5: 1, 6: 10,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].b, {});
|
|
assert.deepEqual(mapping[util.filePath].s, {
|
|
1: 1, 2: 10,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].f, {
|
|
1: 1,
|
|
});
|
|
});
|
|
|
|
// Runs: a() => for(var x = 1; x < 10; x++)\n sha3(x);\n
|
|
it('should cover a for statement with an unbracketed body', async function() {
|
|
const contract = await util.bootstrapCoverage('loops/for-no-brackets', api, this.provider);
|
|
coverage.addContract(contract.instrumented, util.filePath);
|
|
await contract.instance.a(contract.gas);
|
|
const mapping = coverage.generate(contract.data, util.pathPrefix);
|
|
|
|
assert.deepEqual(mapping[util.filePath].l, {
|
|
5: 1, 6: 10,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].b, {});
|
|
assert.deepEqual(mapping[util.filePath].s, {
|
|
1: 1, 2: 10,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].f, {
|
|
1: 1,
|
|
});
|
|
});
|
|
|
|
// Runs: a() => var t = true;\n while(t){\n t = false;\n }
|
|
it('should cover a while statement with an bracketed body (multiline)', async function() {
|
|
const contract = await util.bootstrapCoverage('loops/while-with-brackets', api, this.provider);
|
|
coverage.addContract(contract.instrumented, util.filePath);
|
|
await contract.instance.a(contract.gas);
|
|
const mapping = coverage.generate(contract.data, util.pathPrefix);
|
|
|
|
assert.deepEqual(mapping[util.filePath].l, {
|
|
5: 1, 6: 1, 7: 1,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].b, {});
|
|
assert.deepEqual(mapping[util.filePath].s, {
|
|
1: 1, 2: 1,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].f, {
|
|
1: 1,
|
|
});
|
|
});
|
|
|
|
// Runs: a() => var t = true;\n while(t)\n t = false;\n
|
|
it('should cover a while statement with an unbracketed body (multiline)', async function() {
|
|
const contract = await util.bootstrapCoverage('loops/while-no-brackets', api, this.provider);
|
|
coverage.addContract(contract.instrumented, util.filePath);
|
|
await contract.instance.a(contract.gas);
|
|
const mapping = coverage.generate(contract.data, util.pathPrefix);
|
|
|
|
assert.deepEqual(mapping[util.filePath].l, {
|
|
5: 1, 6: 1, 7: 1,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].b, {});
|
|
assert.deepEqual(mapping[util.filePath].s, {
|
|
1: 1, 2: 1,
|
|
});
|
|
assert.deepEqual(mapping[util.filePath].f, {
|
|
1: 1,
|
|
});
|
|
});
|
|
});
|
|
|