github.com/aigarnetwork/aigar@v0.0.0-20191115204914-d59a6eb70f8e/signer/fourbyte/validation_test.go (about) 1 // Copyright 2018 The go-ethereum Authors 2 // Copyright 2019 The go-aigar Authors 3 // This file is part of the go-aigar library. 4 // 5 // The go-aigar library is free software: you can redistribute it and/or modify 6 // it under the terms of the GNU Lesser General Public License as published by 7 // the Free Software Foundation, either version 3 of the License, or 8 // (at your option) any later version. 9 // 10 // The go-aigar library is distributed in the hope that it will be useful, 11 // but WITHOUT ANY WARRANTY; without even the implied warranty of 12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 // GNU Lesser General Public License for more details. 14 // 15 // You should have received a copy of the GNU Lesser General Public License 16 // along with the go-aigar library. If not, see <http://www.gnu.org/licenses/>. 17 18 package fourbyte 19 20 import ( 21 "math/big" 22 "testing" 23 24 "github.com/AigarNetwork/aigar/common" 25 "github.com/AigarNetwork/aigar/common/hexutil" 26 "github.com/AigarNetwork/aigar/signer/core" 27 ) 28 29 func mixAddr(a string) (*common.MixedcaseAddress, error) { 30 return common.NewMixedcaseAddressFromString(a) 31 } 32 func toHexBig(h string) hexutil.Big { 33 b := big.NewInt(0).SetBytes(common.FromHex(h)) 34 return hexutil.Big(*b) 35 } 36 func toHexUint(h string) hexutil.Uint64 { 37 b := big.NewInt(0).SetBytes(common.FromHex(h)) 38 return hexutil.Uint64(b.Uint64()) 39 } 40 func dummyTxArgs(t txtestcase) *core.SendTxArgs { 41 to, _ := mixAddr(t.to) 42 from, _ := mixAddr(t.from) 43 n := toHexUint(t.n) 44 gas := toHexUint(t.g) 45 gasPrice := toHexBig(t.gp) 46 value := toHexBig(t.value) 47 var ( 48 data, input *hexutil.Bytes 49 ) 50 if t.d != "" { 51 a := hexutil.Bytes(common.FromHex(t.d)) 52 data = &a 53 } 54 if t.i != "" { 55 a := hexutil.Bytes(common.FromHex(t.i)) 56 input = &a 57 58 } 59 return &core.SendTxArgs{ 60 From: *from, 61 To: to, 62 Value: value, 63 Nonce: n, 64 GasPrice: gasPrice, 65 Gas: gas, 66 Data: data, 67 Input: input, 68 } 69 } 70 71 type txtestcase struct { 72 from, to, n, g, gp, value, d, i string 73 expectErr bool 74 numMessages int 75 } 76 77 func TestTransactionValidation(t *testing.T) { 78 var ( 79 // use empty db, there are other tests for the abi-specific stuff 80 db = newEmpty() 81 ) 82 testcases := []txtestcase{ 83 // Invalid to checksum 84 {from: "000000000000000000000000000000000000dead", to: "000000000000000000000000000000000000dead", 85 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", numMessages: 1}, 86 // valid 0x000000000000000000000000000000000000dEaD 87 {from: "000000000000000000000000000000000000dead", to: "0x000000000000000000000000000000000000dEaD", 88 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", numMessages: 0}, 89 // conflicting input and data 90 {from: "000000000000000000000000000000000000dead", to: "0x000000000000000000000000000000000000dEaD", 91 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", d: "0x01", i: "0x02", expectErr: true}, 92 // Data can't be parsed 93 {from: "000000000000000000000000000000000000dead", to: "0x000000000000000000000000000000000000dEaD", 94 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", d: "0x0102", numMessages: 1}, 95 // Data (on Input) can't be parsed 96 {from: "000000000000000000000000000000000000dead", to: "0x000000000000000000000000000000000000dEaD", 97 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", i: "0x0102", numMessages: 1}, 98 // Send to 0 99 {from: "000000000000000000000000000000000000dead", to: "0x0000000000000000000000000000000000000000", 100 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", numMessages: 1}, 101 // Create empty contract (no value) 102 {from: "000000000000000000000000000000000000dead", to: "", 103 n: "0x01", g: "0x20", gp: "0x40", value: "0x00", numMessages: 1}, 104 // Create empty contract (with value) 105 {from: "000000000000000000000000000000000000dead", to: "", 106 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", expectErr: true}, 107 // Small payload for create 108 {from: "000000000000000000000000000000000000dead", to: "", 109 n: "0x01", g: "0x20", gp: "0x40", value: "0x01", d: "0x01", numMessages: 1}, 110 } 111 for i, test := range testcases { 112 msgs, err := db.ValidateTransaction(nil, dummyTxArgs(test)) 113 if err == nil && test.expectErr { 114 t.Errorf("Test %d, expected error", i) 115 for _, msg := range msgs.Messages { 116 t.Logf("* %s: %s", msg.Typ, msg.Message) 117 } 118 } 119 if err != nil && !test.expectErr { 120 t.Errorf("Test %d, unexpected error: %v", i, err) 121 } 122 if err == nil { 123 got := len(msgs.Messages) 124 if got != test.numMessages { 125 for _, msg := range msgs.Messages { 126 t.Logf("* %s: %s", msg.Typ, msg.Message) 127 } 128 t.Errorf("Test %d, expected %d messages, got %d", i, test.numMessages, got) 129 } else { 130 //Debug printout, remove later 131 for _, msg := range msgs.Messages { 132 t.Logf("* [%d] %s: %s", i, msg.Typ, msg.Message) 133 } 134 t.Log() 135 } 136 } 137 } 138 }