-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathjsutils.py
164 lines (146 loc) · 4.58 KB
/
jsutils.py
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/usr/bin/python2
def js_common_intro(accounts_num):
"""Common functions, variables to add to all js scripts"""
s = "console.log('unlocking accounts');\n"
for i in range(0, accounts_num):
s += "personal.unlockAccount(eth.accounts[{}], '123');\n".format(i)
s += """// set the basic accounts, coinbase should be random so mining rewards don't pollute results
var curator = eth.accounts[0];
var proposalCreator = eth.accounts[1];
var contractor = eth.accounts[2];
var etherBase = '0x9999999999999999999999999999999999999999';
web3.miner.setEtherbase(etherBase);
var testMap = {};
function checkWork() {
miner.start(1);
admin.sleepBlocks(3);
miner.stop();
}
function time_now() {
return Math.floor(Date.now() / 1000);
}
function bigDiff(astr, bstr) {
return new BigNumber(astr).minus(new BigNumber(bstr));
}
function bigDiffRound(astr, bstr) {
return Math.round(bigDiff(astr, bstr));
}
function addToTest(name, value) {
testMap[name] = value;
console.log("'" + name + "' = " + value);
}
function testResults() {
console.log("Test Results: " + JSON.stringify(testMap));
}
function testFail(str) {
console.log("TEST FAIL: " + str);
throw ' ';
}
function attempt_proposal(
argdao,
recipient,
proposal_creator,
ether_amount,
desc,
bytecode,
debating_period,
ether_deposit,
is_split_proposal
) {
dao_closing_time = argdao.closingTime();
if (!argdao.isFueled()) {
testFail(
"Failed to create a proposal to: '" + desc + "' because the DAO "
+ "is not fueled."
);
}
if (dao_closing_time.gt(time_now())) {
testFail(
"Failed to create a proposal to: '" + desc + "' because the DAO's "
+ "creation time has not yet closed.\\ndao_closing_time: "
+ dao_closing_time + "\\nnow(): " + time_now()
);
}
proposals_num_before = argdao.numberOfProposals();
console.log("Creating a new proposal to: '" + desc + "'");
argdao.newProposal.sendTransaction(
recipient,
web3.toWei(ether_amount, "ether"),
desc,
bytecode,
debating_period,
is_split_proposal,
{
from: proposal_creator,
value: web3.toWei(ether_deposit, "ether"),
gas: 1000000
});
checkWork();
proposals_num_now = argdao.numberOfProposals();
if (!proposals_num_now.equals(proposals_num_before.add(1))) {
testFail("Failed to create a proposal to: " + desc + "'");
} else {
console.log("Proposal succesfully created");
}
return proposals_num_now;
}
function attempt_split(argdao, prop_id, user, new_curator, split_exec_period) {
console.log("Account '" + user + "' is calling splitDAO()");
var vote_deadline = argdao.proposals(prop_id)[3];
if (vote_deadline.gt(time_now())) {
testFail("Can't split the DAO while the proposal is still debated.");
}
var prop_deadline = vote_deadline.add(split_exec_period);
console.log("prop_deadline: " + prop_deadline);
console.log("now(): " + time_now());
if (prop_deadline.lessThan(time_now() + 5)) {
testFail("Can no longer vote to split the DAO. 'now > p.votingDeadline + splitExecutionPeriod'");
}
argdao.splitDAO.sendTransaction(
prop_id,
new_curator,
{from:user, gas: 4700000});
checkWork();
console.log("Account '" + user + "' called splitDAO() succesfully");
}
function attempt_execute_proposal(
argdao,
prop_id,
bytecode,
prop_creator,
expect_closed,
expect_pass) {
desc = argdao.proposals(prop_id)[2];
vote_deadline = argdao.proposals(prop_id)[3];
console.log("Attempting to execute proposal for: '" +desc +"'.");
if (vote_deadline.gt(time_now())) {
testFail("Can't execute a proposal while it is is still debated.");
}
argdao.executeProposal.sendTransaction(
prop_id,
bytecode,
{from: prop_creator, gas:4700000}
);
checkWork();
var should_quit = false;
if (argdao.proposals(prop_id)[4] == expect_closed) {
should_quit = true;
console.log(
"Expected the proposal to be " + (expect_closed ? "closed" : "open") +
" but it's not"
);
}
if (argdao.proposals(prop_id)[5] != expect_pass) {
should_quit = true;
console.log(
"Expected the proposal for: '" +desc +" to " +
(expect_pass ? "pass" : "fail") + "."
);
}
if (should_quit) {
testFail("Failed to execute proposal for: '" +desc +"'.");
}
console.log("Executed proposal: '" + desc + "'.");
}
"""
return s