BigW Consortium Gitlab

analytics_build_entity_spec.rb 2.14 KB
Newer Older
1 2 3 4 5 6 7
require 'spec_helper'

describe AnalyticsBuildEntity do
  let(:entity) do
    described_class.new(build, request: double)
  end

8
  context 'build with an author' do
9
    let(:user) { create(:user) }
10 11 12
    let(:started_at) { 2.hours.ago }
    let(:finished_at) { 1.hour.ago }
    let(:build) { create(:ci_build, author: user, started_at: started_at, finished_at: finished_at) }
13 14 15

    subject { entity.as_json }

16 17 18 19 20 21 22 23
    before do
      Timecop.freeze
    end

    after do
      Timecop.return
    end

24 25
    it 'contains the URL' do
      expect(subject).to include(:url)
26 27
    end

28 29 30 31
    it 'contains the author' do
      expect(subject).to include(:author)
    end

32 33 34 35
    it 'does not contain sensitive information' do
      expect(subject).not_to include(/token/)
      expect(subject).not_to include(/variables/)
    end
36 37 38 39 40 41

    it 'contains the right started at' do
      expect(subject[:date]).to eq('about 2 hours ago')
    end

    it 'contains the duration' do
James Lopez committed
42
      expect(subject[:total_time]).to eq(hours: 1 )
43
    end
44 45 46 47 48 49 50 51 52

    context 'no started at or finished at date' do
      let(:started_at) { nil }
      let(:finished_at) { nil }

      it 'does not blow up' do
        expect{ subject[:date] }.not_to raise_error
      end

53 54 55 56 57 58 59
      it 'shows the right message' do
        expect(subject[:date]).to eq('Not started')
      end

      it 'shows the right total time' do
        expect(subject[:total_time]).to eq({})
      end
60 61 62 63 64 65 66 67
    end

    context 'no started at date' do
      let(:started_at) { nil }

      it 'does not blow up' do
        expect{ subject[:date] }.not_to raise_error
      end
68 69 70 71 72 73 74 75

      it 'shows the right message' do
        expect(subject[:date]).to eq('Not started')
      end

      it 'shows the right total time' do
        expect(subject[:total_time]).to eq({})
      end
76 77 78 79 80 81 82 83
    end

    context 'no finished at date' do
      let(:finished_at) { nil }

      it 'does not blow up' do
        expect{ subject[:date] }.not_to raise_error
      end
84 85 86 87 88 89

      it 'shows the right message' do
        expect(subject[:date]).to eq('about 2 hours ago')
      end

      it 'shows the right total time' do
James Lopez committed
90
        expect(subject[:total_time]).to eq({ hours: 2 })
91
      end
92
    end
93 94
  end
end