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
|
package parser
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/vektah/gqlparser/v2/gqlerror"
"github.com/vektah/gqlparser/v2/ast"
"github.com/vektah/gqlparser/v2/parser/testrunner"
)
func TestSchemaDocument(t *testing.T) {
testrunner.Test(t, "schema_test.yml", func(t *testing.T, input string) testrunner.Spec {
doc, err := ParseSchema(&ast.Source{Input: input, Name: "spec"})
if err != nil {
return testrunner.Spec{
Error: err.(*gqlerror.Error),
AST: ast.Dump(doc),
}
}
return testrunner.Spec{
AST: ast.Dump(doc),
}
})
}
func TestTypePosition(t *testing.T) {
t.Run("type line number with no bang", func(t *testing.T) {
schema, parseErr := ParseSchema(&ast.Source{
Input: `type query {
me: User
}
`,
})
assert.NoError(t, parseErr)
assert.Equal(t, 2, schema.Definitions.ForName("query").Fields.ForName("me").Type.Position.Line)
})
t.Run("type line number with bang", func(t *testing.T) {
schema, parseErr := ParseSchema(&ast.Source{
Input: `type query {
me: User!
}
`,
})
assert.NoError(t, parseErr)
assert.Equal(t, 2, schema.Definitions.ForName("query").Fields.ForName("me").Type.Position.Line)
})
t.Run("type line number with comments", func(t *testing.T) {
schema, parseErr := ParseSchema(&ast.Source{
Input: `type query {
# comment
me: User
}
`,
})
assert.NoError(t, parseErr)
assert.Equal(t, 3, schema.Definitions.ForName("query").Fields.ForName("me").Type.Position.Line)
})
}
|