Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/graphql/query_analyzers/ast/recursion_analyzer_spec.rb')
-rw-r--r--spec/lib/gitlab/graphql/query_analyzers/ast/recursion_analyzer_spec.rb72
1 files changed, 72 insertions, 0 deletions
diff --git a/spec/lib/gitlab/graphql/query_analyzers/ast/recursion_analyzer_spec.rb b/spec/lib/gitlab/graphql/query_analyzers/ast/recursion_analyzer_spec.rb
new file mode 100644
index 00000000000..997fb129f42
--- /dev/null
+++ b/spec/lib/gitlab/graphql/query_analyzers/ast/recursion_analyzer_spec.rb
@@ -0,0 +1,72 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Gitlab::Graphql::QueryAnalyzers::AST::RecursionAnalyzer do
+ let(:query) { GraphQL::Query.new(GitlabSchema, document: document, context: {}, variables: { body: 'some note' }) }
+
+ context 'when recursion threshold not exceeded' do
+ let(:document) do
+ GraphQL.parse <<-GRAPHQL
+ query recurse {
+ group(fullPath: "h5bp") {
+ projects {
+ nodes {
+ name
+ group {
+ projects {
+ nodes {
+ name
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ GRAPHQL
+ end
+
+ it 'returns the complexity, depth, duration, etc' do
+ result = GraphQL::Analysis::AST.analyze_query(query, [described_class], multiplex_analyzers: [])
+
+ expect(result.first).to be_nil
+ end
+ end
+
+ context 'when recursion threshold exceeded' do
+ let(:document) do
+ GraphQL.parse <<-GRAPHQL
+ query recurse {
+ group(fullPath: "h5bp") {
+ projects {
+ nodes {
+ name
+ group {
+ projects {
+ nodes {
+ name
+ group {
+ projects {
+ nodes {
+ name
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ GRAPHQL
+ end
+
+ it 'returns error' do
+ result = GraphQL::Analysis::AST.analyze_query(query, [described_class], multiplex_analyzers: [])
+
+ expect(result.first.is_a?(GraphQL::AnalysisError)).to be_truthy
+ end
+ end
+end