aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/js_test.go
blob: 91b927dd3a28c49a427c54b00ca05eec3168df99 (plain) (blame)
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
package main

import (
    "fmt"
    "io/ioutil"
    "math/big"
    "os"
    "path/filepath"
    "regexp"
    "runtime"
    "strconv"
    "testing"
    "time"

    "github.com/ethereum/go-ethereum/accounts"
    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/common/compiler"
    "github.com/ethereum/go-ethereum/common/docserver"
    "github.com/ethereum/go-ethereum/common/natspec"
    "github.com/ethereum/go-ethereum/common/registrar"
    "github.com/ethereum/go-ethereum/core"
    "github.com/ethereum/go-ethereum/crypto"
    "github.com/ethereum/go-ethereum/eth"
    "github.com/ethereum/go-ethereum/rpc/codec"
    "github.com/ethereum/go-ethereum/rpc/comms"
)

const (
    testSolcPath = ""
    solcVersion  = "0.9.23"

    testKey     = "e6fab74a43941f82d89cb7faa408e227cdad3153c4720e540e855c19b15e6674"
    testAddress = "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182"
    testBalance = "10000000000000000000"
    // of empty string
    testHash = "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"
)

var (
    versionRE   = regexp.MustCompile(strconv.Quote(`"compilerVersion":"` + solcVersion + `"`))
    testNodeKey = crypto.ToECDSA(common.Hex2Bytes("4b50fa71f5c3eeb8fdc452224b2395af2fcc3d125e06c32c82e048c0559db03f"))
    testGenesis = `{"` + testAddress[2:] + `": {"balance": "` + testBalance + `"}}`
)

type testjethre struct {
    *jsre
    lastConfirm string
    ds          *docserver.DocServer
}

func (self *testjethre) UnlockAccount(acc []byte) bool {
    err := self.ethereum.AccountManager().Unlock(common.BytesToAddress(acc), "")
    if err != nil {
        panic("unable to unlock")
    }
    return true
}

func (self *testjethre) ConfirmTransaction(tx string) bool {
    if self.ethereum.NatSpec {
        self.lastConfirm = natspec.GetNotice(self.xeth, tx, self.ds)
    }
    return true
}

func testJEthRE(t *testing.T) (string, *testjethre, *eth.Ethereum) {
    return testREPL(t, nil)
}

func testREPL(t *testing.T, config func(*eth.Config)) (string, *testjethre, *eth.Ethereum) {
    tmp, err := ioutil.TempDir("", "geth-test")
    if err != nil {
        t.Fatal(err)
    }

    // set up mock genesis with balance on the testAddress
    core.GenesisAccounts = []byte(testGenesis)

    ks := crypto.NewKeyStorePlain(filepath.Join(tmp, "keystore"))
    am := accounts.NewManager(ks)
    conf := &eth.Config{
        NodeKey:        testNodeKey,
        DataDir:        tmp,
        AccountManager: am,
        MaxPeers:       0,
        Name:           "test",
        SolcPath:       testSolcPath,
        PowTest:        true,
    }
    if config != nil {
        config(conf)
    }
    ethereum, err := eth.New(conf)
    if err != nil {
        t.Fatal("%v", err)
    }

    keyb, err := crypto.HexToECDSA(testKey)
    if err != nil {
        t.Fatal(err)
    }
    key := crypto.NewKeyFromECDSA(keyb)
    err = ks.StoreKey(key, "")
    if err != nil {
        t.Fatal(err)
    }

    err = am.Unlock(key.Address, "")
    if err != nil {
        t.Fatal(err)
    }

    assetPath := filepath.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist", "assets", "ext")
    client := comms.NewInProcClient(codec.JSON)
    ds := docserver.New("/")
    tf := &testjethre{ds: ds}
    repl := newJSRE(ethereum, assetPath, "", client, false, tf)
    tf.jsre = repl
    return tmp, tf, ethereum
}

