Skip to content

Commit 4ea267e

Browse files
committed
do not emit telemetry metrics when attempting to start test session or test module and they're already present
1 parent 2536960 commit 4ea267e

File tree

4 files changed

+57
-1
lines changed

4 files changed

+57
-1
lines changed

lib/datadog/ci/contrib/parallel_tests/cli.rb

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ def run_tests_in_parallel(num_processes, options)
2222
tags: {
2323
CI::Ext::Test::TAG_FRAMEWORK => CI::Contrib::RSpec::Ext::FRAMEWORK,
2424
CI::Ext::Test::TAG_FRAMEWORK_VERSION => datadog_extract_rspec_version
25-
2625
},
2726
service: datadog_configuration[:service_name],
2827
estimated_total_tests_count: 10_000, # temporary value, updated by child processes

lib/datadog/ci/test_visibility/component.rb

+6
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ def configure(library_configuration, test_session)
7272
def start_test_session(service: nil, tags: {}, estimated_total_tests_count: 0, distributed: false)
7373
return skip_tracing unless test_suite_level_visibility_enabled
7474

75+
current_test_session = maybe_remote_context.active_test_session
76+
return current_test_session if current_test_session
77+
7578
start_drb_service
7679

7780
test_session = maybe_remote_context.start_test_session(service: service, tags: tags)
@@ -85,6 +88,9 @@ def start_test_session(service: nil, tags: {}, estimated_total_tests_count: 0, d
8588
def start_test_module(test_module_name, service: nil, tags: {})
8689
return skip_tracing unless test_suite_level_visibility_enabled
8790

91+
existing_test_module = maybe_remote_context.active_test_module
92+
return existing_test_module if existing_test_module
93+
8894
test_module = maybe_remote_context.start_test_module(test_module_name, service: service, tags: tags)
8995
on_test_module_started(test_module)
9096
test_module

spec/datadog/ci/test_visibility/component_spec.rb

+40
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,27 @@
415415
expect(subject).to have_test_tag("my.tag", "my_value")
416416
end
417417

418+
context "when a test session is already active" do
419+
let(:existing_test_session) { test_visibility.start_test_session(service: service, tags: tags) }
420+
421+
before do
422+
existing_test_session
423+
424+
reset_telemetry_spy!
425+
end
426+
427+
it "returns the existing test session" do
428+
expect(subject).to eq(existing_test_session)
429+
end
430+
431+
it "does not emit any telemetry metrics" do
432+
subject
433+
434+
expect(received_telemetry_metric?(:inc, Datadog::CI::Ext::Telemetry::METRIC_EVENT_CREATED)).to be_falsey
435+
expect(received_telemetry_metric?(:inc, Datadog::CI::Ext::Telemetry::METRIC_TEST_SESSION)).to be_falsey
436+
end
437+
end
438+
418439
context "with git upload enabled and gitdb api spy" do
419440
let(:git_metadata_upload_enabled) { true }
420441
let(:search_commits) { double("search_commits") }
@@ -559,6 +580,25 @@
559580
expect(subject.tracer_span.trace_id).to eq(test_session.tracer_span.trace_id)
560581
end
561582
end
583+
584+
context "when a test module is already active" do
585+
let(:existing_test_module) { test_visibility.start_test_module(module_name, service: service, tags: tags) }
586+
587+
before do
588+
existing_test_module
589+
reset_telemetry_spy!
590+
end
591+
592+
it "returns the existing test module" do
593+
expect(subject).to eq(existing_test_module)
594+
end
595+
596+
it "does not emit any telemetry metrics" do
597+
subject
598+
599+
expect(received_telemetry_metric?(:inc, Datadog::CI::Ext::Telemetry::METRIC_EVENT_CREATED)).to be_falsey
600+
end
601+
end
562602
end
563603

564604
describe "start_test_suite" do

spec/support/contexts/telemetry_spy.rb

+11
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,15 @@ def telemetry_spy_value_suffix(value)
5050
def telemetry_metric(type, name)
5151
@metrics[type].find { |m| m.name == name }
5252
end
53+
54+
def reset_telemetry_spy!
55+
@metrics = {
56+
inc: [],
57+
distribution: []
58+
}
59+
end
60+
61+
def received_telemetry_metric?(type, name)
62+
@metrics[type].map(&:name).include?(name)
63+
end
5364
end

0 commit comments

Comments
 (0)