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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
# frozen_string_literal: true
require "spec_helper"
describe GraphQL::Schema::Directive do
class MultiWord < GraphQL::Schema::Directive
end
it "uses a downcased class name" do
assert_equal "multiWord", MultiWord.graphql_name
end
module DirectiveTest
class Secret < GraphQL::Schema::Directive
argument :top_secret, Boolean
locations(FIELD_DEFINITION, ARGUMENT_DEFINITION)
end
class Thing < GraphQL::Schema::Object
field :name, String, null: false do
directive Secret, top_secret: true
argument :nickname, Boolean, required: false do
directive Secret, top_secret: false
end
end
end
end
it "can be added to schema definitions" do
field = DirectiveTest::Thing.fields.values.first
assert_equal [DirectiveTest::Secret], field.directives.map(&:class)
assert_equal [field], field.directives.map(&:owner)
assert_equal [true], field.directives.map{ |d| d.arguments[:top_secret] }
argument = field.arguments.values.first
assert_equal [DirectiveTest::Secret], argument.directives.map(&:class)
assert_equal [argument], argument.directives.map(&:owner)
assert_equal [false], argument.directives.map{ |d| d.arguments[:top_secret] }
end
it "raises an error when added to the wrong thing" do
err = assert_raises ArgumentError do
Class.new(GraphQL::Schema::Object) do
graphql_name "Stuff"
directive DirectiveTest::Secret
end
end
expected_message = "Directive `@secret` can't be attached to Stuff because OBJECT isn't included in its locations (FIELD_DEFINITION, ARGUMENT_DEFINITION).
Use `locations(OBJECT)` to update this directive's definition, or remove it from Stuff.
"
assert_equal expected_message, err.message
end
it "validates arguments" do
err = assert_raises ArgumentError do
GraphQL::Schema::Field.from_options(
name: :something,
type: String,
null: false,
owner: DirectiveTest::Thing,
directives: { DirectiveTest::Secret => {} }
)
end
assert_equal "@secret.topSecret is required, but no value was given", err.message
err2 = assert_raises ArgumentError do
GraphQL::Schema::Field.from_options(
name: :something,
type: String,
null: false,
owner: DirectiveTest::Thing,
directives: { DirectiveTest::Secret => { top_secret: 12.5 } }
)
end
assert_equal "@secret.topSecret is required, but no value was given", err2.message
end
describe 'repeatable directives' do
module RepeatDirectiveTest
class Secret < GraphQL::Schema::Directive
argument :secret, String
locations OBJECT, INTERFACE
repeatable true
end
class OtherSecret < GraphQL::Schema::Directive
argument :secret, String
locations OBJECT, INTERFACE
repeatable false
end
class Thing < GraphQL::Schema::Object
directive(Secret, secret: "my secret")
directive(Secret, secret: "my second secret")
directive(OtherSecret, secret: "other secret")
directive(OtherSecret, secret: "second other secret")
end
end
it "allows repeatable directives twice" do
directives = RepeatDirectiveTest::Thing.directives
secret_directives = directives.select{ |x| x.is_a?(RepeatDirectiveTest::Secret) }
assert_equal 2, secret_directives.size
assert_equal ["my secret", "my second secret"], secret_directives.map{ |d| d.arguments[:secret] }
end
it "overwrites non-repeatable directives" do
directives = RepeatDirectiveTest::Thing.directives
other_directives = directives.select{ |x| x.is_a?(RepeatDirectiveTest::OtherSecret) }
assert_equal 1, other_directives.size
assert_equal ["second other secret"], other_directives.map{ |d| d.arguments[:secret] }
end
end
module RuntimeDirectiveTest
class CountFields < GraphQL::Schema::Directive
locations(FIELD, FRAGMENT_SPREAD, INLINE_FRAGMENT)
def self.resolve(obj, args, ctx)
path = ctx[:current_path]
result = nil
ctx.dataloader.run_isolated do
result = yield
GraphQL::Execution::Interpreter::Resolve.resolve_all([result], ctx.dataloader)
end
ctx[:count_fields] ||= Hash.new { |h, k| h[k] = [] }
field_count = result.respond_to?(:graphql_result_data) ? result.graphql_result_data.size : 1
ctx[:count_fields][path] << field_count
nil # this does nothing
end
end
class Thing < GraphQL::Schema::Object
field :name, String, null: false
end
module HasThings
include GraphQL::Schema::Interface
field :thing, Thing, null: false, extras: [:ast_node]
def thing(ast_node:)
context[:name_resolved_count] ||= 0
context[:name_resolved_count] += 1
{ name: ast_node.alias || ast_node.name }
end
field :lazy_thing, Thing, null: false, extras: [:ast_node]
def lazy_thing(ast_node:)
-> { thing(ast_node: ast_node) }
end
field :dataloaded_thing, Thing, null: false, extras: [:ast_node]
def dataloaded_thing(ast_node:)
dataloader.with(ThingSource).load(ast_node.alias || ast_node.name)
end
field :lazy_things, [Thing], extras: [:ast_node]
def lazy_things(ast_node:)
-> { [thing(ast_node: ast_node), thing(ast_node: ast_node)]}
end
end
Thing.implements(HasThings)
class Query < GraphQL::Schema::Object
implements HasThings
end
class ThingSource < GraphQL::Dataloader::Source
def fetch(names)
names.map { |n| { name: n } }
end
end
class Schema < GraphQL::Schema
query(Query)
directive(CountFields)
lazy_resolve(Proc, :call)
use GraphQL::Dataloader
end
end
describe "runtime directives" do
it "works with fragment spreads, inline fragments, and fields" do
query_str = <<-GRAPHQL
{
t1: dataloadedThing {
t1n: name @countFields
}
... @countFields {
t2: thing { t2n: name }
t3: thing { t3n: name }
}
t3: thing { t3n: name }
t4: lazyThing {
...Thing @countFields
}
t5: thing {
n5: name
t5d: dataloadedThing {
t5dl: lazyThing { t5dln: name @countFields }
}
}
}
fragment Thing on Thing {
n1: name
n2: name
n3: name
}
GRAPHQL
res = RuntimeDirectiveTest::Schema.execute(query_str)
expected_data = {
"t1" => {
"t1n" => "t1",
},
"t2"=>{"t2n"=>"t2"},
"t3"=>{"t3n"=>"t3"},
"t4" => {
"n1" => "t4",
"n2" => "t4",
"n3" => "t4",
},
"t5"=>{"n5"=>"t5", "t5d"=>{"t5dl"=>{"t5dln"=>"t5dl"}}},
}
assert_equal expected_data, res["data"]
expected_counts = {
["t1", "t1n"] => [1],
[] => [2],
["t4"] => [3],
["t5", "t5d", "t5dl", "t5dln"] => [1],
}
assert_equal expected_counts, res.context[:count_fields]
end
it "runs things twice when they're in with-directive and without-directive parts of the query" do
query_str = <<-GRAPHQL
{
t1: thing { name } # name_resolved_count = 1
t2: thing { name } # name_resolved_count = 2
... @countFields {
t1: thing { name } # name_resolved_count = 3
t3: thing { name } # name_resolved_count = 4
}
t3: thing { name } # name_resolved_count = 5
... {
t2: thing { name @countFields } # This is merged back into `t2` above
}
}
GRAPHQL
res = RuntimeDirectiveTest::Schema.execute(query_str)
expected_data = { "t1" => { "name" => "t1"}, "t2" => { "name" => "t2" }, "t3" => { "name" => "t3" } }
assert_equal expected_data, res["data"]
expected_counts = {
[] => [2],
["t2", "name"] => [1],
}
assert_equal expected_counts, res.context[:count_fields]
assert_equal 5, res.context[:name_resolved_count]
end
it "works with backtrace: true and lazy lists" do
query_str = "
{
lazyThings @countFields {
name
}
}
"
res = RuntimeDirectiveTest::Schema.execute(query_str, context: { backtrace: true })
assert_equal 2, res["data"]["lazyThings"].size
end
end
describe "raising an error from an argument" do
class DirectiveErrorSchema < GraphQL::Schema
class MyDirective < GraphQL::Schema::Directive
locations GraphQL::Schema::Directive::QUERY, GraphQL::Schema::Directive::FIELD
argument :input, String, prepare: ->(input, ctx) {
raise GraphQL::ExecutionError, "invalid argument"
}
end
class QueryType < GraphQL::Schema::Object
field :hello, String, null: false
def hello
"Hello World!"
end
end
query QueryType
directive MyDirective
end
it "halts execution and adds an error to the error key" do
result = DirectiveErrorSchema.execute(<<-GQL)
query @myDirective(input: "hi") {
hello
}
GQL
assert_equal({}, result["data"])
assert_equal ["invalid argument"], result["errors"].map { |e| e["message"] }
assert_equal [[{"line"=>1, "column"=>13}]], result["errors"].map { |e| e["locations"] }
result2 = DirectiveErrorSchema.execute(<<-GQL)
query {
hello
hello2: hello @myDirective(input: "hi")
}
GQL
assert_equal({ "hello" => "Hello World!" }, result2["data"])
assert_equal ["invalid argument"], result2["errors"].map { |e| e["message"] }
assert_equal [[{"line"=>3, "column"=>23}]], result2["errors"].map { |e| e["locations"] }
end
end
describe ".resolve_each" do
class ResolveEachSchema < GraphQL::Schema
class FilterByIndex < GraphQL::Schema::Directive
locations FIELD
argument :select, String
def self.resolve_each(object, args, context)
if context[:current_path].last.public_send(args[:select])
yield
else
# Don't send a value
end
end
def self.resolve(obj, args, ctx)
value = yield
value.values.compact!
value
end
end
class Query < GraphQL::Schema::Object
field :numbers, [Integer]
def numbers
[0,1,2,3,4,5]
end
end
query(Query)
directive(FilterByIndex)
end
it "is called for each item in a list during enumeration" do
res = ResolveEachSchema.execute("{ numbers @filterByIndex(select: \"even?\")}")
assert_equal [0,2,4], res["data"]["numbers"]
res = ResolveEachSchema.execute("{ numbers @filterByIndex(select: \"odd?\")}")
assert_equal [1,3,5], res["data"]["numbers"]
end
end
it "parses repeated directives" do
schema_sdl = <<~EOS
directive @tag(name: String!) repeatable on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
type Query @tag(name: "t1") @tag(name: "t2") {
something(
arg: Boolean @tag(name: "t3") @tag(name: "t4")
): Int @tag(name: "t5") @tag(name: "t6")
}
enum Stuff {
THING @tag(name: "t7") @tag(name: "t8")
}
EOS
schema = GraphQL::Schema.from_definition(schema_sdl)
query_type = schema.query
assert_equal [["tag", { name: "t1" }], ["tag", { name: "t2" }]], query_type.directives.map { |dir| [dir.graphql_name, dir.arguments.to_h] }
field = schema.get_field("Query", "something")
arg = field.get_argument("arg")
assert_equal [["tag", { name: "t3"}], ["tag", { name: "t4"}]], arg.directives.map { |dir| [dir.graphql_name, dir.arguments.to_h] }
assert_equal [["tag", { name: "t5"}], ["tag", { name: "t6"}]], field.directives.map { |dir| [dir.graphql_name, dir.arguments.to_h] }
enum_value = schema.get_type("Stuff").values["THING"]
assert_equal [["tag", { name: "t7"}], ["tag", { name: "t8"}]], enum_value.directives.map { |dir| [dir.graphql_name, dir.arguments.to_h] }
end
end
|