func TestNodeInfo(t *testing.T) {
    t.Skip("broken after p2p update")
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Fatalf("error starting ethereum: %v", err)
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)

    want := `{"DiscPort":0,"IP":"0.0.0.0","ListenAddr":"","Name":"test","NodeID":"4cb2fc32924e94277bf94b5e4c983beedb2eabd5a0bc941db32202735c6625d020ca14a5963d1738af43b6ac0a711d61b1a06de931a499fe2aa0b1a132a902b5","NodeUrl":"enode://4cb2fc32924e94277bf94b5e4c983beedb2eabd5a0bc941db32202735c6625d020ca14a5963d1738af43b6ac0a711d61b1a06de931a499fe2aa0b1a132a902b5@0.0.0.0:0","TCPPort":0,"Td":"131072"}`
    checkEvalJSON(t, repl, `admin.nodeInfo`, want)
}

func TestAccounts(t *testing.T) {
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Fatalf("error starting ethereum: %v", err)
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)

    checkEvalJSON(t, repl, `eth.accounts`, `["`+testAddress+`"]`)
    checkEvalJSON(t, repl, `eth.coinbase`, `null`)
    val, err := repl.re.Run(`personal.newAccount("password")`)
    if err != nil {
        t.Errorf("expected no error, got %v", err)
    }
    addr := val.String()
    if !regexp.MustCompile(`0x[0-9a-f]{40}`).MatchString(addr) {
        t.Errorf("address not hex: %q", addr)
    }

    checkEvalJSON(t, repl, `eth.accounts`, `["`+testAddress+`","`+addr+`"]`)
}

func TestBlockChain(t *testing.T) {
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Fatalf("error starting ethereum: %v", err)
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)
    // get current block dump before export/import.
    val, err := repl.re.Run("JSON.stringify(debug.dumpBlock(eth.blockNumber))")
    if err != nil {
        t.Errorf("expected no error, got %v", err)
    }
    beforeExport := val.String()

    // do the export
    extmp, err := ioutil.TempDir("", "geth-test-export")
    if err != nil {
        t.Fatal(err)
    }
    defer os.RemoveAll(extmp)
    tmpfile := filepath.Join(extmp, "export.chain")
    tmpfileq := strconv.Quote(tmpfile)

    ethereum.ChainManager().Reset()

    checkEvalJSON(t, repl, `admin.exportChain(`+tmpfileq+`)`, `true`)
    if _, err := os.Stat(tmpfile); err != nil {
        t.Fatal(err)
    }

    // check import, verify that dumpBlock gives the same result.
    checkEvalJSON(t, repl, `admin.importChain(`+tmpfileq+`)`, `true`)
    checkEvalJSON(t, repl, `debug.dumpBlock(eth.blockNumber)`, beforeExport)
}

func TestMining(t *testing.T) {
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Fatalf("error starting ethereum: %v", err)
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)
    checkEvalJSON(t, repl, `eth.mining`, `false`)
}

func TestRPC(t *testing.T) {
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Errorf("error starting ethereum: %v", err)
        return
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)

    checkEvalJSON(t, repl, `admin.startRPC("127.0.0.1", 5004, "*", "web3,eth,net")`, `true`)
}

func TestCheckTestAccountBalance(t *testing.T) {
    t.Skip() // i don't think it tests the correct behaviour here. it's actually testing
    // internals which shouldn't be tested. This now fails because of a change in the core
    // and i have no means to fix this, sorry - @obscuren
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Errorf("error starting ethereum: %v", err)
        return
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)

    repl.re.Run(`primary = "` + testAddress + `"`)
    checkEvalJSON(t, repl, `eth.getBalance(primary)`, `"`+testBalance+`"`)
}

func TestSignature(t *testing.T) {
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Errorf("error starting ethereum: %v", err)
        return
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)

    val, err := repl.re.Run(`eth.sign("` + testAddress + `", "` + testHash + `")`)

    // This is a very preliminary test, lacking actual signature verification
    if err != nil {
        t.Errorf("Error running js: %v", err)
        return
    }
    output := val.String()
    t.Logf("Output: %v", output)

    regex := regexp.MustCompile(`^0x[0-9a-f]{130}$`)
    if !regex.MatchString(output) {
        t.Errorf("Signature is not 65 bytes represented in hexadecimal.")
        return
    }
}

