Welcome to mirror list, hosted at ThFree Co, Russian Federation.

legacy_metric_timing_decorator_spec.rb « service_ping « usage « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46592379b3d55e3a92e3cc3214168019057ad20a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Usage::ServicePing::LegacyMetricTimingDecorator do
  using RSpec::Parameterized::TableSyntax

  let(:duration) { 123 }

  where(:metric_value, :metric_class) do
    1       | Integer
    "value" | String
    true    | TrueClass
    false   | FalseClass
    nil     | NilClass
  end

  with_them do
    let(:decorated_object) { described_class.new(metric_value, duration) }

    it 'exposes a duration with the correct value' do
      expect(decorated_object.duration).to eq(duration)
    end

    it 'imitates wrapped class', :aggregate_failures do
      expect(decorated_object).to eq metric_value
      expect(decorated_object.class).to eq metric_class
      expect(decorated_object.is_a?(metric_class)).to be_truthy
      # rubocop:disable Style/ClassCheck
      expect(decorated_object.kind_of?(metric_class)).to be_truthy
      # rubocop:enable Style/ClassCheck
      expect({ metric: decorated_object }.to_json).to eql({ metric: metric_value }.to_json)
    end
  end
end