// Copyright 2019 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 . package graphql import ( "context" "fmt" "math/big" "testing" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/private" ) func TestBuildSchema(t *testing.T) { // Make sure the schema can be parsed and matched up to the object model. if _, err := newHandler(nil); err != nil { t.Errorf("Could not construct GraphQL handler: %v", err) } } // Quorum // Test Quorum specific GraphQL schema for private transaction func TestQuorumSchema(t *testing.T) { saved := private.P defer func() { private.P = saved }() private.P = &StubPrivateTransactionManager{ responses: map[string][]interface{}{ "key": { []byte("private payload"), // equals to 0x70726976617465207061796c6f6164 after converting to bytes nil, }, }, } // Test private transaction privateTx := types.NewTransaction(0, common.Address{}, big.NewInt(0), 0, big.NewInt(0), []byte("key")) privateTx.SetPrivate() privateTxQuery := &Transaction{tx: privateTx} isPrivate, err := privateTxQuery.IsPrivate(context.Background()) if err != nil { t.Fatalf("Expect no error: %v", err) } if !*isPrivate { t.Fatalf("Expect isPrivate to be true for private TX") } privateInputData, err := privateTxQuery.PrivateInputData(context.Background()) if err != nil { t.Fatalf("Expect no error: %v", err) } if privateInputData.String() != "0x70726976617465207061796c6f6164" { t.Fatalf("Expect privateInputData to be: \"0x70726976617465207061796c6f6164\" for private TX, actual: %v", privateInputData.String()) } // Test public transaction publicTx := types.NewTransaction(0, common.Address{}, big.NewInt(0), 0, big.NewInt(0), []byte("key")) publicTxQuery := &Transaction{tx: publicTx} isPrivate, err = publicTxQuery.IsPrivate(context.Background()) if err != nil { t.Fatalf("Expect no error: %v", err) } if *isPrivate { t.Fatalf("Expect isPrivate to be false for public TX") } privateInputData, err = publicTxQuery.PrivateInputData(context.Background()) if err != nil { t.Fatalf("Expect no error: %v", err) } if privateInputData.String() != "0x" { t.Fatalf("Expect privateInputData to be: \"0x\" for public TX, actual: %v", privateInputData.String()) } } type StubPrivateTransactionManager struct { responses map[string][]interface{} } func (spm *StubPrivateTransactionManager) Send(data []byte, from string, to []string) ([]byte, error) { return nil, fmt.Errorf("to be implemented") } func (spm *StubPrivateTransactionManager) StoreRaw(data []byte, from string) ([]byte, error) { return nil, fmt.Errorf("to be implemented") } func (spm *StubPrivateTransactionManager) SendSignedTx(data []byte, to []string) ([]byte, error) { return nil, fmt.Errorf("to be implemented") } func (spm *StubPrivateTransactionManager) Receive(data []byte) ([]byte, error) { res := spm.responses[string(data)] if err, ok := res[1].(error); ok { return nil, err } if ret, ok := res[0].([]byte); ok { return ret, nil } return nil, nil }