func TestContract(t *testing.T) {
    t.Skip("contract testing is implemented with mining in ethash test mode. This takes about 7seconds to run. Unskip and run on demand")
    tmp, repl, ethereum := testJEthRE(t)
    if err := ethereum.Start(); err != nil {
        t.Errorf("error starting ethereum: %v", err)
        return
    }
    defer ethereum.Stop()
    defer os.RemoveAll(tmp)

    coinbase := common.HexToAddress(testAddress)
    reg := registrar.New(repl.xeth)
    err := reg.SetGlobalRegistrar("", coinbase)
    if err != nil {
        t.Errorf("error setting HashReg: %v", err)
    }
    err = reg.SetHashReg("", coinbase)
    if err != nil {
        t.Errorf("error setting HashReg: %v", err)
    }
    err = reg.SetUrlHint("", coinbase)
    if err != nil {
        t.Errorf("error setting HashReg: %v", err)
    }

    source := `contract test {\n` +
        "   /// @notice Will multiply `a` by 7." + `\n` +
        `   function multiply(uint a) returns(uint d) {\n` +
        `       return a * 7;\n` +
        `   }\n` +
        `}\n`

    if checkEvalJSON(t, repl, `admin.contractInfo.stop()`, `true`) != nil {
        return
    }

    contractInfo, err := ioutil.ReadFile("info_test.json")
    if err != nil {
        t.Fatalf("%v", err)
    }
    if checkEvalJSON(t, repl, `primary = eth.accounts[0]`, `"`+testAddress+`"`) != nil {
        return
    }
    if checkEvalJSON(t, repl, `source = "`+source+`"`, `"`+source+`"`) != nil {
        return
    }

    // if solc is found with right version, test it, otherwise read from file
    sol, err := compiler.New("")
    if err != nil {
        t.Logf("solc not found: mocking contract compilation step")
    } else if sol.Version() != solcVersion {
        t.Logf("WARNING: solc different version found (%v, test written for %v, may need to update)", sol.Version(), solcVersion)
    }

    if err != nil {
        info, err := ioutil.ReadFile("info_test.json")
        if err != nil {
            t.Fatalf("%v", err)
        }
        _, err = repl.re.Run(`contract = JSON.parse(` + strconv.Quote(string(info)) + `)`)
        if err != nil {
            t.Errorf("%v", err)
        }
    } else {
        if checkEvalJSON(t, repl, `contract = eth.compile.solidity(source).test`, string(contractInfo)) != nil {
            return
        }
    }

    if checkEvalJSON(t, repl, `contract.code`, `"0x605880600c6000396000f3006000357c010000000000000000000000000000000000000000000000000000000090048063c6888fa114602e57005b603d6004803590602001506047565b8060005260206000f35b60006007820290506053565b91905056"`) != nil {
        return
    }

    if checkEvalJSON(
        t, repl,
        `contractaddress = eth.sendTransaction({from: primary, data: contract.code})`,
        `"0x291293d57e0a0ab47effe97c02577f90d9211567"`,
    ) != nil {
        return
    }

    if !processTxs(repl, t, 7) {
        return
    }

    callSetup := `abiDef = JSON.parse('[{"constant":false,"inputs":[{"name":"a","type":"uint256"}],"name":"multiply","outputs":[{"name":"d","type":"uint256"}],"type":"function"}]');
Multiply7 = eth.contract(abiDef);
multiply7 = Multiply7.at(contractaddress);
`
    _, err = repl.re.Run(callSetup)
    if err != nil {
        t.Errorf("unexpected error setting up contract, got %v", err)
        return
    }

    expNotice := ""
    if repl.lastConfirm != expNotice {
        t.Errorf("incorrect confirmation message: expected %v, got %v", expNotice, repl.lastConfirm)
        return
    }

    if checkEvalJSON(t, repl, `admin.contractInfo.start()`, `true`) != nil {
        return
    }
    if checkEvalJSON(t, repl, `multiply7.multiply.sendTransaction(6, { from: primary })`, `"0xcb08355dff8f8cadb5dc3d72e652ef5c33792cb0d871229dd1aef5db1c4ba1f2"`) != nil {
        return
    }

    if !processTxs(repl, t, 1) {
        return
    }

    expNotice = `About to submit transaction (no NatSpec info found for contract: content hash not found for '0x87e2802265838c7f14bb69eecd2112911af6767907a702eeaa445239fb20711b'): {"params":[{"to":"0x291293d57e0a0ab47effe97c02577f90d9211567","data": "0xc6888fa10000000000000000000000000000000000000000000000000000000000000006"}]}`
    if repl.lastConfirm != expNotice {
        t.Errorf("incorrect confirmation message: expected\n%v, got\n%v", expNotice, repl.lastConfirm)
        return
    }

    var contentHash = `"0x86d2b7cf1e72e9a7a3f8d96601f0151742a2f780f1526414304fbe413dc7f9bd"`
    if sol != nil && solcVersion != sol.Version() {
        modContractInfo := versionRE.ReplaceAll(contractInfo, []byte(`"compilerVersion":"`+sol.Version()+`"`))
        fmt.Printf("modified contractinfo:\n%s\n", modContractInfo)
        contentHash = `"` + common.ToHex(crypto.Sha3([]byte(modContractInfo))) + `"`
    }
    if checkEvalJSON(t, repl, `filename = "/tmp/info.json"`, `"/tmp/info.json"`) != nil {
        return
    }
    if checkEvalJSON(t, repl, `contentHash = admin.contractInfo.saveInfo(contract.info, filename)`, contentHash) != nil {
        return
    }
    if checkEvalJSON(t, repl, `admin.contractInfo.register(primary, contractaddress, contentHash)`, `true`) != nil {
        return
    }
    if checkEvalJSON(t, repl, `admin.contractInfo.registerUrl(primary, contentHash, "file://"+filename)`, `true`) != nil {
        return
    }

    if checkEvalJSON(t, repl, `admin.contractInfo.start()`, `true`) != nil {
        return
    }

    if !processTxs(repl, t, 3) {
        return
    }

    if checkEvalJSON(t, repl, `multiply7.multiply.sendTransaction(6, { from: primary })`, `"0xe773bf05b027e4485c8b28967c35c939a71c5f6c177db78b51db52e76760d903"`) != nil {
        return
    }

    if !processTxs(repl, t, 1) {
        return
    }

    expNotice = "Will multiply 6 by 7."
    if repl.lastConfirm != expNotice {
        t.Errorf("incorrect confirmation message: expected\n%v, got\n%v", expNotice, repl.lastConfirm)
        return
    }
}

