Class: Datadog::CI::TestOptimisation::Component
- Inherits:
-
Object
- Object
- Datadog::CI::TestOptimisation::Component
- Includes:
- Core::Utils::Forking
- Defined in:
- lib/datadog/ci/test_optimisation/component.rb
Overview
Intelligent test runner implementation Integrates with backend to provide test impact analysis data and skip tests that are not impacted by the changes
Instance Attribute Summary collapse
-
#code_coverage_enabled ⇒ Object
readonly
Returns the value of attribute code_coverage_enabled.
-
#correlation_id ⇒ Object
readonly
Returns the value of attribute correlation_id.
-
#enabled ⇒ Object
readonly
Returns the value of attribute enabled.
-
#skippable_tests ⇒ Object
readonly
Returns the value of attribute skippable_tests.
-
#skippable_tests_fetch_error ⇒ Object
readonly
Returns the value of attribute skippable_tests_fetch_error.
-
#skipped_tests_count ⇒ Object
readonly
Returns the value of attribute skipped_tests_count.
-
#test_skipping_enabled ⇒ Object
readonly
Returns the value of attribute test_skipping_enabled.
-
#total_tests_count ⇒ Object
readonly
Returns the value of attribute total_tests_count.
Instance Method Summary collapse
- #code_coverage? ⇒ Boolean
- #configure(remote_configuration, test_session) ⇒ Object
- #count_skipped_test(test) ⇒ Object
- #enabled? ⇒ Boolean
-
#initialize(dd_env:, config_tags: {}, api: nil, coverage_writer: nil, enabled: false, bundle_location: nil, use_single_threaded_coverage: false, use_allocation_tracing: true) ⇒ Component
constructor
A new instance of Component.
- #mark_if_skippable(test) ⇒ Object
- #shutdown! ⇒ Object
- #skippable_tests_count ⇒ Object
- #skipping_tests? ⇒ Boolean
- #start_coverage(test) ⇒ Object
- #stop_coverage(test) ⇒ Object
- #write_test_session_tags(test_session) ⇒ Object
Constructor Details
#initialize(dd_env:, config_tags: {}, api: nil, coverage_writer: nil, enabled: false, bundle_location: nil, use_single_threaded_coverage: false, use_allocation_tracing: true) ⇒ Component
Returns a new instance of Component.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 32 def initialize( dd_env:, config_tags: {}, api: nil, coverage_writer: nil, enabled: false, bundle_location: nil, use_single_threaded_coverage: false, use_allocation_tracing: true ) @enabled = enabled @api = api @dd_env = dd_env @config_tags = || {} @bundle_location = if bundle_location && !File.absolute_path?(bundle_location) File.join(Git::LocalRepository.root, bundle_location) else bundle_location end @use_single_threaded_coverage = use_single_threaded_coverage @use_allocation_tracing = use_allocation_tracing @test_skipping_enabled = false @code_coverage_enabled = false @coverage_writer = coverage_writer @correlation_id = nil @skippable_tests = Set.new @total_tests_count = 0 @skipped_tests_count = 0 @mutex = Mutex.new Datadog.logger.debug("TestOptimisation initialized with enabled: #{@enabled}") end |
Instance Attribute Details
#code_coverage_enabled ⇒ Object (readonly)
Returns the value of attribute code_coverage_enabled.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def code_coverage_enabled @code_coverage_enabled end |
#correlation_id ⇒ Object (readonly)
Returns the value of attribute correlation_id.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def correlation_id @correlation_id end |
#enabled ⇒ Object (readonly)
Returns the value of attribute enabled.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def enabled @enabled end |
#skippable_tests ⇒ Object (readonly)
Returns the value of attribute skippable_tests.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def skippable_tests @skippable_tests end |
#skippable_tests_fetch_error ⇒ Object (readonly)
Returns the value of attribute skippable_tests_fetch_error.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def skippable_tests_fetch_error @skippable_tests_fetch_error end |
#skipped_tests_count ⇒ Object (readonly)
Returns the value of attribute skipped_tests_count.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def skipped_tests_count @skipped_tests_count end |
#test_skipping_enabled ⇒ Object (readonly)
Returns the value of attribute test_skipping_enabled.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def test_skipping_enabled @test_skipping_enabled end |
#total_tests_count ⇒ Object (readonly)
Returns the value of attribute total_tests_count.
28 29 30 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 28 def total_tests_count @total_tests_count end |
Instance Method Details
#code_coverage? ⇒ Boolean
100 101 102 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 100 def code_coverage? @code_coverage_enabled end |
#configure(remote_configuration, test_session) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 71 def configure(remote_configuration, test_session) return unless enabled? Datadog.logger.debug("Configuring TestOptimisation with remote configuration: #{remote_configuration}") @enabled = remote_configuration.itr_enabled? @test_skipping_enabled = @enabled && remote_configuration.tests_skipping_enabled? @code_coverage_enabled = @enabled && remote_configuration.code_coverage_enabled? test_session.set_tag(Ext::Test::TAG_ITR_TEST_SKIPPING_ENABLED, @test_skipping_enabled) test_session.set_tag(Ext::Test::TAG_CODE_COVERAGE_ENABLED, @code_coverage_enabled) # we skip tests, not suites test_session.set_tag(Ext::Test::TAG_ITR_TEST_SKIPPING_TYPE, Ext::Test::ITR_TEST_SKIPPING_MODE) load_datadog_cov! if @code_coverage_enabled Datadog.logger.debug("Configured TestOptimisation with enabled: #{@enabled}, skipping_tests: #{@test_skipping_enabled}, code_coverage: #{@code_coverage_enabled}") fetch_skippable_tests(test_session) end |
#count_skipped_test(test) ⇒ Object
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 165 def count_skipped_test(test) @mutex.synchronize do @total_tests_count += 1 return if !test.skipped? || !test.skipped_by_itr? if forked? Datadog.logger.warn { "ITR is not supported for forking test runners yet" } return end Telemetry.itr_skipped @skipped_tests_count += 1 end end |
#enabled? ⇒ Boolean
92 93 94 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 92 def enabled? @enabled end |
#mark_if_skippable(test) ⇒ Object
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 147 def mark_if_skippable(test) return if !enabled? || !skipping_tests? datadog_test_id = Utils::TestRun.datadog_test_id(test.name, test.test_suite_name, test.parameters) if @skippable_tests.include?(datadog_test_id) if forked? Datadog.logger.warn { "Intelligent test runner is not supported for forking test runners yet" } return end test.set_tag(Ext::Test::TAG_ITR_SKIPPED_BY_ITR, "true") Datadog.logger.debug { "Marked test as skippable: #{datadog_test_id}" } else Datadog.logger.debug { "Test is not skippable: #{datadog_test_id}" } end end |
#shutdown! ⇒ Object
196 197 198 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 196 def shutdown! @coverage_writer&.stop end |
#skippable_tests_count ⇒ Object
192 193 194 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 192 def skippable_tests_count skippable_tests.count end |
#skipping_tests? ⇒ Boolean
96 97 98 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 96 def skipping_tests? @test_skipping_enabled end |
#start_coverage(test) ⇒ Object
104 105 106 107 108 109 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 104 def start_coverage(test) return if !enabled? || !code_coverage? Telemetry.code_coverage_started(test) coverage_collector&.start end |
#stop_coverage(test) ⇒ Object
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 111 def stop_coverage(test) return if !enabled? || !code_coverage? Telemetry.code_coverage_finished(test) coverage = coverage_collector&.stop # if test was skipped, we discard coverage data return if test.skipped? if coverage.nil? || coverage.empty? Telemetry.code_coverage_is_empty return end test_source_file = test.source_file # cucumber's gherkin files are not covered by the code coverage collector ensure_test_source_covered(test_source_file, coverage) unless test_source_file.nil? Telemetry.code_coverage_files(coverage.size) event = Coverage::Event.new( test_id: test.id.to_s, test_suite_id: test.test_suite_id.to_s, test_session_id: test.test_session_id.to_s, coverage: coverage ) Datadog.logger.debug { "Writing coverage event \n #{event.pretty_inspect}" } write(event) event end |
#write_test_session_tags(test_session) ⇒ Object
182 183 184 185 186 187 188 189 190 |
# File 'lib/datadog/ci/test_optimisation/component.rb', line 182 def (test_session) return if !enabled? Datadog.logger.debug { "Finished optimised session with test skipping enabled: #{@test_skipping_enabled}" } Datadog.logger.debug { "#{@skipped_tests_count} tests were skipped" } test_session.set_tag(Ext::Test::TAG_ITR_TESTS_SKIPPED, @skipped_tests_count.positive?.to_s) test_session.set_tag(Ext::Test::TAG_ITR_TEST_SKIPPING_COUNT, @skipped_tests_count) end |