aboutsummaryrefslogtreecommitdiffstats
path: root/tests/transaction_test_util.go
blob: f0f2dc54f055fda7f0eb0b4d64446bb119e9f085 (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
// Copyright 2015 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package tests

import (
    "bytes"
    "errors"
    "fmt"
    "math/big"

    "github.com/tangerine-network/go-tangerine/common"
    "github.com/tangerine-network/go-tangerine/common/hexutil"
    "github.com/tangerine-network/go-tangerine/common/math"
    "github.com/tangerine-network/go-tangerine/core/types"
    "github.com/tangerine-network/go-tangerine/params"
    "github.com/tangerine-network/go-tangerine/rlp"
)

// TransactionTest checks RLP decoding and sender derivation of transactions.
type TransactionTest struct {
    json ttJSON
}

type ttJSON struct {
    BlockNumber math.HexOrDecimal64 `json:"blockNumber"`
    RLP         hexutil.Bytes       `json:"rlp"`
    Sender      hexutil.Bytes       `json:"sender"`
    Transaction *ttTransaction      `json:"transaction"`
}

//go:generate gencodec -type ttTransaction -field-override ttTransactionMarshaling -out gen_tttransaction.go

type ttTransaction struct {
    Data     []byte         `gencodec:"required"`
    GasLimit uint64         `gencodec:"required"`
    GasPrice *big.Int       `gencodec:"required"`
    Nonce    uint64         `gencodec:"required"`
    Value    *big.Int       `gencodec:"required"`
    R        *big.Int       `gencodec:"required"`
    S        *big.Int       `gencodec:"required"`
    V        *big.Int       `gencodec:"required"`
    To       common.Address `gencodec:"required"`
}

type ttTransactionMarshaling struct {
    Data     hexutil.Bytes
    GasLimit math.HexOrDecimal64
    GasPrice *math.HexOrDecimal256
    Nonce    math.HexOrDecimal64
    Value    *math.HexOrDecimal256
    R        *math.HexOrDecimal256
    S        *math.HexOrDecimal256
    V        *math.HexOrDecimal256
}

func (tt *TransactionTest) Run(config *params.ChainConfig) error {
    tx := new(types.Transaction)
    if err := rlp.DecodeBytes(tt.json.RLP, tx); err != nil {
        if tt.json.Transaction == nil {
            return nil
        }
        return fmt.Errorf("RLP decoding failed: %v", err)
    }
    // Check sender derivation.
    signer := types.MakeSigner(config, new(big.Int).SetUint64(uint64(tt.json.BlockNumber)))
    sender, err := types.Sender(signer, tx)
    if err != nil {
        return err
    }
    if sender != common.BytesToAddress(tt.json.Sender) {
        return fmt.Errorf("Sender mismatch: got %x, want %x", sender, tt.json.Sender)
    }
    // Check decoded fields.
    err = tt.json.Transaction.verify(signer, tx)
    if tt.json.Sender == nil && err == nil {
        return errors.New("field validations succeeded but should fail")
    }
    if tt.json.Sender != nil && err != nil {
        return fmt.Errorf("field validations failed after RLP decoding: %s", err)
    }
    return nil
}

func (tt *ttTransaction) verify(signer types.Signer, tx *types.Transaction) error {
    if !bytes.Equal(tx.Data(), tt.Data) {
        return fmt.Errorf("Tx input data mismatch: got %x want %x", tx.Data(), tt.Data)
    }
    if tx.Gas() != tt.GasLimit {
        return fmt.Errorf("GasLimit mismatch: got %d, want %d", tx.Gas(), tt.GasLimit)
    }
    if tx.GasPrice().Cmp(tt.GasPrice) != 0 {
        return fmt.Errorf("GasPrice mismatch: got %v, want %v", tx.GasPrice(), tt.GasPrice)
    }
    if tx.Nonce() != tt.Nonce {
        return fmt.Errorf("Nonce mismatch: got %v, want %v", tx.Nonce(), tt.Nonce)
    }
    v, r, s := tx.RawSignatureValues()
    if r.Cmp(tt.R) != 0 {
        return fmt.Errorf("R mismatch: got %v, want %v", r, tt.R)
    }
    if s.Cmp(tt.S) != 0 {
        return fmt.Errorf("S mismatch: got %v, want %v", s, tt.S)
    }
    if v.Cmp(tt.V) != 0 {
        return fmt.Errorf("V mismatch: got %v, want %v", v, tt.V)
    }
    if tx.To() == nil {
        if tt.To != (common.Address{}) {
            return fmt.Errorf("To mismatch when recipient is nil (contract creation): %x", tt.To)
        }
    } else if *tx.To() != tt.To {
        return fmt.Errorf("To mismatch: got %x, want %x", *tx.To(), tt.To)
    }
    if tx.Value().Cmp(tt.Value) != 0 {
        return fmt.Errorf("Value mismatch: got %x, want %x", tx.Value(), tt.Value)
    }
    return nil
}