mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-13 13:31:19 +00:00
23 lines
724 B
Ruby
23 lines
724 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Gitlab::Graphql::Timeout do
|
|
it 'inherits from' do
|
|
expect(described_class.superclass).to eq GraphQL::Schema::Timeout
|
|
end
|
|
|
|
it 'sends the error to our GraphQL logger' do
|
|
field = double(path: 'parent_type.field')
|
|
query = double(query_string: 'query_string', provided_variables: 'provided_variables')
|
|
error = GraphQL::Schema::Timeout::TimeoutError.new(field)
|
|
|
|
expect(Gitlab::GraphqlLogger)
|
|
.to receive(:error)
|
|
.with(message: 'Timeout on parent_type.field', query: 'query_string', query_variables: 'provided_variables')
|
|
|
|
timeout = described_class.new(max_seconds: 30)
|
|
timeout.handle_timeout(error, query)
|
|
end
|
|
end
|