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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
package validator
import (
"testing"
"github.com/vektah/gqlparser/v2/ast"
)
func Test_sameArguments(t *testing.T) {
tests := map[string]struct {
args func() (args1, args2 []*ast.Argument)
result bool
}{
"both argument lists empty": {
args: func() (args1 []*ast.Argument, args2 []*ast.Argument) {
return nil, nil
},
result: true,
},
"args 1 empty, args 2 not": {
args: func() (args1 []*ast.Argument, args2 []*ast.Argument) {
return nil, []*ast.Argument{
{
Name: "thing",
Value: &ast.Value{Raw: "a thing"},
Position: &ast.Position{},
},
}
},
result: false,
},
"args 2 empty, args 1 not": {
args: func() (args1 []*ast.Argument, args2 []*ast.Argument) {
return []*ast.Argument{
{
Name: "thing",
Value: &ast.Value{Raw: "a thing"},
Position: &ast.Position{},
},
}, nil
},
result: false,
},
"args 1 mismatches args 2 names": {
args: func() (args1 []*ast.Argument, args2 []*ast.Argument) {
return []*ast.Argument{
{
Name: "thing1",
Value: &ast.Value{Raw: "1 thing"},
Position: &ast.Position{},
},
},
[]*ast.Argument{
{
Name: "thing2",
Value: &ast.Value{Raw: "2 thing"},
Position: &ast.Position{},
},
}
},
result: false,
},
"args 1 mismatches args 2 values": {
args: func() (args1 []*ast.Argument, args2 []*ast.Argument) {
return []*ast.Argument{
{
Name: "thing1",
Value: &ast.Value{Raw: "1 thing"},
Position: &ast.Position{},
},
},
[]*ast.Argument{
{
Name: "thing1",
Value: &ast.Value{Raw: "2 thing"},
Position: &ast.Position{},
},
}
},
result: false,
},
"args 1 matches args 2 names and values": {
args: func() (args1 []*ast.Argument, args2 []*ast.Argument) {
return []*ast.Argument{
{
Name: "thing1",
Value: &ast.Value{Raw: "1 thing"},
Position: &ast.Position{},
},
},
[]*ast.Argument{
{
Name: "thing1",
Value: &ast.Value{Raw: "1 thing"},
Position: &ast.Position{},
},
}
},
result: true,
},
"args 1 matches args 2 names and values where multiple exist in various orders": {
args: func() (args1 []*ast.Argument, args2 []*ast.Argument) {
return []*ast.Argument{
{
Name: "thing1",
Value: &ast.Value{Raw: "1 thing"},
Position: &ast.Position{},
},
{
Name: "thing2",
Value: &ast.Value{Raw: "2 thing"},
Position: &ast.Position{},
},
},
[]*ast.Argument{
{
Name: "thing1",
Value: &ast.Value{Raw: "1 thing"},
Position: &ast.Position{},
},
{
Name: "thing2",
Value: &ast.Value{Raw: "2 thing"},
Position: &ast.Position{},
},
}
},
result: true,
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
args1, args2 := tc.args()
resp := sameArguments(args1, args2)
if resp != tc.result {
t.Fatalf("Expected %t got %t", tc.result, resp)
}
})
}
}
|