parent
56805303ba
commit
2cb6cf1cf5
File diff suppressed because it is too large
Load Diff
@ -1,32 +1,32 @@ |
||||
// import { default as test} from "tape"
|
||||
// import { helpers } from 'remix-lib'
|
||||
// import { readFileSync } from 'fs'
|
||||
// import { join } from 'path'
|
||||
// import { default as StatRunner } from '../../dist/src/solidity-analyzer'
|
||||
// import { install, require as requireNPMmodule } from 'npm-install-version'
|
||||
// install('solc@0.4.24')
|
||||
// const compiler = requireNPMmodule('solc@0.4.24')
|
||||
// const {compilerInput } = helpers.compiler
|
||||
// const folder = 'solidity-v0.4.24'
|
||||
import { default as test} from "tape" |
||||
import { helpers } from 'remix-lib' |
||||
import { readFileSync } from 'fs' |
||||
import { join } from 'path' |
||||
import { default as StatRunner } from '../../dist/src/solidity-analyzer' |
||||
import { install, require as requireNPMmodule } from 'npm-install-version' |
||||
install('solc@0.4.24') |
||||
const compiler = requireNPMmodule('solc@0.4.24') |
||||
const { compilerInput } = helpers.compiler |
||||
const folder = 'solidity-v0.4.24' |
||||
|
||||
// function compile (fileName) {
|
||||
// const content = readFileSync(join(__dirname, 'test-contracts/' + folder, fileName), 'utf8')
|
||||
// return JSON.parse(compiler.compileStandardWrapper(compilerInput(content)))
|
||||
// }
|
||||
function compile (fileName) { |
||||
const content = readFileSync(join(__dirname, 'test-contracts/' + folder, fileName), 'utf8') |
||||
return JSON.parse(compiler.compileStandardWrapper(compilerInput(content))) |
||||
} |
||||
|
||||
// test('staticAnalysisIssues.functionParameterPassingError', function (t) {
|
||||
// // https://github.com/ethereum/remix-ide/issues/889#issuecomment-351746474
|
||||
// t.plan(2)
|
||||
// const res = compile('functionParameters.sol')
|
||||
// const Module = require('../../dist/src/solidity-analyzer/modules/checksEffectsInteraction').default
|
||||
// const statRunner = new StatRunner()
|
||||
test('staticAnalysisIssues.functionParameterPassingError', function (t) { |
||||
// https://github.com/ethereum/remix-ide/issues/889#issuecomment-351746474
|
||||
t.plan(2) |
||||
const res = compile('functionParameters.sol') |
||||
const Module = require('../../dist/src/solidity-analyzer/modules/checksEffectsInteraction').default |
||||
const statRunner = new StatRunner() |
||||
|
||||
// t.doesNotThrow(() => {
|
||||
// statRunner.runWithModuleList(res, [{ name: new Module().name, mod: new Module() }], (reports) => {
|
||||
// })
|
||||
// }, 'Analysis should not throw')
|
||||
t.doesNotThrow(() => { |
||||
statRunner.runWithModuleList(res, [{ name: new Module().name, mod: new Module() }], (reports) => { |
||||
}) |
||||
}, 'Analysis should not throw') |
||||
|
||||
// statRunner.runWithModuleList(res, [{ name: new Module().name, mod: new Module() }], (reports) => {
|
||||
// t.ok(!reports.some((mod) => mod.report.some((rep) => rep.warning.includes('INTERNAL ERROR')), 'Should not have internal errors'))
|
||||
// })
|
||||
// })
|
||||
statRunner.runWithModuleList(res, [{ name: new Module().name, mod: new Module() }], (reports) => { |
||||
t.ok(!reports.some((mod) => mod.report.some((rep) => rep.warning.includes('INTERNAL ERROR')), 'Should not have internal errors')) |
||||
}) |
||||
}) |
||||
|
Loading…
Reference in new issue