Sha256: 3eeeb2fbbb50aa5de0acfcc22f8a0368d52a103dd23ffdac471d9c976198e275

Contents?: true

Size: 1.36 KB

Versions: 6

Compression:

Stored size: 1.36 KB

Contents

# frozen_string_literal: true
require "spec_helper"

describe GraphQL::Tracing::SkylightTracing do
  module SkylightTest
    class Query < GraphQL::Schema::Object
      field :int, Integer, null: false

      def int
        1
      end
    end

    class SchemaWithoutTransactionName < GraphQL::Schema
      query(Query)
      use(GraphQL::Tracing::SkylightTracing)
    end

    class SchemaWithTransactionName < GraphQL::Schema
      query(Query)
      use(GraphQL::Tracing::SkylightTracing, set_endpoint_name: true)
    end
  end

  before do
    Skylight.clear_all
  end

  it "can leave the transaction name in place" do
    SkylightTest::SchemaWithoutTransactionName.execute "query X { int }"
    assert_equal [], Skylight::ENDPOINT_NAMES
  end

  it "can override the transaction name" do
    SkylightTest::SchemaWithTransactionName.execute "query X { int }"
    assert_equal ["GraphQL/query.X"], Skylight::ENDPOINT_NAMES
  end

  it "can override the transaction name per query" do
    # Override with `false`
    SkylightTest::SchemaWithTransactionName.execute "{ int }", context: { set_skylight_endpoint_name: false }
    assert_equal [], Skylight::ENDPOINT_NAMES
    # Override with `true`
    SkylightTest::SchemaWithoutTransactionName.execute "{ int }", context: { set_skylight_endpoint_name: true }
    assert_equal ["GraphQL/query.<anonymous>"], Skylight::ENDPOINT_NAMES
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
graphql-1.8.11 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.8.10 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.8.9 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.8.8 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.8.7 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.8.6 spec/graphql/tracing/skylight_tracing_spec.rb