Skip to content

Commit

Permalink
Specs
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py committed Aug 29, 2023
1 parent 52ab3f3 commit 83541fd
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 7 deletions.
2 changes: 0 additions & 2 deletions sentry-ruby/lib/sentry/hub.rb
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,6 @@ def get_baggage
end

def get_trace_propagation_headers
return nil unless configuration.propagate_traces

headers = {}

Check warning on line 247 in sentry-ruby/lib/sentry/hub.rb

View check run for this annotation

Codecov / codecov/patch

sentry-ruby/lib/sentry/hub.rb#L247

Added line #L247 was not covered by tests

traceparent = get_traceparent
Expand Down
8 changes: 5 additions & 3 deletions sentry-ruby/lib/sentry/net/http.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def request(req, body = nil, &block)
Sentry.with_child_span(op: OP_NAME, start_timestamp: Sentry.utc_now.to_f) do |sentry_span|
request_info = extract_request_info(req)

if propagate_trace?(request_info[:url], Sentry.configuration.trace_propagation_targets)
if propagate_trace?(request_info[:url], Sentry.configuration)
set_propagation_headers(req)

Check warning on line 36 in sentry-ruby/lib/sentry/net/http.rb

View check run for this annotation

Codecov / codecov/patch

sentry-ruby/lib/sentry/net/http.rb#L35-L36

Added lines #L35 - L36 were not covered by tests
end

Expand Down Expand Up @@ -90,8 +90,10 @@ def extract_request_info(req)
result
end

def propagate_trace?(url, trace_propagation_targets)
url && trace_propagation_targets.any? { |target| url.match?(target) }
def propagate_trace?(url, configuration)
url &&

Check warning on line 94 in sentry-ruby/lib/sentry/net/http.rb

View check run for this annotation

Codecov / codecov/patch

sentry-ruby/lib/sentry/net/http.rb#L94

Added line #L94 was not covered by tests
configuration.propagate_traces &&
configuration.trace_propagation_targets.any? { |target| url.match?(target) }

Check warning on line 96 in sentry-ruby/lib/sentry/net/http.rb

View check run for this annotation

Codecov / codecov/patch

sentry-ruby/lib/sentry/net/http.rb#L96

Added line #L96 was not covered by tests
end
end
end
Expand Down
4 changes: 4 additions & 0 deletions sentry-ruby/lib/sentry/propagation_context.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ def get_dynamic_sampling_context
get_baggage&.dynamic_sampling_context
end

def deep_dup
dup
end

private

def populate_head_baggage
Expand Down
1 change: 1 addition & 0 deletions sentry-ruby/spec/sentry/event_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
expect(event.environment).to eq("test")
expect(event.release).to eq("721e41770371db95eee98ca2707686226b993eda")
expect(event.sdk).to eq("name" => "sentry.ruby", "version" => Sentry::VERSION)
expect(event.dynamic_sampling_context).to eq(nil)
end
end

Expand Down
15 changes: 14 additions & 1 deletion sentry-ruby/spec/sentry/net/http_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,20 @@ def verify_spans(transaction)
perform_basic_setup
end

it "doesn't affect the HTTP lib anything" do
it "adds sentry-trace and baggage headers for tracing without performance" do
stub_normal_response

uri = URI("http://example.com/path")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)

expect(request["sentry-trace"]).to eq(Sentry.get_traceparent)
expect(request["baggage"]).to eq(Sentry.get_baggage)
expect(response.code).to eq("200")
end

it "doesn't create transaction or breadcrumbs" do
stub_normal_response

response = Net::HTTP.get_response(URI("http://example.com/path"))
Expand Down
9 changes: 8 additions & 1 deletion sentry-ruby/spec/sentry/scope_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
expect(subject.fingerprint).to eq([])
expect(subject.transaction_names).to eq([])
expect(subject.transaction_sources).to eq([])
expect(subject.propagation_context).to be_a(Sentry::PropagationContext)
end

it "allows setting breadcrumb buffer's size limit" do
Expand Down Expand Up @@ -276,7 +277,7 @@
end
end

it "sets trace context if there's a span" do
it "sets trace context from span if there's a span" do
transaction = Sentry::Transaction.new(op: "foo", hub: hub)
subject.set_span(transaction)

Expand All @@ -286,6 +287,12 @@
expect(event.contexts.dig(:trace, :op)).to eq("foo")
end

it "sets trace context and dynamic_sampling_context from propagation context if there's no span" do
subject.apply_to_event(event)
expect(event.contexts[:trace]).to eq(subject.propagation_context.get_trace_context)
expect(event.dynamic_sampling_context).to eq(subject.propagation_context.get_dynamic_sampling_context)
end

context "with Rack", rack: true do
let(:env) do
Rack::MockRequest.env_for("/test", {})
Expand Down
49 changes: 49 additions & 0 deletions sentry-ruby/spec/sentry_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,55 @@
end
end

describe ".get_traceparent" do
it "returns a valid traceparent header from scope propagation context" do
traceparent = described_class.get_traceparent
propagation_context = described_class.get_current_scope.propagation_context

expect(traceparent).to match(Sentry::Transaction::SENTRY_TRACE_REGEXP)
expect(traceparent).to eq("#{propagation_context.trace_id}-#{propagation_context.span_id}")
end

it "returns a valid traceparent header from scope current span" do
transaction = Sentry::Transaction.new(op: "foo", hub: Sentry.get_current_hub, sampled: true)
span = transaction.start_child(op: "parent")
described_class.get_current_scope.set_span(span)

traceparent = described_class.get_traceparent

expect(traceparent).to match(Sentry::Transaction::SENTRY_TRACE_REGEXP)
expect(traceparent).to eq("#{span.trace_id}-#{span.span_id}-1")
end
end

describe ".get_baggage" do
it "returns a valid baggage header from scope propagation context" do
baggage = described_class.get_baggage
propagation_context = described_class.get_current_scope.propagation_context

expect(baggage).to eq("sentry-trace_id=#{propagation_context.trace_id},sentry-environment=development,sentry-public_key=12345")
end

it "returns a valid baggage header from scope current span" do
transaction = Sentry::Transaction.new(op: "foo", hub: Sentry.get_current_hub, sampled: true)
span = transaction.start_child(op: "parent")
described_class.get_current_scope.set_span(span)

baggage = described_class.get_baggage

expect(baggage).to eq("sentry-trace_id=#{span.trace_id},sentry-sampled=true,sentry-environment=development,sentry-public_key=12345")
end
end

describe ".get_trace_propagation_headers" do
it "returns a Hash of sentry-trace and baggage" do
expect(described_class.get_trace_propagation_headers).to eq({
"sentry-trace" => described_class.get_traceparent,
"baggage" => described_class.get_baggage
})
end
end

describe 'release detection' do
let(:fake_root) { "/tmp/sentry/" }

Expand Down

0 comments on commit 83541fd

Please sign in to comment.