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.
358 lines
12 KiB
358 lines
12 KiB
'use strict'
|
|
import { NightwatchBrowser } from 'nightwatch'
|
|
import init from '../helpers/init'
|
|
import sauce from './sauce'
|
|
|
|
module.exports = {
|
|
before: function (browser: NightwatchBrowser, done: VoidFunction) {
|
|
init(browser, done)
|
|
},
|
|
|
|
'@sources': function () {
|
|
return sources
|
|
},
|
|
|
|
'Test Recorder': function (browser: NightwatchBrowser) {
|
|
let addressRef
|
|
browser.addFile('scenario.json', { content: records })
|
|
.pause(5000)
|
|
.clickLaunchIcon('udapp')
|
|
.selectAccount('0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c') // this account will be used for this test suite
|
|
.click('div[class^="cardContainer"] i[class^="arrow"]')
|
|
.click('#runTabView .runtransaction')
|
|
.waitForElementPresent('.instance:nth-of-type(2)')
|
|
.click('.instance:nth-of-type(2) > div > button')
|
|
.waitForElementPresent('.instance:nth-of-type(3)')
|
|
.click('.instance:nth-of-type(3) > div > button')
|
|
.clickFunction('getInt - call')
|
|
.clickFunction('getAddress - call')
|
|
.clickFunction('getFromLib - call')
|
|
.waitForElementPresent('div[class^="contractActionsContainer"] div[class^="value"] ul')
|
|
.getAddressAtPosition(1, (address) => {
|
|
console.log('Test Recorder ' + address)
|
|
addressRef = address
|
|
})
|
|
.perform((done) => {
|
|
browser.verifyCallReturnValue(addressRef, ['0:uint256: 1', '0:uint256: 3456', '0:address: 0xbBF289D846208c16EDc8474705C748aff07732dB'])
|
|
.perform(() => done())
|
|
})
|
|
.click('*[data-id="deployAndRunClearInstances"]')
|
|
.testContracts('testRecorder.sol', sources[0]['testRecorder.sol'], ['testRecorder'])
|
|
.clickLaunchIcon('udapp')
|
|
.createContract('12')
|
|
.waitForElementPresent('.instance:nth-of-type(2)')
|
|
.click('.instance:nth-of-type(2) > div > button')
|
|
.clickFunction('set - transact (not payable)', { types: 'uint256 _p', values: '34' })
|
|
.click('i.savetransaction')
|
|
.modalFooterOKClick()
|
|
.getEditorValue(function (result) {
|
|
const parsed = JSON.parse(result)
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[0].record.parameters), JSON.stringify(scenario.transactions[0].record.parameters))
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[0].record.name), JSON.stringify(scenario.transactions[0].record.name))
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[0].record.type), JSON.stringify(scenario.transactions[0].record.type))
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[0].record.from), JSON.stringify(scenario.transactions[0].record.from))
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[0].record.contractName), JSON.stringify(scenario.transactions[0].record.contractName))
|
|
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[1].record.parameters), JSON.stringify(scenario.transactions[1].record.parameters))
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[1].record.name), JSON.stringify(scenario.transactions[1].record.name))
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[1].record.type), JSON.stringify(scenario.transactions[1].record.type))
|
|
browser.assert.equal(JSON.stringify(parsed.transactions[1].record.from), JSON.stringify(scenario.transactions[1].record.from))
|
|
})
|
|
},
|
|
|
|
'Record more than one contract': function (browser: NightwatchBrowser) {
|
|
// deploy 2 contracts (2 different ABIs), save the record, reexecute and test one of the function.
|
|
browser
|
|
.click('*[data-id="deployAndRunClearInstances"]')
|
|
.testContracts('multipleContracts.sol', sources[1]['multipleContracts.sol'], ['t1est', 't2est'])
|
|
.clickLaunchIcon('udapp')
|
|
.selectContract('t1est')
|
|
.pause(1000)
|
|
.createContract('')
|
|
.clickInstance(0)
|
|
.selectContract('t2est')
|
|
.pause(1000)
|
|
.createContract('')
|
|
.click('i.savetransaction')
|
|
.modalFooterOKClick()
|
|
.click('*[data-id="deployAndRunClearInstances"]') // clear udapp
|
|
.click('*[data-id="terminalClearConsole"]') // clear terminal
|
|
.click('#runTabView .runtransaction')
|
|
.clickInstance(1)
|
|
.pause(1000)
|
|
.clickFunction('set2 - transact (not payable)', { types: 'uint256 _po', values: '10' })
|
|
.testFunction('last',
|
|
{
|
|
status: 'true Transaction mined and execution succeed',
|
|
'decoded input': { 'uint256 _po': { type: 'BigNumber', hex: '0x0a' } }
|
|
})
|
|
.end()
|
|
},
|
|
tearDown: sauce
|
|
}
|
|
|
|
const sources = [{
|
|
'testRecorder.sol': {
|
|
content: `contract testRecorder {
|
|
constructor(uint p) public {
|
|
|
|
}
|
|
function set (uint _p) public {
|
|
|
|
}
|
|
}`
|
|
}
|
|
},
|
|
{
|
|
'multipleContracts.sol': {
|
|
content: `contract t1est {
|
|
uint p;
|
|
t2est t;
|
|
constructor () public {
|
|
t = new t2est();
|
|
t.set2(34);
|
|
}
|
|
|
|
function set(uint _p) public {
|
|
p = _p;
|
|
t.set2(12);
|
|
}
|
|
}
|
|
|
|
contract t2est {
|
|
uint p;
|
|
function set2(uint _po) public {
|
|
p = _po;
|
|
}
|
|
}`
|
|
}
|
|
}
|
|
]
|
|
|
|
const records = `{
|
|
"accounts": {
|
|
"account{10}": "0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c"
|
|
},
|
|
"linkReferences": {
|
|
"testLib": "created{1512830014773}"
|
|
},
|
|
"transactions": [
|
|
{
|
|
"timestamp": 1512830014773,
|
|
"record": {
|
|
"value": "0",
|
|
"parameters": [],
|
|
"abi": "0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a",
|
|
"contractName": "testLib",
|
|
"bytecode": "60606040523415600e57600080fd5b60968061001c6000396000f300606060405260043610603f576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680636d4ce63c146044575b600080fd5b604a6060565b6040518082815260200191505060405180910390f35b6000610d809050905600a165627a7a7230582022d123b15248b8176151f8d45c2dc132063bcc9bb8d5cd652aea7efae362c8050029",
|
|
"linkReferences": {},
|
|
"inputs": "()",
|
|
"type": "constructor",
|
|
"from": "account{10}"
|
|
}
|
|
},
|
|
{
|
|
"timestamp": 1512830015080,
|
|
"record": {
|
|
"value": "100",
|
|
"parameters": [
|
|
11
|
|
],
|
|
"abi": "0xc41589e7559804ea4a2080dad19d876a024ccb05117835447d72ce08c1d020ec",
|
|
"contractName": "test",
|
|
"bytecode": "60606040526040516020806102b183398101604052808051906020019091905050806000819055505061027a806100376000396000f300606060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680632f30c6f61461006757806338cc48311461009e57806362738998146100f357806387cc10e11461011c575b600080fd5b61009c600480803590602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610145565b005b34156100a957600080fd5b6100b1610191565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156100fe57600080fd5b6101066101bb565b6040518082815260200191505060405180910390f35b341561012757600080fd5b61012f6101c4565b6040518082815260200191505060405180910390f35b8160008190555080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054905090565b600073__browser/ballot.sol:testLib____________636d4ce63c6000604051602001526040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b151561022e57600080fd5b6102c65a03f4151561023f57600080fd5b505050604051805190509050905600a165627a7a72305820e0b2510bb2890a0334bfe5613d96db3e72442e63b514cdeaee8fc2c6bbd19d3a0029",
|
|
"linkReferences": {
|
|
"ballot.sol": {
|
|
"testLib": [
|
|
{
|
|
"length": 20,
|
|
"start": 511
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"name": "",
|
|
"type": "constructor",
|
|
"inputs": "(uint256)",
|
|
"from": "account{10}"
|
|
}
|
|
},
|
|
{
|
|
"timestamp": 1512830034180,
|
|
"record": {
|
|
"value": "1000000000000000000",
|
|
"parameters": [
|
|
1,
|
|
"created{1512830015080}"
|
|
],
|
|
"to": "created{1512830015080}",
|
|
"abi": "0xc41589e7559804ea4a2080dad19d876a024ccb05117835447d72ce08c1d020ec",
|
|
"name": "set",
|
|
"inputs": "(uint256,address)",
|
|
"type": "function",
|
|
"from": "account{10}"
|
|
}
|
|
}
|
|
],
|
|
"abis": {
|
|
"0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a": [
|
|
{
|
|
"constant": true,
|
|
"inputs": [],
|
|
"name": "get",
|
|
"outputs": [
|
|
{
|
|
"name": "",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"payable": false,
|
|
"stateMutability": "view",
|
|
"type": "function"
|
|
}
|
|
],
|
|
"0xc41589e7559804ea4a2080dad19d876a024ccb05117835447d72ce08c1d020ec": [
|
|
{
|
|
"constant": true,
|
|
"inputs": [],
|
|
"name": "getInt",
|
|
"outputs": [
|
|
{
|
|
"name": "",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"payable": false,
|
|
"stateMutability": "view",
|
|
"type": "function"
|
|
},
|
|
{
|
|
"constant": true,
|
|
"inputs": [],
|
|
"name": "getFromLib",
|
|
"outputs": [
|
|
{
|
|
"name": "",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"payable": false,
|
|
"stateMutability": "view",
|
|
"type": "function"
|
|
},
|
|
{
|
|
"constant": true,
|
|
"inputs": [],
|
|
"name": "getAddress",
|
|
"outputs": [
|
|
{
|
|
"name": "",
|
|
"type": "address"
|
|
}
|
|
],
|
|
"payable": false,
|
|
"stateMutability": "view",
|
|
"type": "function"
|
|
},
|
|
{
|
|
"constant": false,
|
|
"inputs": [
|
|
{
|
|
"name": "_t",
|
|
"type": "uint256"
|
|
},
|
|
{
|
|
"name": "_add",
|
|
"type": "address"
|
|
}
|
|
],
|
|
"name": "set",
|
|
"outputs": [],
|
|
"payable": true,
|
|
"stateMutability": "payable",
|
|
"type": "function"
|
|
},
|
|
{
|
|
"inputs": [
|
|
{
|
|
"name": "_r",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"payable": true,
|
|
"stateMutability": "payable",
|
|
"type": "constructor"
|
|
}
|
|
]
|
|
}
|
|
}`
|
|
|
|
const scenario = {
|
|
accounts: {
|
|
'account{10}': '0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c'
|
|
},
|
|
linkReferences: {},
|
|
transactions: [
|
|
{
|
|
timestamp: 1512912691086,
|
|
record: {
|
|
value: '0',
|
|
parameters: [
|
|
"12" // eslint-disable-line
|
|
],
|
|
abi: '0x54a8c0ab653c15bfb48b47fd011ba2b9617af01cb45cab344acd57c924d56798',
|
|
contractName: 'testRecorder',
|
|
bytecode: '6060604052341561000f57600080fd5b6040516020806100cd833981016040528080519060200190919050505060938061003a6000396000f300606060405260043610603f576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360fe47b1146044575b600080fd5b3415604e57600080fd5b606260048080359060200190919050506064565b005b505600a165627a7a723058204839660366b94f5f3c8c6da233a2c5fe95ad5635b5c8a2bb630a8b845d68ecdd0029',
|
|
linkReferences: {},
|
|
name: '',
|
|
type: 'constructor',
|
|
inputs: '(uint256)',
|
|
from: 'account{10}'
|
|
}
|
|
},
|
|
{
|
|
timestamp: 1512912696128,
|
|
record: {
|
|
value: '0',
|
|
parameters: [
|
|
"34" // eslint-disable-line
|
|
],
|
|
to: 'created{1512912691086}',
|
|
abi: '0x54a8c0ab653c15bfb48b47fd011ba2b9617af01cb45cab344acd57c924d56798',
|
|
name: 'set',
|
|
inputs: '(uint256)',
|
|
type: 'function',
|
|
from: 'account{10}'
|
|
}
|
|
}
|
|
],
|
|
abis: {
|
|
'0x54a8c0ab653c15bfb48b47fd011ba2b9617af01cb45cab344acd57c924d56798': [
|
|
{
|
|
constant: false,
|
|
inputs: [
|
|
{
|
|
name: '_p',
|
|
type: 'uint256'
|
|
}
|
|
],
|
|
name: 'set',
|
|
outputs: [],
|
|
payable: false,
|
|
stateMutability: 'nonpayable',
|
|
type: 'function'
|
|
},
|
|
{
|
|
inputs: [
|
|
{
|
|
name: 'p',
|
|
type: 'uint256'
|
|
}
|
|
],
|
|
payable: false,
|
|
stateMutability: 'nonpayable',
|
|
type: 'constructor'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|