Documentation ¶
Index ¶
- Variables
- func ASTToJSON(t *testing.T, a ast.Node) interface{}
- func ContainSubset(super map[string]interface{}, sub map[string]interface{}) bool
- func ContainSubsetSlice(super []interface{}, sub []interface{}) bool
- func Diff(want, got interface{}) []string
- func EqualErrorMessage(expected, result *graphql.Result, i int) bool
- func EqualFormattedError(exp, act gqlerrors.FormattedError) bool
- func EqualFormattedErrors(expected, actual []gqlerrors.FormattedError) bool
- func EqualResults(expected, result *graphql.Result) bool
- func ExpectFailsRule(t *testing.T, rule graphql.ValidationRuleFn, queryString string, ...)
- func ExpectFailsRuleWithSchema(t *testing.T, schema *graphql.Schema, rule graphql.ValidationRuleFn, ...)
- func ExpectPassesRule(t *testing.T, rule graphql.ValidationRuleFn, queryString string)
- func ExpectPassesRuleWithSchema(t *testing.T, schema *graphql.Schema, rule graphql.ValidationRuleFn, ...)
- func GetHero(episode interface{}) interface{}
- func RuleError(message string, locs ...int) gqlerrors.FormattedError
- func RunSubscribe(t *testing.T, test *TestSubscription)
- func RunSubscribes(t *testing.T, tests []*TestSubscription)
- func TestExecute(t *testing.T, ep graphql.ExecuteParams) *graphql.Result
- func TestParse(t *testing.T, query string) *ast.Document
- type StarWarsChar
- type TestResponse
- type TestSubscription
Constants ¶
This section is empty.
Variables ¶
View Source
var IntrospectionQuery = `` /* 1550-byte string literal not displayed */
View Source
var TestSchema *graphql.Schema
Functions ¶
func ContainSubset ¶
func ContainSubsetSlice ¶
func ContainSubsetSlice(super []interface{}, sub []interface{}) bool
func EqualFormattedError ¶
func EqualFormattedError(exp, act gqlerrors.FormattedError) bool
func EqualFormattedErrors ¶
func EqualFormattedErrors(expected, actual []gqlerrors.FormattedError) bool
func EqualResults ¶
func ExpectFailsRule ¶
func ExpectFailsRule(t *testing.T, rule graphql.ValidationRuleFn, queryString string, expectedErrors []gqlerrors.FormattedError)
func ExpectFailsRuleWithSchema ¶
func ExpectFailsRuleWithSchema(t *testing.T, schema *graphql.Schema, rule graphql.ValidationRuleFn, queryString string, expectedErrors []gqlerrors.FormattedError)
func ExpectPassesRule ¶
func ExpectPassesRule(t *testing.T, rule graphql.ValidationRuleFn, queryString string)
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 TestExecute ¶
Types ¶
type StarWarsChar ¶
type StarWarsChar struct { ID string Name string Friends []StarWarsChar AppearsIn []int HomePlanet string PrimaryFunction string }
var ( Luke StarWarsChar Vader StarWarsChar Han StarWarsChar Leia StarWarsChar Tarkin StarWarsChar Threepio StarWarsChar Artoo StarWarsChar HumanData map[int]StarWarsChar DroidData map[int]StarWarsChar StarWarsSchema graphql.Schema )
func GetDroid ¶
func GetDroid(id int) StarWarsChar
func GetHuman ¶
func GetHuman(id int) StarWarsChar
type TestResponse ¶
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 }
TestSubscription is a GraphQL test case to be used with RunSubscribe.
Click to show internal directories.
Click to hide internal directories.