Sha256: 78fc4b04563861093e72fcbdd5cd78265c17c0153c622012d7bb4a1df9ebc9dc

Contents?: true

Size: 1.85 KB

Versions: 15

Compression:

Stored size: 1.85 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)
      if TESTING_INTERPRETER
        use GraphQL::Execution::Interpreter
      end
    end

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

    class SchemaWithScalarTrace < GraphQL::Schema
      query(Query)
      use(GraphQL::Tracing::SkylightTracing, trace_scalars: 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

  it "traces scalars when trace_scalars is true" do
    SkylightTest::SchemaWithScalarTrace.execute "query X { int }"
    assert_includes Skylight::TITLE_NAMES, "graphql.Query.int"
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
graphql-1.9.11 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.10 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.9 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.8 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.7 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.6 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.5 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.4 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.3 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.2 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.1 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.0 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.0.pre4 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.0.pre3 spec/graphql/tracing/skylight_tracing_spec.rb
graphql-1.9.0.pre2 spec/graphql/tracing/skylight_tracing_spec.rb