summaryrefslogtreecommitdiff
path: root/spec/serializers/analytics_stage_serializer_spec.rb
blob: 5b05c2f2ef3395392442512bdcc3fc4da49f0431 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
require 'spec_helper'

describe AnalyticsStageSerializer do
  subject do
    described_class.new.represent(resource)
  end

  let(:resource) do
    Gitlab::CycleAnalytics::CodeStage.new(project: double, options: {})
  end

  before do
    allow_any_instance_of(Gitlab::CycleAnalytics::BaseStage).to receive(:median).and_return(1.12)
    allow_any_instance_of(Gitlab::CycleAnalytics::BaseEventFetcher).to receive(:event_result).and_return({})
  end

  it 'generates payload for single object' do
    expect(subject).to be_kind_of Hash
  end

  it 'contains important elements of AnalyticsStage' do
    expect(subject).to include(:title, :description, :value)
  end

  context 'when median is equal 0' do
    before do
      allow_any_instance_of(Gitlab::CycleAnalytics::BaseStage).to receive(:median).and_return(0)
    end

    it 'sets the value to nil' do
      expect(subject.fetch(:value)).to be_nil
    end
  end

  context 'when median is below 1' do
    before do
      allow_any_instance_of(Gitlab::CycleAnalytics::BaseStage).to receive(:median).and_return(0.12)
    end

    it 'sets the value to equal to median' do
      expect(subject.fetch(:value)).to eq('less than a minute')
    end
  end

  context 'when median is above 1' do
    before do
      allow_any_instance_of(Gitlab::CycleAnalytics::BaseStage).to receive(:median).and_return(60.12)
    end

    it 'sets the value to equal to median' do
      expect(subject.fetch(:value)).to eq('1 minute')
    end
  end
end