mirror of https://github.com/embarklabs/sggc.git
37 lines
919 B
JavaScript
37 lines
919 B
JavaScript
/**
|
|
* This file is part of the 1st Solidity Gas Golfing Contest.
|
|
*
|
|
* This work is licensed under Creative Commons Attribution ShareAlike 3.0.
|
|
* https://creativecommons.org/licenses/by-sa/3.0/
|
|
*/
|
|
|
|
var testdata = require('../data/HexDecoder.json');
|
|
const HexDecoder = require('Embark/contracts/HexDecoder');
|
|
|
|
config({
|
|
contracts: {
|
|
HexDecoder: {}
|
|
}
|
|
});
|
|
|
|
contract("HexDecoder", function() {
|
|
this.timeout(0);
|
|
|
|
testdata.vectors.forEach(function(v, i) {
|
|
it("Passes test vector " + i, async function() {
|
|
var result = await HexDecoder.methods.decode(v.input[0]).call({gas: v.gas});
|
|
assert.deepEqual(result || '0x', v.output[0]);
|
|
});
|
|
});
|
|
|
|
after(async function() {
|
|
var totalGas = 0;
|
|
for(var v of testdata.vectors) {
|
|
totalGas += await HexDecoder.methods.decode(v.input[0]).estimateGas({gas: v.gas}) - 21000;
|
|
}
|
|
console.log("Total gas for Unique: " + totalGas);
|
|
});
|
|
|
|
});
|
|
|