This repository has been archived by the owner on Jun 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
template.03_deploy_fail_bytecode.js
83 lines (73 loc) · 2.69 KB
/
template.03_deploy_fail_bytecode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* eslint-disable require-jsdoc */
import fs from 'fs';
import os from 'os';
import path from 'path';
import Web3 from 'web3';
import Enigma from '../../src/Enigma';
import utils from '../../src/enigma-utils';
import * as eeConstants from '../../src/emitterConstants';
import {EnigmaContract, EnigmaTokenContract} from './contractLoader';
import * as constants from './testConstants';
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
describe('Enigma tests', () => {
let accounts;
let web3;
let enigma;
let epochSize;
it('initializes', () => {
const provider = new Web3.providers.HttpProvider('http://localhost:9545');
web3 = new Web3(provider);
return web3.eth.getAccounts().then((result) => {
accounts = result;
enigma = new Enigma(
web3,
EnigmaContract.networks['4447'].address,
EnigmaTokenContract.networks['4447'].address,
'http://localhost:3346',
{
gas: 4712388,
gasPrice: 100000000000,
from: accounts[0],
},
);
enigma.admin();
expect(Enigma.version()).toEqual('0.0.1');
});
});
let scTask1;
const homedir = os.homedir();
it('should generate and save key/pair', () => {
enigma.setTaskKeyPair('cupcake');
});
it('should deploy faulty secret contract', async () => {
let scTaskFn = 'construct()';
let scTaskArgs = '';
let scTaskGasLimit = 100;
let scTaskGasPx = utils.toGrains(1);
let preCode = Buffer.from('5468697369736e6f746170726f706572736563726574636f6e74726163742e456e69676d6172756c65732e', 'hex');
scTask1 = await new Promise((resolve, reject) => {
enigma.deploySecretContract(scTaskFn, scTaskArgs, scTaskGasLimit, scTaskGasPx, accounts[0], preCode)
.on(eeConstants.DEPLOY_SECRET_CONTRACT_RESULT, (receipt) => resolve(receipt))
.on(eeConstants.ERROR, (error) => reject(error));
});
}, constants.TIMEOUT_FAILDEPLOY);
it('should get the failed receipt', async () => {
do {
await sleep(1000);
scTask1 = await enigma.getTaskRecordStatus(scTask1);
process.stdout.write('Waiting. Current Task Status is '+scTask1.ethStatus+'\r');
} while (scTask1.ethStatus != 3);
expect(scTask1.ethStatus).toEqual(3);
process.stdout.write('Completed. Final Task Status is '+scTask1.ethStatus+'\n');
}, constants.TIMEOUT_FAILDEPLOY);
it('should fail to verify deployed contract', async () => {
const result = await enigma.admin.isDeployed(scTask1.scAddr);
expect(result).toEqual(false);
});
it('should fail to get deployed contract bytecode hash', async () => {
const result = await enigma.admin.getCodeHash(scTask1.scAddr);
expect(result).toBeFalsy;
});
});