Sha256: fdfa6f8daff24a3eab88c967bbb4f0d5b78006d52d2c1a68658d24b7f9f74e39

Contents?: true

Size: 1.39 KB

Versions: 18

Compression:

Stored size: 1.39 KB

Contents

# frozen_string_literal: true
require "spec_helper"

describe GraphQL::Tracing::ActiveSupportNotificationsTracing do
  let(:schema) {
    StarWars::Schema.redefine {
      tracer GraphQL::Tracing::ActiveSupportNotificationsTracing
    }
  }

  it "pushes through AS::N" do
    traces = []

    callback = ->(name, started, finished, id, data) {
      traces << name
    }

    query_string = <<-GRAPHQL
    query Bases($id1: ID!, $id2: ID!){
      b1: batchedBase(id: $id1) { name }
      b2: batchedBase(id: $id2) { name }
    }
    GRAPHQL
    first_id = StarWars::Base.first.id
    last_id = StarWars::Base.last.id

    ActiveSupport::Notifications.subscribed(callback, /^graphql/) do
      schema.execute(query_string, variables: {
        "id1" => first_id,
        "id2" => last_id,
      })
    end

    expected_traces = [
      "graphql.lex",
      "graphql.parse",
      "graphql.validate",
      "graphql.analyze_query",
      "graphql.analyze_multiplex",
      "graphql.execute_field",
      "graphql.execute_field",
      "graphql.execute_query",
      "graphql.lazy_loader",
      "graphql.execute_field",
      "graphql.execute_field_lazy",
      "graphql.execute_field",
      "graphql.execute_field_lazy",
      "graphql.execute_field_lazy",
      "graphql.execute_field_lazy",
      "graphql.execute_query_lazy",
      "graphql.execute_multiplex",
    ]
    assert_equal expected_traces, traces
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
graphql-1.7.14 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.13 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.8.0.pre7 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.12 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.11 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.10 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.8.0.pre6 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.8.0.pre5 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.9 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.8.0.pre4 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.8.0.pre3 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.8 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.8.0.pre2 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.7 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.8.0.pre1 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.6 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.5 spec/graphql/tracing/active_support_notifications_tracing_spec.rb
graphql-1.7.4 spec/graphql/tracing/active_support_notifications_tracing_spec.rb