Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by github.com/fjl/gencodec. DO NOT EDIT.
 | |
| 
 | |
| package core
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"errors"
 | |
| 	"math/big"
 | |
| 
 | |
| 	"github.com/ethereum/go-ethereum/common"
 | |
| 	"github.com/ethereum/go-ethereum/common/hexutil"
 | |
| 	"github.com/ethereum/go-ethereum/common/math"
 | |
| )
 | |
| 
 | |
| var _ = (*genesisAccountMarshaling)(nil)
 | |
| 
 | |
| func (g GenesisAccount) MarshalJSON() ([]byte, error) {
 | |
| 	type GenesisAccount struct {
 | |
| 		Code       hexutil.Bytes               `json:"code,omitempty"`
 | |
| 		Storage    map[storageJSON]storageJSON `json:"storage,omitempty"`
 | |
| 		Balance    *math.HexOrDecimal256       `json:"balance" gencodec:"required"`
 | |
| 		Nonce      math.HexOrDecimal64         `json:"nonce,omitempty"`
 | |
| 		PrivateKey hexutil.Bytes               `json:"secretKey,omitempty"`
 | |
| 	}
 | |
| 	var enc GenesisAccount
 | |
| 	enc.Code = g.Code
 | |
| 	if g.Storage != nil {
 | |
| 		enc.Storage = make(map[storageJSON]storageJSON, len(g.Storage))
 | |
| 		for k, v := range g.Storage {
 | |
| 			enc.Storage[storageJSON(k)] = storageJSON(v)
 | |
| 		}
 | |
| 	}
 | |
| 	enc.Balance = (*math.HexOrDecimal256)(g.Balance)
 | |
| 	enc.Nonce = math.HexOrDecimal64(g.Nonce)
 | |
| 	enc.PrivateKey = g.PrivateKey
 | |
| 	return json.Marshal(&enc)
 | |
| }
 | |
| 
 | |
| func (g *GenesisAccount) UnmarshalJSON(input []byte) error {
 | |
| 	type GenesisAccount struct {
 | |
| 		Code       hexutil.Bytes               `json:"code,omitempty"`
 | |
| 		Storage    map[storageJSON]storageJSON `json:"storage,omitempty"`
 | |
| 		Balance    *math.HexOrDecimal256       `json:"balance" gencodec:"required"`
 | |
| 		Nonce      *math.HexOrDecimal64        `json:"nonce,omitempty"`
 | |
| 		PrivateKey hexutil.Bytes               `json:"secretKey,omitempty"`
 | |
| 	}
 | |
| 	var dec GenesisAccount
 | |
| 	if err := json.Unmarshal(input, &dec); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	if dec.Code != nil {
 | |
| 		g.Code = dec.Code
 | |
| 	}
 | |
| 	if dec.Storage != nil {
 | |
| 		g.Storage = make(map[common.Hash]common.Hash, len(dec.Storage))
 | |
| 		for k, v := range dec.Storage {
 | |
| 			g.Storage[common.Hash(k)] = common.Hash(v)
 | |
| 		}
 | |
| 	}
 | |
| 	if dec.Balance == nil {
 | |
| 		return errors.New("missing required field 'balance' for GenesisAccount")
 | |
| 	}
 | |
| 	g.Balance = (*big.Int)(dec.Balance)
 | |
| 	if dec.Nonce != nil {
 | |
| 		g.Nonce = uint64(*dec.Nonce)
 | |
| 	}
 | |
| 	if dec.PrivateKey != nil {
 | |
| 		g.PrivateKey = dec.PrivateKey
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |