gqltesting

package
v0.0.0-...-89be4ce Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2019 License: BSD-2-Clause Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RunSubscribe

func RunSubscribe(t *testing.T, test *TestSubscription)

RunSubscribe runs a single GraphQL subscription test case.

func RunSubscribes

func RunSubscribes(t *testing.T, tests []*TestSubscription)

RunSubscribes runs the given GraphQL subscription test cases as subtests.

func RunTest

func RunTest(t *testing.T, test *Test)

RunTest runs a single GraphQL test case.

func RunTests

func RunTests(t *testing.T, tests []*Test)

RunTests runs the given GraphQL test cases as subtests.

Types

type Test

type Test struct {
	Context        context.Context
	Schema         *graphql.Schema
	Query          string
	OperationName  string
	Variables      map[string]interface{}
	ExpectedResult string
	ExpectedErrors []*errors.QueryError
}

Test is a GraphQL test case to be used with RunTest(s).

type TestResponse

type TestResponse struct {
	Data   json.RawMessage
	Errors []*errors.QueryError
}

TestResponse models the expected response

type TestSubscription

type TestSubscription struct {
	Name            string
	Schema          *graphql.Schema
	Query           string
	OperationName   string
	Variables       map[string]interface{}
	ExpectedResults []TestResponse
	ExpectedErr     error
}

TestSubscription is a GraphQL test case to be used with RunSubscribe.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL