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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
# frozen_string_literal: true
require "spec_helper"
describe GraphQL::StaticValidation::UniqueDirectivesPerLocation do
include StaticValidationHelpers
let(:schema) { GraphQL::Schema.from_definition("
type Query {
type: Type
}
type Type {
field: String
}
directive @A on FIELD
directive @B on FIELD
directive @C repeatable on FIELD
") }
describe "query with no directives" do
let(:query_string) {"
{
type {
field
}
}
"}
it "passes rule" do
assert_equal [], errors
end
end
describe "query with repeatable directives" do
let(:query_string) {"
{
type {
field @C @C @C
}
}
"}
it "passes rule" do
assert_equal [], errors
end
end
describe "query with unique directives in different locations" do
let(:query_string) {"
{
type @A {
field @B
}
}
"}
it "passes rule" do
assert_equal [], errors
end
end
describe "query with unique directives in same locations" do
let(:query_string) {"
{
type @A @B {
field @A @B
}
}
"}
it "passes rule" do
assert_equal [], errors
end
end
describe "query with same directives in different locations" do
let(:query_string) {"
{
type @A {
field @A
}
}
"}
it "passes rule" do
assert_equal [], errors
end
end
describe "query with same directives in similar locations" do
let(:query_string) {"
{
type {
field @A
field @A
}
}
"}
it "passes rule" do
assert_equal [], errors
end
end
describe "query with duplicate directives in one location" do
let(:query_string) {"
{
type {
field @A @A
}
}
"}
it "fails rule" do
assert_includes errors, {
"message" => 'The directive "A" can only be used once at this location.',
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 20 }],
"path" => ["query", "type", "field"],
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
}
end
end
describe "query with many duplicate directives in one location" do
let(:query_string) {"
{
type {
field @A @A @A
}
}
"}
it "fails rule" do
assert_includes errors, {
"message" => 'The directive "A" can only be used once at this location.',
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 20 }, { "line" => 4, "column" => 23 }],
"path" => ["query", "type", "field"],
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
}
end
end
describe "query with different duplicate directives in one location" do
let(:query_string) {"
{
type {
field @A @B @A @B
}
}
"}
it "fails rule" do
assert_includes errors, {
"message" => 'The directive "A" can only be used once at this location.',
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 23 }],
"path" => ["query", "type", "field"],
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
}
assert_includes errors, {
"message" => 'The directive "B" can only be used once at this location.',
"locations" => [{ "line" => 4, "column" => 20 }, { "line" => 4, "column" => 26 }],
"path" => ["query", "type", "field"],
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"B"}
}
end
end
describe "query with duplicate directives in many locations" do
let(:query_string) {"
{
type @A @A {
field @A @A
}
}
"}
it "fails rule" do
assert_includes errors, {
"message" => 'The directive "A" can only be used once at this location.',
"locations" => [{ "line" => 3, "column" => 14 }, { "line" => 3, "column" => 17 }],
"path" => ["query", "type"],
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
}
assert_includes errors, {
"message" => 'The directive "A" can only be used once at this location.',
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 20 }],
"path" => ["query", "type", "field"],
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
}
end
end
describe "with error limiting" do
let(:query_string) {"
{
type @A @A {
field @A @A
}
}
"}
describe("disabled") do
let(:args) {
{ max_errors: nil }
}
it "does not limit the number of errors" do
assert_equal(error_messages.length, 2)
assert_equal(error_messages, [
"The directive \"A\" can only be used once at this location.",
"The directive \"A\" can only be used once at this location."
])
end
end
describe("enabled") do
let(:args) {
{ max_errors: 1 }
}
it "does limit the number of errors" do
assert_equal(error_messages.length, 1)
assert_equal(error_messages, [
"The directive \"A\" can only be used once at this location."
])
end
end
end
end
|