func pendingTransactions(repl *testjethre, t *testing.T) (txc int64, err error) {
    txs := repl.ethereum.TxPool().GetTransactions()
    return int64(len(txs)), nil
}

func processTxs(repl *testjethre, t *testing.T, expTxc int) bool {
    var txc int64
    var err error
    for i := 0; i < 50; i++ {
        txc, err = pendingTransactions(repl, t)
        if err != nil {
            t.Errorf("unexpected error checking pending transactions: %v", err)
            return false
        }
        if expTxc < int(txc) {
            t.Errorf("too many pending transactions: expected %v, got %v", expTxc, txc)
            return false
        } else if expTxc == int(txc) {
            break
        }
        time.Sleep(100 * time.Millisecond)
    }
    if int(txc) != expTxc {
        t.Errorf("incorrect number of pending transactions, expected %v, got %v", expTxc, txc)
        return false
    }

    err = repl.ethereum.StartMining(runtime.NumCPU())
    if err != nil {
        t.Errorf("unexpected error mining: %v", err)
        return false
    }
    defer repl.ethereum.StopMining()

    timer := time.NewTimer(100 * time.Second)
    height := new(big.Int).Add(repl.xeth.CurrentBlock().Number(), big.NewInt(1))
    repl.wait <- height
    select {
    case <-timer.C:
        // if times out make sure the xeth loop does not block
        go func() {
            select {
            case repl.wait <- nil:
            case <-repl.wait:
            }
        }()
    case <-repl.wait:
    }
    txc, err = pendingTransactions(repl, t)
    if err != nil {
        t.Errorf("unexpected error checking pending transactions: %v", err)
        return false
    }
    if txc != 0 {
        t.Errorf("%d trasactions were not mined", txc)
        return false
    }
    return true
}

func checkEvalJSON(t *testing.T, re *testjethre, expr, want string) error {
    val, err := re.re.Run("JSON.stringify(" + expr + ")")
    if err == nil && val.String() != want {
        err = fmt.Errorf("Output mismatch for `%s`:\ngot:  %s\nwant: %s", expr, val.String(), want)
    }
    if err != nil {
        _, file, line, _ := runtime.Caller(1)
        file = filepath.Base(file)
        fmt.Printf("\t%s:%d: %v\n", file, line, err)
        t.Fail()
    }
    return err
}