Sha256: 1c5468ac104101fc15633a0e58444607b196b1ef160335617e63eac678813ea0
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 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 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
graphql-1.9.0.pre1 | spec/graphql/tracing/skylight_tracing_spec.rb |