Class: Datadog::CI::TestVisibility::Serializers::TestV2

Inherits:
TestV1
  • Object
show all
Defined in:
lib/datadog/ci/test_visibility/serializers/test_v2.rb

Constant Summary collapse

CONTENT_FIELDS =
(%w[test_session_id test_module_id test_suite_id] + TestV1::CONTENT_FIELDS).freeze
CONTENT_FIELDS_WITH_ITR_CORRELATION_ID =
(CONTENT_FIELDS + %w[itr_correlation_id]).freeze
CONTENT_MAP_SIZE =
calculate_content_map_size(CONTENT_FIELDS)
CONTENT_MAP_SIZE_WITH_ITR_CORRELATION_ID =
calculate_content_map_size(CONTENT_FIELDS_WITH_ITR_CORRELATION_ID)
REQUIRED_FIELDS =
(%w[test_session_id test_module_id test_suite_id] + TestV1::REQUIRED_FIELDS).freeze

Constants inherited from Base

Base::MAXIMUM_DURATION_NANO, Base::MINIMUM_DURATION_NANO, Base::MINIMUM_TIMESTAMP_NANO

Instance Attribute Summary

Attributes inherited from Base

#meta, #options, #span, #trace

Instance Method Summary collapse

Methods inherited from TestV1

#event_type, #name, #resource

Methods inherited from Base

calculate_content_map_size, #duration, #error, #event_type, #initialize, #metrics, #name, #parent_id, #resource, #runtime_id, #service, #span_id, #span_type, #start, #test_module_id, #test_session_id, #test_suite_id, #to_msgpack, #trace_id, #valid?, #validate!, #validation_errors

Constructor Details

This class inherits a constructor from Datadog::CI::TestVisibility::Serializers::Base

Instance Method Details

#content_fieldsObject



21
22
23
24
25
# File 'lib/datadog/ci/test_visibility/serializers/test_v2.rb', line 21

def content_fields
  return CONTENT_FIELDS if itr_correlation_id.nil?

  CONTENT_FIELDS_WITH_ITR_CORRELATION_ID
end

#content_map_sizeObject



27
28
29
30
31
# File 'lib/datadog/ci/test_visibility/serializers/test_v2.rb', line 27

def content_map_size
  return CONTENT_MAP_SIZE if itr_correlation_id.nil?

  CONTENT_MAP_SIZE_WITH_ITR_CORRELATION_ID
end

#itr_correlation_idObject



37
38
39
# File 'lib/datadog/ci/test_visibility/serializers/test_v2.rb', line 37

def itr_correlation_id
  options[:itr_correlation_id]
end

#versionObject



33
34
35
# File 'lib/datadog/ci/test_visibility/serializers/test_v2.rb', line 33

def version
  2
end