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/logger_analyzer_spec.rb')
-rw-r--r--spec/lib/gitlab/graphql/query_analyzers/ast/logger_analyzer_spec.rb51
1 files changed, 51 insertions, 0 deletions
diff --git a/spec/lib/gitlab/graphql/query_analyzers/ast/logger_analyzer_spec.rb b/spec/lib/gitlab/graphql/query_analyzers/ast/logger_analyzer_spec.rb
new file mode 100644
index 00000000000..a5274d49fdb
--- /dev/null
+++ b/spec/lib/gitlab/graphql/query_analyzers/ast/logger_analyzer_spec.rb
@@ -0,0 +1,51 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Gitlab::Graphql::QueryAnalyzers::AST::LoggerAnalyzer do
+ let(:query) { GraphQL::Query.new(GitlabSchema, document: document, context: {}, variables: { body: 'some note' }) }
+ let(:document) do
+ GraphQL.parse <<-GRAPHQL
+ mutation createNote($body: String!) {
+ createNote(input: {noteableId: "gid://gitlab/Noteable/1", body: $body}) {
+ note {
+ id
+ }
+ }
+ }
+ GRAPHQL
+ end
+
+ describe '#result' do
+ let(:monotonic_time_before) { 42 }
+ let(:monotonic_time_after) { 500 }
+ let(:monotonic_time_duration) { monotonic_time_after - monotonic_time_before }
+
+ before do
+ RequestStore.store[:graphql_logs] = nil
+
+ allow(Gitlab::Metrics::System).to receive(:monotonic_time)
+ .and_return(monotonic_time_before, monotonic_time_before,
+ monotonic_time_before, monotonic_time_before,
+ monotonic_time_after)
+ end
+
+ it 'returns the complexity, depth, duration, etc' do
+ results = GraphQL::Analysis::AST.analyze_query(query, [described_class], multiplex_analyzers: [])
+ result = results.first
+
+ expect(result[:duration_s]).to eq monotonic_time_duration
+ expect(result[:depth]).to eq 3
+ expect(result[:complexity]).to eq 3
+ expect(result[:used_fields]).to eq ['Note.id', 'CreateNotePayload.note', 'Mutation.createNote']
+ expect(result[:used_deprecated_fields]).to eq []
+
+ request = result.except(:duration_s).merge({
+ operation_name: 'createNote',
+ variables: { body: "[FILTERED]" }.to_s
+ })
+
+ expect(RequestStore.store[:graphql_logs]).to match([request])
+ end
+ end
+end