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

stage_event_hash_spec.rb « cycle_analytics « analytics « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffddaf1e1b2db845de236b0cead65a427e1d0a42 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Analytics::CycleAnalytics::StageEventHash, type: :model do
  let(:stage_event_hash) { described_class.create!(hash_sha256: hash_sha256) }
  let(:hash_sha256) { 'does_not_matter' }

  describe 'associations' do
    it { is_expected.to have_many(:cycle_analytics_project_stages) }
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:hash_sha256) }
  end

  describe '.record_id_by_hash_sha256' do
    it 'returns an existing id' do
      id = stage_event_hash.id
      same_id = described_class.record_id_by_hash_sha256(hash_sha256)

      expect(same_id).to eq(id)
    end

    it 'creates a new record' do
      expect do
        described_class.record_id_by_hash_sha256(hash_sha256)
      end.to change { described_class.count }.from(0).to(1)
    end
  end

  describe '.cleanup_if_unused' do
    it 'removes the record' do
      described_class.cleanup_if_unused(stage_event_hash.id)

      expect(described_class.find_by_id(stage_event_hash.id)).to be_nil
    end

    it 'does not remove the record' do
      id = create(:cycle_analytics_project_stage).stage_event_hash_id

      described_class.cleanup_if_unused(id)

      expect(described_class.find_by_id(id)).not_to be_nil
    end
  end
end