2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
module GraphqlHelpers
|
2018-11-18 11:00:15 +05:30
|
|
|
MutationDefinition = Struct.new(:query, :variables)
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
NoData = Class.new(StandardError)
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
# makes an underscored string look like a fieldname
|
|
|
|
# "merge_request" => "mergeRequest"
|
|
|
|
def self.fieldnamerize(underscored_field_name)
|
2019-09-30 21:07:59 +05:30
|
|
|
underscored_field_name.to_s.camelize(:lower)
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
# Run a loader's named resolver
|
|
|
|
def resolve(resolver_class, obj: nil, args: {}, ctx: {})
|
|
|
|
resolver_class.new(object: obj, context: ctx).resolve(args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Runs a block inside a BatchLoader::Executor wrapper
|
|
|
|
def batch(max_queries: nil, &blk)
|
|
|
|
wrapper = proc do
|
2019-07-07 11:18:12 +05:30
|
|
|
BatchLoader::Executor.ensure_current
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
BatchLoader::Executor.clear_current
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
if max_queries
|
|
|
|
result = nil
|
|
|
|
expect { result = wrapper.call }.not_to exceed_query_limit(max_queries)
|
|
|
|
result
|
|
|
|
else
|
|
|
|
wrapper.call
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
# BatchLoader::GraphQL returns a wrapper, so we need to :sync in order
|
|
|
|
# to get the actual values
|
|
|
|
def batch_sync(max_queries: nil, &blk)
|
2019-12-26 22:10:19 +05:30
|
|
|
wrapper = proc do
|
|
|
|
lazy_vals = yield
|
|
|
|
lazy_vals.is_a?(Array) ? lazy_vals.map(&:sync) : lazy_vals&.sync
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
batch(max_queries: max_queries, &wrapper)
|
2019-12-04 20:38:33 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def graphql_query_for(name, attributes = {}, fields = nil)
|
|
|
|
<<~QUERY
|
|
|
|
{
|
|
|
|
#{query_graphql_field(name, attributes, fields)}
|
|
|
|
}
|
|
|
|
QUERY
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def graphql_mutation(name, input, fields = nil)
|
|
|
|
mutation_name = GraphqlHelpers.fieldnamerize(name)
|
|
|
|
input_variable_name = "$#{input_variable_name_for_mutation(name)}"
|
|
|
|
mutation_field = GitlabSchema.mutation.fields[mutation_name]
|
|
|
|
fields ||= all_graphql_fields_for(mutation_field.type)
|
|
|
|
|
|
|
|
query = <<~MUTATION
|
|
|
|
mutation(#{input_variable_name}: #{mutation_field.arguments['input'].type}) {
|
|
|
|
#{mutation_name}(input: #{input_variable_name}) {
|
|
|
|
#{fields}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MUTATION
|
|
|
|
variables = variables_for_mutation(name, input)
|
|
|
|
|
|
|
|
MutationDefinition.new(query, variables)
|
|
|
|
end
|
|
|
|
|
|
|
|
def variables_for_mutation(name, input)
|
2019-09-30 21:07:59 +05:30
|
|
|
graphql_input = prepare_input_for_mutation(input)
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
result = { input_variable_name_for_mutation(name) => graphql_input }
|
|
|
|
|
|
|
|
# Avoid trying to serialize multipart data into JSON
|
|
|
|
if graphql_input.values.none? { |value| io_value?(value) }
|
|
|
|
result.to_json
|
|
|
|
else
|
|
|
|
result
|
|
|
|
end
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
# Recursively convert a Hash with Ruby-style keys to GraphQL fieldname-style keys
|
|
|
|
#
|
|
|
|
# prepare_input_for_mutation({ 'my_key' => 1 })
|
|
|
|
# => { 'myKey' => 1}
|
|
|
|
def prepare_input_for_mutation(input)
|
|
|
|
input.map do |name, value|
|
|
|
|
value = prepare_input_for_mutation(value) if value.is_a?(Hash)
|
|
|
|
|
|
|
|
[GraphqlHelpers.fieldnamerize(name), value]
|
|
|
|
end.to_h
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def input_variable_name_for_mutation(mutation_name)
|
|
|
|
mutation_name = GraphqlHelpers.fieldnamerize(mutation_name)
|
|
|
|
mutation_field = GitlabSchema.mutation.fields[mutation_name]
|
|
|
|
input_type = field_type(mutation_field.arguments['input'])
|
|
|
|
|
|
|
|
GraphqlHelpers.fieldnamerize(input_type)
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def query_graphql_field(name, attributes = {}, fields = nil)
|
|
|
|
fields ||= all_graphql_fields_for(name.classify)
|
|
|
|
attributes = attributes_to_graphql(attributes)
|
2019-07-07 11:18:12 +05:30
|
|
|
attributes = "(#{attributes})" if attributes.present?
|
2018-11-08 19:23:39 +05:30
|
|
|
<<~QUERY
|
2019-07-07 11:18:12 +05:30
|
|
|
#{name}#{attributes}
|
|
|
|
#{wrap_fields(fields)}
|
2018-11-08 19:23:39 +05:30
|
|
|
QUERY
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def wrap_fields(fields)
|
2019-07-31 22:56:46 +05:30
|
|
|
fields = Array.wrap(fields).join("\n")
|
|
|
|
return unless fields.present?
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
<<~FIELDS
|
|
|
|
{
|
|
|
|
#{fields}
|
|
|
|
}
|
|
|
|
FIELDS
|
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
def all_graphql_fields_for(class_name, parent_types = Set.new, max_depth: 3)
|
|
|
|
# pulling _all_ fields can generate a _huge_ query (like complexity 180,000),
|
|
|
|
# and significantly increase spec runtime. so limit the depth by default
|
|
|
|
return if max_depth <= 0
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
allow_unlimited_graphql_complexity
|
2019-09-04 21:01:54 +05:30
|
|
|
allow_unlimited_graphql_depth
|
2019-10-31 01:37:42 +05:30
|
|
|
allow_high_graphql_recursion
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
type = GitlabSchema.types[class_name.to_s]
|
|
|
|
return "" unless type
|
|
|
|
|
|
|
|
type.fields.map do |name, field|
|
|
|
|
# We can't guess arguments, so skip fields that require them
|
|
|
|
next if required_arguments?(field)
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
singular_field_type = field_type(field)
|
|
|
|
|
|
|
|
# If field type is the same as parent type, then we're hitting into
|
|
|
|
# mutual dependency. Break it from infinite recursion
|
|
|
|
next if parent_types.include?(singular_field_type)
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
if nested_fields?(field)
|
2019-07-07 11:18:12 +05:30
|
|
|
fields =
|
2019-12-04 20:38:33 +05:30
|
|
|
all_graphql_fields_for(singular_field_type, parent_types | [type], max_depth: max_depth - 1)
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
"#{name} { #{fields} }" unless fields.blank?
|
2018-11-08 19:23:39 +05:30
|
|
|
else
|
|
|
|
name
|
|
|
|
end
|
|
|
|
end.compact.join("\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
def attributes_to_graphql(attributes)
|
|
|
|
attributes.map do |name, value|
|
2019-12-26 22:10:19 +05:30
|
|
|
value_str = if value.is_a?(Array)
|
|
|
|
'["' + value.join('","') + '"]'
|
|
|
|
else
|
|
|
|
"\"#{value}\""
|
|
|
|
end
|
|
|
|
|
|
|
|
"#{GraphqlHelpers.fieldnamerize(name.to_s)}: #{value_str}"
|
2018-11-08 19:23:39 +05:30
|
|
|
end.join(", ")
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
def post_multiplex(queries, current_user: nil, headers: {})
|
|
|
|
post api('/', current_user, version: 'graphql'), params: { _json: queries }, headers: headers
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def post_graphql(query, current_user: nil, variables: nil, headers: {})
|
|
|
|
post api('/', current_user, version: 'graphql'), params: { query: query, variables: variables }, headers: headers
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def post_graphql_mutation(mutation, current_user: nil)
|
|
|
|
post_graphql(mutation.query, current_user: current_user, variables: mutation.variables)
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
# this implements GraphQL multipart request v2
|
|
|
|
# https://github.com/jaydenseric/graphql-multipart-request-spec/tree/v2.0.0-alpha.2
|
|
|
|
# this is simplified and do not support file deduplication
|
|
|
|
def mutation_to_apollo_uploads_param(mutation, files: [])
|
|
|
|
operations = { 'query' => mutation.query, 'variables' => mutation.variables }
|
|
|
|
map = {}
|
|
|
|
extracted_files = {}
|
|
|
|
|
|
|
|
files.each_with_index do |file_path, idx|
|
|
|
|
apollo_idx = (idx + 1).to_s
|
|
|
|
parent_dig_path = file_path[0..-2]
|
|
|
|
file_key = file_path[-1]
|
|
|
|
|
|
|
|
parent = operations['variables']
|
|
|
|
parent = parent.dig(*parent_dig_path) unless parent_dig_path.empty?
|
|
|
|
|
|
|
|
extracted_files[apollo_idx] = parent[file_key]
|
|
|
|
parent[file_key] = nil
|
|
|
|
|
|
|
|
map[apollo_idx] = ["variables.#{file_path.join('.')}"]
|
|
|
|
end
|
|
|
|
|
|
|
|
{ operations: operations.to_json, map: map.to_json }.merge(extracted_files)
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
# Raises an error if no data is found
|
2018-11-08 19:23:39 +05:30
|
|
|
def graphql_data
|
2019-10-12 21:52:04 +05:30
|
|
|
json_response['data'] || (raise NoData, graphql_errors)
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def graphql_errors
|
2019-09-04 21:01:54 +05:30
|
|
|
case json_response
|
|
|
|
when Hash # regular query
|
|
|
|
json_response['errors']
|
|
|
|
when Array # multiplexed queries
|
|
|
|
json_response.map { |response| response['errors'] }
|
|
|
|
else
|
|
|
|
raise "Unknown GraphQL response type #{json_response.class}"
|
|
|
|
end
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
2019-10-31 01:37:42 +05:30
|
|
|
def expect_graphql_errors_to_include(regexes_to_match)
|
|
|
|
raise "No errors. Was expecting to match #{regexes_to_match}" if graphql_errors.nil? || graphql_errors.empty?
|
|
|
|
|
|
|
|
error_messages = flattened_errors.collect { |error_hash| error_hash["message"] }
|
|
|
|
Array.wrap(regexes_to_match).flatten.each do |regex|
|
|
|
|
expect(error_messages).to include a_string_matching regex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def expect_graphql_errors_to_be_empty
|
|
|
|
expect(flattened_errors).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
def flattened_errors
|
|
|
|
Array.wrap(graphql_errors).flatten.compact
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
# Raises an error if no response is found
|
2018-11-18 11:00:15 +05:30
|
|
|
def graphql_mutation_response(mutation_name)
|
2019-10-12 21:52:04 +05:30
|
|
|
graphql_data.fetch(GraphqlHelpers.fieldnamerize(mutation_name))
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def nested_fields?(field)
|
|
|
|
!scalar?(field) && !enum?(field)
|
|
|
|
end
|
|
|
|
|
|
|
|
def scalar?(field)
|
|
|
|
field_type(field).kind.scalar?
|
|
|
|
end
|
|
|
|
|
|
|
|
def enum?(field)
|
|
|
|
field_type(field).kind.enum?
|
|
|
|
end
|
|
|
|
|
|
|
|
def required_arguments?(field)
|
|
|
|
field.arguments.values.any? { |argument| argument.type.non_null? }
|
|
|
|
end
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
def io_value?(value)
|
|
|
|
Array.wrap(value).any? { |v| v.respond_to?(:to_io) }
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def field_type(field)
|
2018-11-18 11:00:15 +05:30
|
|
|
field_type = field.type
|
|
|
|
|
|
|
|
# The type could be nested. For example `[GraphQL::STRING_TYPE]`:
|
|
|
|
# - List
|
|
|
|
# - String!
|
|
|
|
# - String
|
2019-03-02 22:35:43 +05:30
|
|
|
field_type = field_type.of_type while field_type.respond_to?(:of_type)
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
field_type
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
# for most tests, we want to allow unlimited complexity
|
|
|
|
def allow_unlimited_graphql_complexity
|
|
|
|
allow_any_instance_of(GitlabSchema).to receive(:max_complexity).and_return nil
|
|
|
|
allow(GitlabSchema).to receive(:max_query_complexity).with(any_args).and_return nil
|
|
|
|
end
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
def allow_unlimited_graphql_depth
|
|
|
|
allow_any_instance_of(GitlabSchema).to receive(:max_depth).and_return nil
|
|
|
|
allow(GitlabSchema).to receive(:max_query_depth).with(any_args).and_return nil
|
|
|
|
end
|
2019-10-31 01:37:42 +05:30
|
|
|
|
|
|
|
def allow_high_graphql_recursion
|
|
|
|
allow_any_instance_of(Gitlab::Graphql::QueryAnalyzers::RecursionAnalyzer).to receive(:recursion_threshold).and_return 1000
|
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
def node_array(data, extract_attribute = nil)
|
|
|
|
data.map do |item|
|
|
|
|
extract_attribute ? item['node'][extract_attribute] : item['node']
|
|
|
|
end
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
def global_id_of(model)
|
|
|
|
model.to_global_id.to_s
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
# This warms our schema, doing this as part of loading the helpers to avoid
|
|
|
|
# duplicate loading error when Rails tries autoload the types.
|
|
|
|
GitlabSchema.graphql_definition
|