2016-10-14 11:01:54 +00:00
|
|
|
/*globals describe, it*/
|
2017-08-03 23:29:09 +00:00
|
|
|
let CodeGenerator = require('../lib/contracts/code_generator.js');
|
2017-03-29 17:57:22 +00:00
|
|
|
let assert = require('assert');
|
2016-10-14 11:01:54 +00:00
|
|
|
|
|
|
|
// TODO: instead 'eval' the code with a fake web3 object
|
|
|
|
// and check the generate code interacts as expected
|
2017-08-03 23:29:09 +00:00
|
|
|
describe('embark.CodeGenerator', function() {
|
2017-03-08 14:56:00 +00:00
|
|
|
this.timeout(0);
|
2016-10-14 11:01:54 +00:00
|
|
|
describe('#generateProvider', function() {
|
2017-08-03 23:29:09 +00:00
|
|
|
let generator = new CodeGenerator({contractsConfig: {"dappConnection": [ "$WEB3", "http://somehost:1234" ] }, contractsManager: {}});
|
2016-10-14 11:01:54 +00:00
|
|
|
|
|
|
|
it('should generate code to connect to a provider', function() {
|
2017-10-14 00:01:35 +00:00
|
|
|
var providerCode = "function __reduce(arr, memo, iteratee, cb) {\n if (typeof cb !== 'function') {\n if (typeof memo === 'function' && typeof iteratee === 'function') {\n cb = iteratee;\n iteratee = memo;\n memo = [];\n } else {\n throw new TypeError('expected callback to be a function');\n }\n }\n\n if (!Array.isArray(arr)) {\n cb(new TypeError('expected an array'));\n return;\n }\n\n if (typeof iteratee !== 'function') {\n cb(new TypeError('expected iteratee to be a function'));\n return;\n }\n\n (function next(i, acc) {\n if (i === arr.length) {\n cb(null, acc);\n return;\n }\n\n iteratee(acc, arr[i], function(err, val) {\n if (err) {\n cb(err);\n return;\n }\n next(i + 1, val);\n });\n })(0, memo);\n};\n\nvar __mainContext = __mainContext || this;\n__mainContext.__LoadManager = function() { this.list = []; this.done = false; }\n__mainContext.__LoadManager.prototype.execWhenReady = function(cb) { if (this.done) { cb(); } else { this.list.push(cb) } }\n__mainContext.__LoadManager.prototype.doFirst = function(todo) { var self = this; todo(function() { self.done = true; self.list.map((x) => x.apply()) }) }\n__mainContext.__loadManagerInstance = new __mainContext.__LoadManager();\nvar whenEnvIsLoaded = function(cb) {\n if (typeof document !== 'undefined' && document !== null) {\n document.addEventListener('DOMContentLoaded', cb);\n } else {\n cb();\n }\n}\nwhenEnvIsLoaded(function(){__mainContext.__loadManagerInstance.doFirst(function(done) {\n\nif (typeof window !== 'undefined') { window.web3 = undefined; }\n__reduce([\"$WEB3\",\"http://somehost:1234\"], function(prev, value, next) {\nif (prev === false) {\n return next(null, false);\n}\n if (value === '$WEB3' && (typeof web3 !== 'undefined' && typeof Web3 !== 'undefined')) {\n\tweb3 = new Web3(web3.currentProvider);\n } else if (value !== '$WEB3' && (typeof Web3 !== 'undefined' && ((typeof web3 === 'undefined') || (typeof web3 !== 'undefined' && (!web3.isConnected || (web3.isConnected && !web3.isConnected())))))) {\n\tweb3 = new Web3(new Web3.providers.HttpProvider(value));\n}\nelse if (value === '$WEB3') {\n\treturn next(null, '');\n}\nweb3.eth.getAccounts(function(err, account) { if(err) { next(null, true) } else { next(null, false) }})\n}, function(err, _result) {\nweb3.eth.getAccounts(function(err, accounts) {;\nweb3.eth.defaultAccount = accounts[0];\ndone();\n});\n});\n})})";
|
2016-10-14 11:01:54 +00:00
|
|
|
|
2017-10-14 00:01:35 +00:00
|
|
|
console.log(JSON.stringify(generator.generateProvider()));
|
|
|
|
|
|
|
|
assert.equal(generator.generateProvider().split('\n'), providerCode.split('\n'));
|
2016-10-14 11:01:54 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#generateContracts', function() {
|
2017-08-03 23:29:09 +00:00
|
|
|
let generator = new CodeGenerator({blockchainConfig: {}, contractsManager: {
|
2016-10-14 11:01:54 +00:00
|
|
|
contracts: {
|
|
|
|
SimpleStorage: {
|
|
|
|
abiDefinition: [{"constant":true,"inputs":[],"name":"storedData","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"x","type":"uint256"}],"name":"set","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"get","outputs":[{"name":"retVal","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialValue","type":"uint256"}],"type":"constructor"}],
|
|
|
|
gasEstimates: 12000,
|
|
|
|
deployedAddress: "0x123",
|
|
|
|
code: '12345'
|
|
|
|
},
|
|
|
|
Foo: {
|
|
|
|
abiDefinition: [{"constant":true,"inputs":[],"name":"storedData","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"x","type":"uint256"}],"name":"set","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"get","outputs":[{"name":"retVal","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialValue","type":"uint256"}],"type":"constructor"}],
|
|
|
|
gasEstimates: 12000,
|
|
|
|
deployedAddress: "0x124",
|
|
|
|
code: '123456'
|
|
|
|
}
|
|
|
|
}
|
2016-12-07 02:33:31 +00:00
|
|
|
}});
|
2016-10-14 11:01:54 +00:00
|
|
|
|
|
|
|
describe('with EmbarkJS', function() {
|
2017-03-29 17:57:22 +00:00
|
|
|
let withEmbarkJS = true;
|
2016-10-14 11:01:54 +00:00
|
|
|
|
|
|
|
it('should generate contract code', function() {
|
2017-10-13 09:56:42 +00:00
|
|
|
var contractCode = "\n\n__mainContext.__loadManagerInstance.execWhenReady(function() {\nif (typeof window !== 'undefined') { window.SimpleStorage = undefined; }\n__mainContext.SimpleStorage = new EmbarkJS.Contract({abi: [{\"constant\":true,\"inputs\":[],\"name\":\"storedData\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"x\",\"type\":\"uint256\"}],\"name\":\"set\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"get\",\"outputs\":[{\"name\":\"retVal\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"inputs\":[{\"name\":\"initialValue\",\"type\":\"uint256\"}],\"type\":\"constructor\"}], address: '0x123', code: '12345', gasEstimates: 12000});\n});\n__mainContext.__loadManagerInstance.execWhenReady(function() {\nif (typeof window !== 'undefined') { window.Foo = undefined; }\n__mainContext.Foo = new EmbarkJS.Contract({abi: [{\"constant\":true,\"inputs\":[],\"name\":\"storedData\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"x\",\"type\":\"uint256\"}],\"name\":\"set\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"get\",\"outputs\":[{\"name\":\"retVal\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"inputs\":[{\"name\":\"initialValue\",\"type\":\"uint256\"}],\"type\":\"constructor\"}], address: '0x124', code: '123456', gasEstimates: 12000});\n});";
|
2016-10-14 11:01:54 +00:00
|
|
|
assert.equal(generator.generateContracts(withEmbarkJS), contractCode);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with default interface', function() {
|
2017-03-29 17:57:22 +00:00
|
|
|
let withEmbarkJS = false;
|
2016-10-14 11:01:54 +00:00
|
|
|
|
|
|
|
it('should generate contract code', function() {
|
2017-10-13 09:56:42 +00:00
|
|
|
var contractCode = "\n\n__mainContext.__loadManagerInstance.execWhenReady(function() {\nif (typeof window !== 'undefined') { window.SimpleStorage = undefined; }\nSimpleStorageAbi = [{\"constant\":true,\"inputs\":[],\"name\":\"storedData\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"x\",\"type\":\"uint256\"}],\"name\":\"set\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"get\",\"outputs\":[{\"name\":\"retVal\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"inputs\":[{\"name\":\"initialValue\",\"type\":\"uint256\"}],\"type\":\"constructor\"}];\nSimpleStorageContract = web3.eth.contract(SimpleStorageAbi);\nSimpleStorage = SimpleStorageContract.at('0x123');\n});\n__mainContext.__loadManagerInstance.execWhenReady(function() {\nif (typeof window !== 'undefined') { window.Foo = undefined; }\nFooAbi = [{\"constant\":true,\"inputs\":[],\"name\":\"storedData\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"x\",\"type\":\"uint256\"}],\"name\":\"set\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"get\",\"outputs\":[{\"name\":\"retVal\",\"type\":\"uint256\"}],\"payable\":false,\"type\":\"function\"},{\"inputs\":[{\"name\":\"initialValue\",\"type\":\"uint256\"}],\"type\":\"constructor\"}];\nFooContract = web3.eth.contract(FooAbi);\nFoo = FooContract.at('0x124');\n});";
|
2016-10-14 11:01:54 +00:00
|
|
|
assert.equal(generator.generateContracts(withEmbarkJS), contractCode);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
//describe('#generateABI', function() {
|
|
|
|
//});
|
|
|
|
});
|