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

import_failure_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8ada156dd70773ca36890adc233b5bf036a079e (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ImportFailure do
  describe 'Scopes' do
    let_it_be(:project) { create(:project) }
    let_it_be(:correlation_id) { 'ABC' }
    let_it_be(:hard_failure) { create(:import_failure, :hard_failure, project: project, correlation_id_value: correlation_id) }
    let_it_be(:soft_failure) { create(:import_failure, :soft_failure, project: project, correlation_id_value: correlation_id) }
    let_it_be(:github_import_failure) { create(:import_failure, :github_import_failure, project: project) }
    let_it_be(:unrelated_failure) { create(:import_failure, project: project) }

    it 'returns failures with external_identifiers' do
      expect(ImportFailure.with_external_identifiers).to match_array([github_import_failure])
    end

    it 'returns failures for the given correlation ID' do
      expect(ImportFailure.failures_by_correlation_id(correlation_id)).to match_array([hard_failure, soft_failure])
    end

    it 'returns hard failures for the given correlation ID' do
      expect(ImportFailure.hard_failures_by_correlation_id(correlation_id)).to eq([hard_failure])
    end

    it 'orders hard failures by newest first' do
      older_failure = hard_failure.dup
      travel_to(1.day.before(hard_failure.created_at)) do
        older_failure.save!

        expect(ImportFailure.hard_failures_by_correlation_id(correlation_id)).to eq([hard_failure, older_failure])
      end
    end
  end

  describe 'Associations' do
    it { is_expected.to belong_to(:project) }
    it { is_expected.to belong_to(:group) }
    it { is_expected.to belong_to(:user) }
  end

  describe 'Validations' do
    let_it_be(:group) { build(:group) }
    let_it_be(:project) { build(:project) }
    let_it_be(:user) { build(:user) }

    context 'has project' do
      before do
        allow(subject).to receive(:project).and_return(project)
      end

      it { is_expected.to validate_absence_of(:group) }
      it { is_expected.to validate_absence_of(:user) }
    end

    context 'has group' do
      before do
        allow(subject).to receive(:group).and_return(group)
      end

      it { is_expected.to validate_absence_of(:project) }
      it { is_expected.to validate_absence_of(:user) }
    end

    context 'has user' do
      before do
        allow(subject).to receive(:user).and_return(user)
      end

      it { is_expected.to validate_absence_of(:project) }
      it { is_expected.to validate_absence_of(:group) }
    end

    describe '#external_identifiers' do
      it { is_expected.to allow_value({ note_id: 234, noteable_id: 345, noteable_type: 'MergeRequest' }).for(:external_identifiers) }
      it { is_expected.not_to allow_value(nil).for(:external_identifiers) }
      it { is_expected.not_to allow_value({ ids: [123] }).for(:external_identifiers) }

      it 'allows up to 3 fields' do
        is_expected.not_to allow_value({
          note_id: 234,
          noteable_id: 345,
          noteable_type: 'MergeRequest',
          object_type: 'pull_request',
          extra_attribute: 'abc'
        }).for(:external_identifiers)
      end
    end
  end
end