summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/github_import/issuable_finder_spec.rb
blob: 3afd006109b240610bdc921d3645494d4a3ebfe5 (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
91
92
93
94
95
96
97
98
99
100
101
102
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::IssuableFinder, :clean_gitlab_redis_cache do
  let(:project) { double(:project, id: 4, group: nil) }
  let(:issue) do
    double(:issue, issuable_type: MergeRequest, iid: 1)
  end

  let(:finder) { described_class.new(project, issue) }

  describe '#database_id' do
    it 'returns nil when no cache is in place' do
      expect(finder.database_id).to be_nil
    end

    it 'returns the ID of an issuable when the cache is in place' do
      finder.cache_database_id(10)

      expect(finder.database_id).to eq(10)
    end

    it 'raises TypeError when the object is not supported' do
      finder = described_class.new(project, double(:issue))

      expect { finder.database_id }.to raise_error(TypeError)
    end

    context 'when group is present' do
      context 'when github_importer_single_endpoint_notes_import feature flag is enabled' do
        it 'reads cache value with longer timeout' do
          project = create(:project, import_url: 'http://t0ken@github.com/user/repo.git')
          group = create(:group, projects: [project])

          stub_feature_flags(github_importer_single_endpoint_notes_import: group)

          expect(Gitlab::Cache::Import::Caching)
            .to receive(:read)
            .with(anything, timeout: Gitlab::Cache::Import::Caching::LONGER_TIMEOUT)

          described_class.new(project, issue).database_id
        end
      end

      context 'when github_importer_single_endpoint_notes_import feature flag is disabled' do
        it 'reads cache value with default timeout' do
          project = double(:project, id: 4, group: create(:group))

          stub_feature_flags(github_importer_single_endpoint_notes_import: false)

          expect(Gitlab::Cache::Import::Caching)
            .to receive(:read)
            .with(anything, timeout: Gitlab::Cache::Import::Caching::TIMEOUT)

          described_class.new(project, issue).database_id
        end
      end
    end
  end

  describe '#cache_database_id' do
    it 'caches the ID of a database row' do
      expect(Gitlab::Cache::Import::Caching)
        .to receive(:write)
        .with('github-import/issuable-finder/4/MergeRequest/1', 10, timeout: 86400)

      finder.cache_database_id(10)
    end

    context 'when group is present' do
      context 'when github_importer_single_endpoint_notes_import feature flag is enabled' do
        it 'caches value with longer timeout' do
          project = create(:project, import_url: 'http://t0ken@github.com/user/repo.git')
          group = create(:group, projects: [project])

          stub_feature_flags(github_importer_single_endpoint_notes_import: group)

          expect(Gitlab::Cache::Import::Caching)
            .to receive(:write)
            .with(anything, anything, timeout: Gitlab::Cache::Import::Caching::LONGER_TIMEOUT)

          described_class.new(project, issue).cache_database_id(10)
        end
      end

      context 'when github_importer_single_endpoint_notes_import feature flag is disabled' do
        it 'caches value with default timeout' do
          project = double(:project, id: 4, group: create(:group))

          stub_feature_flags(github_importer_single_endpoint_notes_import: false)

          expect(Gitlab::Cache::Import::Caching)
            .to receive(:write)
            .with(anything, anything, timeout: Gitlab::Cache::Import::Caching::TIMEOUT)

          described_class.new(project, issue).cache_database_id(10)
        end
      end
    end
  end
end