rails-graphql 0.2.1 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (315) hide show
  1. checksums.yaml +4 -4
  2. data/ext/console.rb +18 -0
  3. data/ext/extconf.h +3 -0
  4. data/ext/extconf.rb +1 -54
  5. data/ext/gql_parser.c +631 -0
  6. data/ext/gql_parser.h +21 -0
  7. data/ext/shared.c +477 -0
  8. data/ext/shared.h +177 -0
  9. data/lib/generators/graphql/channel_generator.rb +27 -0
  10. data/lib/generators/graphql/controller_generator.rb +9 -4
  11. data/lib/generators/graphql/install_generator.rb +49 -0
  12. data/lib/generators/graphql/schema_generator.rb +9 -4
  13. data/lib/generators/graphql/templates/channel.erb +7 -0
  14. data/lib/generators/graphql/templates/config.rb +97 -0
  15. data/lib/generators/graphql/templates/controller.erb +2 -0
  16. data/lib/generators/graphql/templates/schema.erb +5 -3
  17. data/lib/gql_parser.so +0 -0
  18. data/lib/rails/graphql/adapters/mysql_adapter.rb +59 -0
  19. data/lib/rails/graphql/adapters/pg_adapter.rb +25 -22
  20. data/lib/rails/graphql/adapters/sqlite_adapter.rb +17 -14
  21. data/lib/rails/graphql/alternative/field_set.rb +48 -0
  22. data/lib/rails/graphql/alternative/mutation.rb +17 -0
  23. data/lib/rails/graphql/alternative/query.rb +98 -0
  24. data/lib/rails/graphql/alternative/subscription.rb +18 -0
  25. data/lib/rails/graphql/alternative.rb +20 -0
  26. data/lib/rails/graphql/argument.rb +25 -26
  27. data/lib/rails/graphql/callback.rb +30 -14
  28. data/lib/rails/graphql/collectors/hash_collector.rb +26 -7
  29. data/lib/rails/graphql/collectors/idented_collector.rb +10 -7
  30. data/lib/rails/graphql/collectors/json_collector.rb +43 -17
  31. data/lib/rails/graphql/collectors.rb +4 -4
  32. data/lib/rails/graphql/config.rb +154 -23
  33. data/lib/rails/graphql/directive/cached_directive.rb +33 -0
  34. data/lib/rails/graphql/directive/deprecated_directive.rb +10 -10
  35. data/lib/rails/graphql/directive/include_directive.rb +4 -4
  36. data/lib/rails/graphql/directive/skip_directive.rb +4 -4
  37. data/lib/rails/graphql/directive/specified_by_directive.rb +24 -0
  38. data/lib/rails/graphql/directive.rb +134 -73
  39. data/lib/rails/graphql/errors.rb +33 -4
  40. data/lib/rails/graphql/event.rb +21 -9
  41. data/lib/rails/graphql/field/authorized_field.rb +17 -6
  42. data/lib/rails/graphql/field/input_field.rb +8 -12
  43. data/lib/rails/graphql/field/mutation_field.rb +43 -9
  44. data/lib/rails/graphql/field/output_field.rb +112 -12
  45. data/lib/rails/graphql/field/proxied_field.rb +35 -26
  46. data/lib/rails/graphql/field/resolved_field.rb +27 -25
  47. data/lib/rails/graphql/field/scoped_config.rb +10 -4
  48. data/lib/rails/graphql/field/subscription_field.rb +123 -0
  49. data/lib/rails/graphql/field/typed_field.rb +69 -24
  50. data/lib/rails/graphql/field.rb +89 -74
  51. data/lib/rails/graphql/global_id.rb +89 -0
  52. data/lib/rails/graphql/helpers/attribute_delegator.rb +5 -5
  53. data/lib/rails/graphql/helpers/inherited_collection/array.rb +51 -0
  54. data/lib/rails/graphql/helpers/inherited_collection/base.rb +45 -0
  55. data/lib/rails/graphql/helpers/inherited_collection/hash.rb +88 -0
  56. data/lib/rails/graphql/helpers/inherited_collection.rb +25 -76
  57. data/lib/rails/graphql/helpers/instantiable.rb +15 -0
  58. data/lib/rails/graphql/helpers/leaf_from_ar.rb +7 -7
  59. data/lib/rails/graphql/helpers/registerable.rb +44 -62
  60. data/lib/rails/graphql/helpers/unregisterable.rb +16 -0
  61. data/lib/rails/graphql/helpers/with_arguments.rb +33 -28
  62. data/lib/rails/graphql/helpers/with_assignment.rb +6 -6
  63. data/lib/rails/graphql/helpers/with_callbacks.rb +28 -11
  64. data/lib/rails/graphql/helpers/with_description.rb +73 -0
  65. data/lib/rails/graphql/helpers/with_directives.rb +58 -30
  66. data/lib/rails/graphql/helpers/with_events.rb +22 -23
  67. data/lib/rails/graphql/helpers/with_fields.rb +86 -26
  68. data/lib/rails/graphql/helpers/with_global_id.rb +22 -0
  69. data/lib/rails/graphql/helpers/with_name.rb +44 -0
  70. data/lib/rails/graphql/helpers/with_namespace.rb +7 -4
  71. data/lib/rails/graphql/helpers/with_owner.rb +8 -7
  72. data/lib/rails/graphql/helpers/with_schema_fields.rb +162 -56
  73. data/lib/rails/graphql/helpers/with_validator.rb +9 -9
  74. data/lib/rails/graphql/helpers.rb +10 -3
  75. data/lib/rails/graphql/introspection.rb +43 -36
  76. data/lib/rails/graphql/railtie.rb +89 -33
  77. data/lib/rails/graphql/railties/app/base_channel.rb +10 -0
  78. data/lib/rails/graphql/railties/app/base_controller.rb +12 -0
  79. data/lib/rails/graphql/railties/app/views/_cable.js.erb +56 -0
  80. data/lib/rails/graphql/railties/app/views/_fetch.js.erb +20 -0
  81. data/lib/rails/graphql/railties/app/views/graphiql.html.erb +101 -0
  82. data/lib/rails/graphql/railties/base_generator.rb +5 -17
  83. data/lib/rails/graphql/railties/channel.rb +157 -0
  84. data/lib/rails/graphql/railties/controller.rb +91 -25
  85. data/lib/rails/graphql/railties/controller_runtime.rb +5 -5
  86. data/lib/rails/graphql/railties/log_subscriber.rb +81 -14
  87. data/lib/rails/graphql/request/arguments.rb +26 -50
  88. data/lib/rails/graphql/request/backtrace.rb +212 -0
  89. data/lib/rails/graphql/request/component/field.rb +98 -70
  90. data/lib/rails/graphql/request/component/fragment.rb +80 -26
  91. data/lib/rails/graphql/request/component/operation/subscription.rb +162 -4
  92. data/lib/rails/graphql/request/component/operation.rb +73 -34
  93. data/lib/rails/graphql/request/component/spread.rb +79 -27
  94. data/lib/rails/graphql/request/component/typename.rb +28 -13
  95. data/lib/rails/graphql/request/component.rb +77 -36
  96. data/lib/rails/graphql/request/context.rb +19 -9
  97. data/lib/rails/graphql/request/errors.rb +16 -6
  98. data/lib/rails/graphql/request/event.rb +23 -8
  99. data/lib/rails/graphql/request/helpers/directives.rb +69 -27
  100. data/lib/rails/graphql/request/helpers/selection_set.rb +57 -25
  101. data/lib/rails/graphql/request/helpers/value_writers.rb +24 -19
  102. data/lib/rails/graphql/request/prepared_data.rb +100 -0
  103. data/lib/rails/graphql/request/steps/authorizable.rb +24 -14
  104. data/lib/rails/graphql/request/steps/organizable.rb +111 -49
  105. data/lib/rails/graphql/request/steps/{prepareable.rb → preparable.rb} +21 -8
  106. data/lib/rails/graphql/request/steps/{resolveable.rb → resolvable.rb} +16 -7
  107. data/lib/rails/graphql/request/strategy/cached_strategy.rb +64 -0
  108. data/lib/rails/graphql/request/strategy/dynamic_instance.rb +6 -6
  109. data/lib/rails/graphql/request/strategy/multi_query_strategy.rb +6 -13
  110. data/lib/rails/graphql/request/strategy/sequenced_strategy.rb +9 -9
  111. data/lib/rails/graphql/request/strategy.rb +147 -77
  112. data/lib/rails/graphql/request/subscription.rb +82 -0
  113. data/lib/rails/graphql/request.rb +353 -104
  114. data/lib/rails/graphql/schema.rb +251 -106
  115. data/lib/rails/graphql/shortcuts.rb +33 -8
  116. data/lib/rails/graphql/source/active_record/builders.rb +64 -51
  117. data/lib/rails/graphql/source/active_record_source.rb +158 -82
  118. data/lib/rails/graphql/source/base.rb +83 -0
  119. data/lib/rails/graphql/source/builder.rb +115 -0
  120. data/lib/rails/graphql/source/scoped_arguments.rb +39 -21
  121. data/lib/rails/graphql/source.rb +90 -228
  122. data/lib/rails/graphql/subscription/provider/action_cable.rb +113 -0
  123. data/lib/rails/graphql/subscription/provider/base.rb +192 -0
  124. data/lib/rails/graphql/subscription/provider.rb +18 -0
  125. data/lib/rails/graphql/subscription/store/base.rb +141 -0
  126. data/lib/rails/graphql/subscription/store/memory.rb +136 -0
  127. data/lib/rails/graphql/subscription/store.rb +19 -0
  128. data/lib/rails/graphql/subscription.rb +17 -0
  129. data/lib/rails/graphql/to_gql.rb +29 -32
  130. data/lib/rails/graphql/type/creator.rb +196 -0
  131. data/lib/rails/graphql/type/enum/directive_location_enum.rb +11 -11
  132. data/lib/rails/graphql/type/enum/type_kind_enum.rb +3 -3
  133. data/lib/rails/graphql/type/enum.rb +44 -50
  134. data/lib/rails/graphql/type/input.rb +92 -25
  135. data/lib/rails/graphql/type/interface.rb +29 -28
  136. data/lib/rails/graphql/type/object/directive_object.rb +10 -9
  137. data/lib/rails/graphql/type/object/enum_value_object.rb +3 -3
  138. data/lib/rails/graphql/type/object/field_object.rb +24 -6
  139. data/lib/rails/graphql/type/object/input_value_object.rb +6 -7
  140. data/lib/rails/graphql/type/object/schema_object.rb +5 -8
  141. data/lib/rails/graphql/type/object/type_object.rb +62 -25
  142. data/lib/rails/graphql/type/object.rb +34 -26
  143. data/lib/rails/graphql/type/scalar/any_scalar.rb +30 -0
  144. data/lib/rails/graphql/type/scalar/bigint_scalar.rb +5 -5
  145. data/lib/rails/graphql/type/scalar/binary_scalar.rb +5 -3
  146. data/lib/rails/graphql/type/scalar/boolean_scalar.rb +8 -8
  147. data/lib/rails/graphql/type/scalar/date_scalar.rb +5 -3
  148. data/lib/rails/graphql/type/scalar/date_time_scalar.rb +5 -3
  149. data/lib/rails/graphql/type/scalar/decimal_scalar.rb +5 -3
  150. data/lib/rails/graphql/type/scalar/float_scalar.rb +5 -5
  151. data/lib/rails/graphql/type/scalar/id_scalar.rb +6 -5
  152. data/lib/rails/graphql/type/scalar/int_scalar.rb +6 -5
  153. data/lib/rails/graphql/type/scalar/json_scalar.rb +41 -0
  154. data/lib/rails/graphql/type/scalar/string_scalar.rb +18 -4
  155. data/lib/rails/graphql/type/scalar/time_scalar.rb +8 -6
  156. data/lib/rails/graphql/type/scalar.rb +26 -23
  157. data/lib/rails/graphql/type/union.rb +21 -18
  158. data/lib/rails/graphql/type.rb +43 -26
  159. data/lib/rails/graphql/type_map.rb +268 -165
  160. data/lib/rails/graphql/uri.rb +167 -0
  161. data/lib/rails/graphql/version.rb +19 -3
  162. data/lib/rails/graphql.rake +3 -0
  163. data/lib/rails/graphql.rb +91 -56
  164. data/lib/rails-graphql.rb +1 -1
  165. data/test/assets/en.yml +29 -0
  166. data/test/assets/introspection-mem.txt +1 -1
  167. data/test/assets/introspection.gql +2 -0
  168. data/test/assets/mem.gql +86 -99
  169. data/test/assets/mysql.gql +406 -0
  170. data/test/assets/sqlite.gql +96 -73
  171. data/test/assets/translate.gql +346 -0
  172. data/test/config.rb +19 -8
  173. data/test/graphql/schema_test.rb +14 -50
  174. data/test/graphql/source_test.rb +8 -85
  175. data/test/graphql/type/enum_test.rb +207 -203
  176. data/test/graphql/type/input_test.rb +14 -9
  177. data/test/graphql/type/interface_test.rb +12 -9
  178. data/test/graphql/type/object_test.rb +8 -2
  179. data/test/graphql/type/scalar/any_scalar_test.rb +38 -0
  180. data/test/graphql/type/scalar/boolean_scalar_test.rb +6 -3
  181. data/test/graphql/type/scalar/json_scalar_test.rb +23 -0
  182. data/test/graphql/type_map_test.rb +63 -81
  183. data/test/graphql/type_test.rb +0 -19
  184. data/test/graphql_test.rb +1 -1
  185. data/test/integration/{authorization/authorization_test.rb → authorization_test.rb} +40 -14
  186. data/test/integration/config.rb +36 -3
  187. data/test/integration/customization_test.rb +39 -0
  188. data/test/integration/global_id_test.rb +99 -0
  189. data/test/integration/memory/star_wars_introspection_test.rb +24 -16
  190. data/test/integration/memory/star_wars_query_test.rb +54 -3
  191. data/test/integration/memory/star_wars_validation_test.rb +3 -3
  192. data/test/integration/mysql/star_wars_introspection_test.rb +25 -0
  193. data/test/integration/persisted_query_test.rb +87 -0
  194. data/test/integration/resolver_precedence_test.rb +154 -0
  195. data/test/integration/schemas/memory.rb +24 -10
  196. data/test/integration/schemas/mysql.rb +62 -0
  197. data/test/integration/schemas/sqlite.rb +21 -12
  198. data/test/integration/sqlite/star_wars_global_id_test.rb +89 -0
  199. data/test/integration/sqlite/star_wars_introspection_test.rb +10 -0
  200. data/test/integration/sqlite/star_wars_query_test.rb +14 -1
  201. data/test/integration/translate_test.rb +73 -0
  202. data/test/test_ext.rb +16 -13
  203. metadata +125 -161
  204. data/ext/depend +0 -3
  205. data/ext/graphqlparser/Ast.cpp +0 -346
  206. data/ext/graphqlparser/Ast.h +0 -1214
  207. data/ext/graphqlparser/AstNode.h +0 -36
  208. data/ext/graphqlparser/AstVisitor.h +0 -137
  209. data/ext/graphqlparser/GraphQLParser.cpp +0 -76
  210. data/ext/graphqlparser/GraphQLParser.h +0 -55
  211. data/ext/graphqlparser/JsonVisitor.cpp +0 -161
  212. data/ext/graphqlparser/JsonVisitor.cpp.inc +0 -456
  213. data/ext/graphqlparser/JsonVisitor.h +0 -121
  214. data/ext/graphqlparser/JsonVisitor.h.inc +0 -110
  215. data/ext/graphqlparser/VERSION +0 -1
  216. data/ext/graphqlparser/c/GraphQLAst.cpp +0 -324
  217. data/ext/graphqlparser/c/GraphQLAst.h +0 -180
  218. data/ext/graphqlparser/c/GraphQLAstForEachConcreteType.h +0 -44
  219. data/ext/graphqlparser/c/GraphQLAstNode.cpp +0 -25
  220. data/ext/graphqlparser/c/GraphQLAstNode.h +0 -33
  221. data/ext/graphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  222. data/ext/graphqlparser/c/GraphQLAstToJSON.h +0 -24
  223. data/ext/graphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  224. data/ext/graphqlparser/c/GraphQLAstVisitor.h +0 -53
  225. data/ext/graphqlparser/c/GraphQLParser.cpp +0 -35
  226. data/ext/graphqlparser/c/GraphQLParser.h +0 -54
  227. data/ext/graphqlparser/dump_json_ast.cpp +0 -48
  228. data/ext/graphqlparser/lexer.lpp +0 -324
  229. data/ext/graphqlparser/parser.ypp +0 -693
  230. data/ext/graphqlparser/parsergen/lexer.cpp +0 -2633
  231. data/ext/graphqlparser/parsergen/lexer.h +0 -528
  232. data/ext/graphqlparser/parsergen/location.hh +0 -189
  233. data/ext/graphqlparser/parsergen/parser.tab.cpp +0 -3300
  234. data/ext/graphqlparser/parsergen/parser.tab.hpp +0 -646
  235. data/ext/graphqlparser/parsergen/position.hh +0 -179
  236. data/ext/graphqlparser/parsergen/stack.hh +0 -156
  237. data/ext/graphqlparser/syntaxdefs.h +0 -19
  238. data/ext/libgraphqlparser/AstNode.h +0 -36
  239. data/ext/libgraphqlparser/CMakeLists.txt +0 -148
  240. data/ext/libgraphqlparser/CONTRIBUTING.md +0 -23
  241. data/ext/libgraphqlparser/GraphQLParser.cpp +0 -76
  242. data/ext/libgraphqlparser/GraphQLParser.h +0 -55
  243. data/ext/libgraphqlparser/JsonVisitor.cpp +0 -161
  244. data/ext/libgraphqlparser/JsonVisitor.h +0 -121
  245. data/ext/libgraphqlparser/LICENSE +0 -22
  246. data/ext/libgraphqlparser/README.clang-tidy +0 -7
  247. data/ext/libgraphqlparser/README.md +0 -84
  248. data/ext/libgraphqlparser/ast/ast.ast +0 -203
  249. data/ext/libgraphqlparser/ast/ast.py +0 -61
  250. data/ext/libgraphqlparser/ast/c.py +0 -100
  251. data/ext/libgraphqlparser/ast/c.pyc +0 -0
  252. data/ext/libgraphqlparser/ast/c_impl.py +0 -61
  253. data/ext/libgraphqlparser/ast/c_impl.pyc +0 -0
  254. data/ext/libgraphqlparser/ast/c_visitor_impl.py +0 -39
  255. data/ext/libgraphqlparser/ast/c_visitor_impl.pyc +0 -0
  256. data/ext/libgraphqlparser/ast/casing.py +0 -26
  257. data/ext/libgraphqlparser/ast/casing.pyc +0 -0
  258. data/ext/libgraphqlparser/ast/cxx.py +0 -197
  259. data/ext/libgraphqlparser/ast/cxx.pyc +0 -0
  260. data/ext/libgraphqlparser/ast/cxx_impl.py +0 -61
  261. data/ext/libgraphqlparser/ast/cxx_impl.pyc +0 -0
  262. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.py +0 -42
  263. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.pyc +0 -0
  264. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.py +0 -80
  265. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.pyc +0 -0
  266. data/ext/libgraphqlparser/ast/cxx_visitor.py +0 -64
  267. data/ext/libgraphqlparser/ast/cxx_visitor.pyc +0 -0
  268. data/ext/libgraphqlparser/ast/js.py +0 -65
  269. data/ext/libgraphqlparser/ast/license.py +0 -10
  270. data/ext/libgraphqlparser/ast/license.pyc +0 -0
  271. data/ext/libgraphqlparser/c/GraphQLAstNode.cpp +0 -25
  272. data/ext/libgraphqlparser/c/GraphQLAstNode.h +0 -33
  273. data/ext/libgraphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  274. data/ext/libgraphqlparser/c/GraphQLAstToJSON.h +0 -24
  275. data/ext/libgraphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  276. data/ext/libgraphqlparser/c/GraphQLAstVisitor.h +0 -53
  277. data/ext/libgraphqlparser/c/GraphQLParser.cpp +0 -35
  278. data/ext/libgraphqlparser/c/GraphQLParser.h +0 -54
  279. data/ext/libgraphqlparser/clang-tidy-all.sh +0 -3
  280. data/ext/libgraphqlparser/cmake/version.cmake +0 -16
  281. data/ext/libgraphqlparser/dump_json_ast.cpp +0 -48
  282. data/ext/libgraphqlparser/go/README.md +0 -20
  283. data/ext/libgraphqlparser/go/callbacks.go +0 -18
  284. data/ext/libgraphqlparser/go/gotest.go +0 -64
  285. data/ext/libgraphqlparser/lexer.lpp +0 -324
  286. data/ext/libgraphqlparser/libgraphqlparser.pc.in +0 -11
  287. data/ext/libgraphqlparser/parser.ypp +0 -693
  288. data/ext/libgraphqlparser/parsergen/lexer.cpp +0 -2633
  289. data/ext/libgraphqlparser/parsergen/lexer.h +0 -528
  290. data/ext/libgraphqlparser/parsergen/location.hh +0 -189
  291. data/ext/libgraphqlparser/parsergen/parser.tab.cpp +0 -3300
  292. data/ext/libgraphqlparser/parsergen/parser.tab.hpp +0 -646
  293. data/ext/libgraphqlparser/parsergen/position.hh +0 -179
  294. data/ext/libgraphqlparser/parsergen/stack.hh +0 -156
  295. data/ext/libgraphqlparser/python/CMakeLists.txt +0 -14
  296. data/ext/libgraphqlparser/python/README.md +0 -5
  297. data/ext/libgraphqlparser/python/example.py +0 -31
  298. data/ext/libgraphqlparser/syntaxdefs.h +0 -19
  299. data/ext/libgraphqlparser/test/BuildCAPI.c +0 -5
  300. data/ext/libgraphqlparser/test/CMakeLists.txt +0 -25
  301. data/ext/libgraphqlparser/test/JsonVisitorTests.cpp +0 -28
  302. data/ext/libgraphqlparser/test/ParserTests.cpp +0 -352
  303. data/ext/libgraphqlparser/test/kitchen-sink.graphql +0 -59
  304. data/ext/libgraphqlparser/test/kitchen-sink.json +0 -1
  305. data/ext/libgraphqlparser/test/schema-kitchen-sink.graphql +0 -78
  306. data/ext/libgraphqlparser/test/schema-kitchen-sink.json +0 -1
  307. data/ext/libgraphqlparser/test/valgrind.supp +0 -33
  308. data/ext/version.cpp +0 -21
  309. data/lib/graphqlparser.so +0 -0
  310. data/lib/rails/graphql/native/functions.rb +0 -38
  311. data/lib/rails/graphql/native/location.rb +0 -41
  312. data/lib/rails/graphql/native/pointers.rb +0 -23
  313. data/lib/rails/graphql/native/visitor.rb +0 -349
  314. data/lib/rails/graphql/native.rb +0 -56
  315. data/test/integration/schemas/authorization.rb +0 -12
