remix-project mirror
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.
remix-project/tests/testRunner.js

97 lines
2.8 KiB

7 years ago
const async = require('async');
const Web3 = require('web3');
const assert = require('assert');
let Compiler = require('../src/compiler.js');
let Deployer = require('../src/deployer.js');
let TestRunner = require('../src/testRunner.js');
function compileAndDeploy(filename, callback) {
let web3 = new Web3();
web3.setProvider(new web3.providers.HttpProvider('http://localhost:8545'));
async.waterfall([
function compile(next) {
Compiler.compileFile(filename, next);
},
function deployAllContracts(compilationResult, next) {
Deployer.deployAll(compilationResult, web3, next);
}
], function(_err, contracts) {
callback(null, contracts);
});
}
describe('testRunner', function() {
describe("test with beforeAll", function() {
let filename = 'tests/examples_1/simple_storage_test.sol'
7 years ago
let tests = [], results = {};
before(function(done) {
compileAndDeploy(filename, function(_err, contracts) {
var testCallback = function(test) {
tests.push(test);
7 years ago
}
var resultsCallback = function(_err, _results) {
results = _results;
done();
}
TestRunner.runTest(filename, contracts.MyTest, testCallback, resultsCallback);
});
});
it('should 1 passing test', function() {
assert.equal(results.passingNum, 1)
});
it('should 1 failing test', function() {
7 years ago
assert.equal(results.failureNum, 1)
});
it('should returns 3 messages', function() {
assert.deepEqual(tests, [
{ type: 'contract', value: 'tests/examples_1/simple_storage_test.sol' },
{ type: 'testPass', value: 'Initial value should be100' },
{ type: 'testFailure', value: 'Initial value should be200' }
]);
});
7 years ago
});
describe("test with beforeEach", function() {
let filename = 'tests/examples_2/simple_storage_test.sol'
let tests = [], results = {};
before(function(done) {
compileAndDeploy(filename, function(_err, contracts) {
var testCallback = function(test) {
tests.push(test);
}
var resultsCallback = function(_err, _results) {
results = _results;
done();
}
TestRunner.runTest(filename, contracts.MyTest, testCallback, resultsCallback);
});
});
it('should 2 passing tests', function() {
assert.equal(results.passingNum, 2)
});
it('should 0 failing tests', function() {
assert.equal(results.failureNum, 0)
});
it('should returns 3 messages', function() {
assert.deepEqual(tests, [
{ type: 'contract', value: 'tests/examples_2/simple_storage_test.sol' },
{ type: 'testPass', value: 'Initial value should be100' },
{ type: 'testPass', value: 'Initial value should be200' }
]);
});
});
7 years ago
});