@@ -0,0 +1,346 @@
1
+ schema {
2
+ query: _Query
3
+ }
4
+
5
+ "The Boolean scalar type represents true or false."
6
+ scalar Boolean
7
+
8
+ "The Float scalar type represents signed double-precision fractional values."
9
+ scalar Float
10
+
11
+ """
12
+ The ID scalar type represents a unique identifier and it is serialized in the same
13
+ way as a String but it accepts both numeric and string based values as input.
14
+ """
15
+ scalar ID
16
+
17
+ "The Int scalar type represents a signed 32-bit numeric non-fractional value."
18
+ scalar Int
19
+
20
+ "Scalar"
21
+ scalar ScalarDesc
22
+
23
+ """
24
+ The String scalar type represents textual data, represented as UTF-8 character
25
+ sequences.
26
+ """
27
+ scalar String
28
+
29
+ "Enum"
30
+ enum EnumDesc {
31
+
32
+ }
33
+
34
+ "The valid locations that a directive may be placed."
35
+ enum __DirectiveLocation {
36
+ "Mark as a executable directive usable on query objects."
37
+ QUERY
38
+
39
+ "Mark as a executable directive usable on mutation objects."
40
+ MUTATION
41
+
42
+ "Mark as a executable directive usable on subscription objects."
43
+ SUBSCRIPTION
44
+
45
+ "Mark as a executable directive usable on field objects."
46
+ FIELD
47
+
48
+ "Mark as a executable directive usable on fragment definition objects."
49
+ FRAGMENT_DEFINITION
50
+
51
+ "Mark as a executable directive usable on fragment spread objects."
52
+ FRAGMENT_SPREAD
53
+
54
+ "Mark as a executable directive usable on inline fragment objects."
55
+ INLINE_FRAGMENT
56
+
57
+ "Mark as a type system directive usable on schema definitions."
58
+ SCHEMA
59
+
60
+ "Mark as a type system directive usable on scalar definitions."
61
+ SCALAR
62
+
63
+ "Mark as a type system directive usable on object definitions."
64
+ OBJECT
65
+
66
+ "Mark as a type system directive usable on field definitions."
67
+ FIELD_DEFINITION
68
+
69
+ "Mark as a type system directive usable on argument definitions."
70
+ ARGUMENT_DEFINITION
71
+
72
+ "Mark as a type system directive usable on interface definitions."
73
+ INTERFACE
74
+
75
+ "Mark as a type system directive usable on union definitions."
76
+ UNION
77
+
78
+ "Mark as a type system directive usable on enum definitions."
79
+ ENUM
80
+
81
+ "Mark as a type system directive usable on enum value definitions."
82
+ ENUM_VALUE
83
+
84
+ "Mark as a type system directive usable on input object definitions."
85
+ INPUT_OBJECT
86
+
87
+ "Mark as a type system directive usable on input field definitions."
88
+ INPUT_FIELD_DEFINITION
89
+ }
90
+
91
+ """
92
+ The fundamental unit of any GraphQL Schema is the type.
93
+ This enum enlist all the valid base types.
94
+ """
95
+ enum __TypeKind {
96
+ "Scalar types represent primitive leaf values in a GraphQL type system.\n"
97
+ SCALAR
98
+
99
+ "Objects represent a list of named fields, each of which yield a value of a\nspecific type.\n"
100
+ OBJECT
101
+
102
+ "Interfaces represent a list of named fields and their types.\n"
103
+ INTERFACE
104
+
105
+ "Unions represent an object that could be one of a list of GraphQL Object types.\n"
106
+ UNION
107
+
108
+ "Enum types, like scalar types, also represent leaf values in a GraphQL\ntype system. However Enum types describe the set of possible values.\n"
109
+ ENUM
110
+
111
+ "Objects represent a list of named fields, each of which yield a value of\na specific type.\n"
112
+ INPUT_OBJECT
113
+
114
+ "A GraphQL list is a special collection type which declares the type of\neach item in the List (referred to as the item type of the list).\n"
115
+ LIST
116
+
117
+ "This type wraps an underlying type, and this type acts identically to that wrapped\ntype, with the exception that null is not a valid response for the wrapping type.\n"
118
+ NON_NULL
119
+ }
120
+
121
+ "Input"
122
+ input InputDescInput {
123
+
124
+ }
125
+
126
+ "Interface"
127
+ interface InterfaceDesc {
128
+
129
+ }
130
+
131
+ "Union"
132
+ union UnionDesc =
133
+
134
+ "Object"
135
+ type ObjectDesc {
136
+
137
+ }
138
+
139
+ type _Query {
140
+ __schema: __Schema!
141
+
142
+ __type(name: String!): __Type
143
+
144
+ "A"
145
+ sampleA: String
146
+
147
+ "B"
148
+ sampleB: String
149
+
150
+ "C"
151
+ sampleC: String
152
+
153
+ sampleD: String
154
+
155
+ "E"
156
+ sampleE: String
157
+
158
+ sampleF: String
159
+
160
+ sampleField: String
161
+ }
162
+
163
+ """
164
+ Directives provide a way to describe alternate runtime execution
165
+ and type validation behavior in a GraphQL document.
166
+
167
+ In some cases, you need to provide options to alter GraphQL's execution
168
+ behavior in ways field arguments will not suffice, such as conditionally
169
+ including or skipping a field. Directives provide this by describing
170
+ additional information to the executor.
171
+ """
172
+ # Assigned to Rails::GraphQL::Directive class
173
+ type __Directive {
174
+ args: [__InputValue!]!
175
+
176
+ description: String
177
+
178
+ isRepeatable: Boolean!
179
+
180
+ locations: [__DirectiveLocation!]!
181
+
182
+ name: String!
183
+ }
184
+
185
+ """
186
+ One of the values of an Enum object. It is unique within the Enum set
187
+ of values. It's a string representation, not a numeric representation,
188
+ of a value kept as all caps (ie. ONE_VALUE).
189
+ """
190
+ type __EnumValue {
191
+ deprecationReason: String
192
+
193
+ description: String
194
+
195
+ isDeprecated: Boolean!
196
+
197
+ name: String!
198
+ }
199
+
200
+ """
201
+ Fields are the elements that compose both Objects and Interfaces. Each
202
+ field in these other objects may contain arguments and always yields
203
+ a value of a specific type.
204
+ """
205
+ # Assigned to Rails::GraphQL::Field class
206
+ type __Field {
207
+ args: [__InputValue!]!
208
+
209
+ deprecationReason: String
210
+
211
+ description: String
212
+
213
+ isDeprecated: Boolean!
214
+
215
+ name: String!
216
+
217
+ type: __Type!
218
+ }
219
+
220
+ """
221
+ Arguments provided to Fields or Directives and the input fields of an
222
+ InputObject are represented as Input Values which describe their type
223
+ and optionally a default value.
224
+ """
225
+ # Assigned to Rails::GraphQL::Field::InputField class
226
+ type __InputValue {
227
+ defaultValue: String
228
+
229
+ description: String
230
+
231
+ name: String!
232
+
233
+ type: __Type!
234
+ }
235
+
236
+ """
237
+ A GraphQL service's collective type system capabilities are referred
238
+ to as that service's "schema". A schema is defined in terms of the
239
+ types and directives it supports as well as the root operation types
240
+ for each kind of operation: query, mutation, and subscription; this
241
+ determines the place in the type system where those operations begin.
242
+ """
243
+ # Assigned to Rails::GraphQL::Schema class
244
+ type __Schema {
245
+ directives: [__Directive!]!
246
+
247
+ mutationType: __Type
248
+
249
+ queryType: __Type!
250
+
251
+ subscriptionType: __Type
252
+
253
+ types: [__Type!]!
254
+ }
255
+
256
+ """
257
+ The fundamental unit of any GraphQL Schema is the type. There are six
258
+ kinds of named type definitions in GraphQL, and two wrapping types.
259
+
260
+ The most basic type is a +Scalar+. A scalar represents a primitive value,
261
+ like a string or an integer.
262
+
263
+ +Scalars+ and +Enums+ form the leaves in response trees; the intermediate
264
+ levels are +Object+ types, which define a set of fields.
265
+
266
+ An +Interface+ defines a list of fields; +Object+ types that implement
267
+ that interface are guaranteed to implement those fields.
268
+
269
+ A +Union+ defines a list of possible types; similar to interfaces,
270
+ whenever the type system claims a union will be returned, one of the
271
+ possible types will be returned.
272
+
273
+ Finally, oftentimes it is useful to provide complex structs as inputs
274
+ to GraphQL field arguments or variables; the +Input Object+ type allows
275
+ the schema to define exactly what data is expected.
276
+ """
277
+ # Assigned to Rails::GraphQL::Type class
278
+ type __Type {
279
+ description: String
280
+
281
+ "ENUM only"
282
+ enumValues(includeDeprecated: Boolean = false): [__EnumValue!]
283
+
284
+ "OBJECT and INTERFACE only"
285
+ fields(includeDeprecated: Boolean = false): [__Field!]
286
+
287
+ "INPUT_OBJECT only"
288
+ inputFields: [__InputValue!]
289
+
290
+ "OBJECT only"
291
+ interfaces: [__Type!]
292
+
293
+ kind: __TypeKind!
294
+
295
+ name: String
296
+
297
+ "NON_NULL and LIST only"
298
+ ofType: __Type
299
+
300
+ "INTERFACE and UNION only"
301
+ possibleTypes: [__Type!]
302
+
303
+ specifiedByURL: String
304
+ }
305
+
306
+ """
307
+ Indicate deprecated portions of a GraphQL service's schema, such as deprecated
308
+ fields on a type or deprecated enum values.
309
+ """
310
+ directive @deprecated(
311
+
312
+ """
313
+ Explain why the underlying element was marked as deprecated. If possible,
314
+ indicate what element should be used instead. This description is formatted
315
+ using Markdown syntax (as specified by [CommonMark](http://commonmark.org/)).
316
+ """
317
+ reason: String
318
+
319
+ ) on FIELD_DEFINITION | ENUM_VALUE
320
+
321
+ "Allows for conditional inclusion during execution as described by the if argument."
322
+ directive @include(
323
+
324
+ "When false, the underlying element will be automatically marked as null."
325
+ if: Boolean!
326
+
327
+ ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
328
+
329
+ "Allows for conditional exclusion during execution as described by the if argument."
330
+ directive @skip(
331
+
332
+ "When true, the underlying element will be automatically marked as null."
333
+ if: Boolean!
334
+
335
+ ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
336
+
337
+ """
338
+ A built-in directive used within the type system definition language to provide
339
+ a scalar specification URL for specifying the behavior of custom scalar types.
340
+ """
341
+ directive @specifiedBy(
342
+
343
+ "Point to a human-readable specification of the data format."
344
+ url: String!
345
+
346
+ ) on SCALAR
data/test/config.rb CHANGED
@@ -4,24 +4,33 @@ SimpleCov.start do
4
4
 
5
5
  add_filter '/test/'
6
6
 
7
- add_group 'Definition', ['/graphql/type', '/graphql/introspection', '/graphql/schema']
8
- add_group 'Source', '/graphql/source'
9
- add_group 'Native', '/graphql/native'
10
- add_group 'Field', '/graphql/field'
7
+ add_group 'Definition', ['/graphql/type', '/graphql/directive']
8
+ add_group 'Field', ['/graphql/alternative', '/graphql/field']
11
9
  add_group 'Helpers', '/graphql/helpers'
12
- add_group 'Request', '/graphql/request'
10
+ add_group 'Rails', '/graphql/railties'
11
+ add_group 'Request', ['/graphql/collectors', '/graphql/request']
12
+ add_group 'Subscription', '/graphql/subscription'
13
+ add_group 'Source', ['/graphql/adapters', '/graphql/source']
13
14
  end
14
15
 
15
16
  require 'minitest/autorun'
16
17
  require 'minitest/reporters'
18
+ require 'active_record'
17
19
  require 'rails-graphql'
18
- require 'pry'
20
+ require 'pry-byebug'
21
+
22
+ $config = Rails::GraphQL.config
23
+ $config.logger = ActiveSupport::TaggedLogging.new(Logger.new('/dev/null'))
24
+ $config.enable_introspection = true
25
+ Rails::GraphQL::Request::Backtrace.skip_base_class = NilClass
26
+
27
+ # ActiveRecord::Base.logger = Logger.new(STDOUT)
19
28
 
20
29
  require_relative './test_ext'
21
30
 
22
31
  Minitest::Reporters.use!(Minitest::Reporters::SpecReporter.new)
23
32
 
24
- # Load all files for coverage ensurance
33
+ # Load all files for coverage insurance
25
34
  Rails::GraphQL.eager_load!
26
35
 
27
36
  module GraphQL
@@ -61,7 +70,9 @@ module GraphQL
61
70
  end
62
71
 
63
72
  def fake_type_map(pass = :fetch!, *others)
64
- double(**others.unshift(pass).map { |m| [m, passthrough] }.to_h)
73
+ methods = others.unshift(pass).product([passthrough]).to_h
74
+ methods[:associated_namespace_of] ||= ->(*) { }
75
+ double(**methods)
65
76
  end
66
77
 
67
78
  def stubbed_type_map(*others, &block)
@@ -4,8 +4,8 @@ class GraphQL_SchemaTest < GraphQL::TestCase
4
4
  DESCRIBED_CLASS = unmapped_class(Rails::GraphQL::Schema)
5
5
 
6
6
  def test_gql_name
7
- assert_equal('schema', DESCRIBED_CLASS.gql_name)
8
- assert_equal('schema', DESCRIBED_CLASS.graphql_name)
7
+ assert_equal('__Schema', DESCRIBED_CLASS.gql_name)
8
+ assert_equal('__Schema', DESCRIBED_CLASS.graphql_name)
9
9
  end
10
10
 
11
11
  def test_kind
@@ -36,19 +36,21 @@ class GraphQL_SchemaTest < GraphQL::TestCase
36
36
  end
37
37
 
38
38
  def test_set_namespace
39
- result = DESCRIBED_CLASS.get_reset_ivar(:@namespaces) { set_namespace('a') }
40
- assert_equal(Set[:a], result)
39
+ result = DESCRIBED_CLASS.get_reset_ivar(:@namespace) { set_namespace('a') }
40
+ assert_equal(:a, result)
41
41
 
42
- result = DESCRIBED_CLASS.get_reset_ivar(:@namespaces) { set_namespace('b', 'c') }
43
- assert_equal(Set[:b], result)
42
+ result = DESCRIBED_CLASS.get_reset_ivar(:@namespace) { set_namespace('b', 'c') }
43
+ assert_equal(:b, result)
44
44
  end
45
45
 
46
46
  def test_namespace
47
- DESCRIBED_CLASS.stub(:namespaces, []) do
47
+ assert_equal(:base, DESCRIBED_CLASS.namespace)
48
+
49
+ DESCRIBED_CLASS.stub_ivar(:@namespace, nil) do
48
50
  assert_equal(:base, DESCRIBED_CLASS.namespace)
49
51
  end
50
52
 
51
- DESCRIBED_CLASS.stub(:namespaces, [1]) do
53
+ DESCRIBED_CLASS.stub_ivar(:@namespace, 1) do
52
54
  assert_equal(1, DESCRIBED_CLASS.namespace)
53
55
  end
54
56
 
@@ -64,16 +66,6 @@ class GraphQL_SchemaTest < GraphQL::TestCase
64
66
  end
65
67
  end
66
68
 
67
- def test_gql_resolver_ask
68
- refute(DESCRIBED_CLASS.gql_resolver?(:calculate))
69
-
70
- DESCRIBED_CLASS.send(:define_method, :calculate) {}
71
- assert(DESCRIBED_CLASS.gql_resolver?(:calculate))
72
-
73
- DESCRIBED_CLASS.send(:undef_method, :calculate)
74
- refute(DESCRIBED_CLASS.gql_resolver?(:calculate))
75
- end
76
-
77
69
  def test_find_type
78
70
  DESCRIBED_CLASS.stub(:namespaces, :a) do
79
71
  DESCRIBED_CLASS.stub(:type_map, double(fetch: passallthrough)) do
@@ -128,51 +120,23 @@ class GraphQL_SchemaTest < GraphQL::TestCase
128
120
  end
129
121
  end
130
122
 
131
- def test_create_type
132
- DESCRIBED_CLASS.stub(:create_klass, passallthrough) do
133
- other = double(Module.new, base_type: double(name: 'A::Sample'))
134
- result = [:some, other, type_const, { suffix: 'Sample' }]
135
- assert_equal(result, DESCRIBED_CLASS.send(:create_type, :some, other))
136
-
137
- result = [:some, type_const::Scalar, type_const, { suffix: 'Scalar' }]
138
- assert_equal(result, DESCRIBED_CLASS.send(:create_type, :some, :Scalar))
139
- end
140
- end
141
-
142
- def test_source
143
- DESCRIBED_CLASS.stub(:create_klass, passallthrough) do
144
- result = [:some, 1, source_const, { suffix: 'Source' }]
145
- assert_equal(result, DESCRIBED_CLASS.send(:source, :some, 1))
146
-
147
- source_const.stub(:find_for!, 2) do
148
- result = [:some, 2, source_const, { suffix: 'Source' }]
149
- assert_equal(result, DESCRIBED_CLASS.send(:source, :some))
150
- end
151
- end
152
- end
153
-
154
123
  def test_sources
155
124
  result, passthrough = collect_all_through
125
+ xargs = { build: true }
156
126
  DESCRIBED_CLASS.stub(:source, passthrough) do
157
127
  result.clear && DESCRIBED_CLASS.send(:sources, :a, of_type: 1)
158
- assert_equal([[:a, 1]], result)
128
+ assert_equal([[:a, 1, xargs]], result)
159
129
 
160
130
  result.clear && DESCRIBED_CLASS.send(:sources, :a, :b, of_type: 1)
161
- assert_equal([[:a, 1], [:b, 1]], result)
131
+ assert_equal([[:a, 1, xargs], [:b, 1, xargs]], result)
162
132
 
163
133
  source_const.stub(:find_for!, 2) do
164
134
  result.clear && DESCRIBED_CLASS.send(:sources, %i[c d e])
165
- assert_equal([[:c, 2], [:d, 2], [:e, 2]], result)
135
+ assert_equal([[:c, 2, xargs], [:d, 2, xargs], [:e, 2, xargs]], result)
166
136
  end
167
137
  end
168
138
  end
169
139
 
170
- def test_create_klass
171
- skip 'Needs branching testing'
172
- new_klass = DESCRIBED_CLASS.send :create_klass, 'Test', unmapped_class(type_const::Enum)
173
- assert(new_klass < type_const::Enum)
174
- end
175
-
176
140
  protected
177
141
 
178
142
  def type_const
@@ -24,21 +24,13 @@ class GraphQL_SourceTest < GraphQL::TestCase
24
24
  end
25
25
 
26
26
  def test_base_name
27
- described_class.stub(:abstract?, true) do
28
- assert_nil(described_class.base_name)
29
- end
30
-
31
27
  described_class.stub(:abstract?, false) do
32
28
  assert_equal('DESCRIBED', described_class.base_name)
33
29
  end
34
30
  end
35
31
 
36
32
  def test_inherited
37
- assert_pending([])
38
-
39
- other = unmapped_class(described_class)
40
- refute_predicate(other, :abstract?)
41
- assert_pending(described_class, other)
33
+ skip
42
34
  end
43
35
 
44
36
  def test_find_for_bang
@@ -66,32 +58,13 @@ class GraphQL_SourceTest < GraphQL::TestCase
66
58
  end
67
59
 
68
60
  def test_built_ask
69
- refute_predicate(described_class, :built?)
70
-
71
- described_class.stub_ivar(:@built, false) do
72
- refute_predicate(described_class, :built?)
73
- end
74
-
75
- described_class.stub_ivar(:@built, true) do
76
- assert_predicate(described_class, :built?)
77
- end
61
+ skip
78
62
  end
79
63
 
80
64
  def test_attach_fields_bang
81
65
  skip
82
66
  end
83
67
 
84
- def test_refresh_schemas_bang
85
- described_class.stub(:namespaces, [:base]) do
86
- schema = unmapped_class(Rails::GraphQL::Schema)
87
- Rails::GraphQL::Schema.stub(:find, schema) do
88
- described_class.refresh_schemas!
89
- result = described_class.instance_variable_get(:@schemas)
90
- assert_equal({ base: schema }, result)
91
- end
92
- end
93
- end
94
-
95
68
  def test_find_type_bang
96
69
  described_class.stub(:namespaces, :a) do
97
70
  Rails::GraphQL.stub(:type_map, double(fetch!: passallthrough)) do
@@ -122,16 +95,16 @@ class GraphQL_SourceTest < GraphQL::TestCase
122
95
  skip
123
96
  end
124
97
 
125
- def test_skip_on
98
+ def test_skip_from
126
99
  hash_list = Hash.new { |h, k| h[k] = Set.new }
127
100
  described_class.stub(:segmented_skip_fields, -> { hash_list }) do
128
- assert_equal(Set[:a], described_class.send(:skip_on, 1, :a))
129
- assert_equal(Set[:b], described_class.send(:skip_on, 2, 'b'))
130
- assert_equal(Set[:b, :c, :d], described_class.send(:skip_on, 2, 'c', :d))
101
+ assert_equal(Set[:a], described_class.send(:skip_from, 1, :a))
102
+ assert_equal(Set[:b], described_class.send(:skip_from, 2, 'b'))
103
+ assert_equal(Set[:b, :c, :d], described_class.send(:skip_from, 2, 'c', :d))
131
104
  end
132
105
  end
133
106
 
134
- def test_on
107
+ def test_step
135
108
  skip
136
109
  end
137
110
 
@@ -147,7 +120,7 @@ class GraphQL_SourceTest < GraphQL::TestCase
147
120
  def test_override
148
121
  sequence = []
149
122
  described_class.stub(:skip, ->(*args) { sequence += args }) do
150
- described_class.stub(:on, ->(*args, &block) { sequence += args << block }) do
123
+ described_class.stub(:step, ->(*args, &block) { sequence += args << block }) do
151
124
  described_class.send(:override, :start, &passthrough)
152
125
  assert_equal(0, described_class.hooks[:start].size)
153
126
  assert_equal([:start, :start, passthrough], sequence)
@@ -171,60 +144,10 @@ class GraphQL_SourceTest < GraphQL::TestCase
171
144
  end
172
145
  end
173
146
 
174
- def test_gql_module
175
- assert_equal(::GraphQL, described_class.send(:gql_module))
176
-
177
- ::GraphQL.stub_const(:Other, Module.new) do
178
- sample = unmapped_class(source_const)
179
- ::GraphQL::Other.const_set(:Source, sample)
180
- assert_equal(::GraphQL::Other, sample.send(:gql_module))
181
- end
182
- end
183
-
184
- def test_skips_for
185
- described_class.stub(:all_segmented_skip_fields, { input: Set[:a] }) do
186
- described_class.stub(:all_skip_fields, Set[:b]) do
187
- result = described_class.send(:skips_for, double(kind: :input_object))
188
- assert_equal(Set[:b, :a], result)
189
-
190
- result = described_class.send(:skips_for, double(kind: :object))
191
- assert_equal(Set[:b], result)
192
- end
193
- end
194
- end
195
-
196
- def test_pending_ask
197
- refute_predicate(source_const, :pending?)
198
-
199
- sample = unmapped_class(source_const)
200
- assert_predicate(source_const, :pending?)
201
- end
202
-
203
- def test_build_pending_bang
204
- built = [false, false]
205
- object1 = double(build!: -> { built[0] = true }, abstract?: false)
206
- object2 = double(build!: -> { built[1] = true }, abstract?: true)
207
-
208
- described_class.stub(:pending, [object1, object2]) do
209
- described_class.send(:build_pending!)
210
- assert_equal([true, false], built)
211
- end
212
- end
213
-
214
147
  def test_build_bang
215
148
  skip
216
149
  end
217
150
 
218
- def test_run_hooks
219
- assert_respond_to(described_class, :run_start_hooks)
220
- assert_respond_to(described_class, :run_finish_hooks)
221
- assert_respond_to(described_class, :run_object_hooks)
222
- assert_respond_to(described_class, :run_input_hooks)
223
- assert_respond_to(described_class, :run_query_hooks)
224
- assert_respond_to(described_class, :run_mutation_hooks)
225
- assert_respond_to(described_class, :run_subscription_hooks)
226
- end
227
-
228
151
  protected
229
152
 
230
153
  def assert_pending(*items)