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

package_finder_spec.rb « npm « packages « finders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c9149a5a2dcfc75170d128c443231d4bb9e148b (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe ::Packages::Npm::PackageFinder do
  let_it_be_with_reload(:project) { create(:project) }
  let_it_be_with_refind(:package) { create(:npm_package, project: project) }

  let(:project) { package.project }
  let(:package_name) { package.name }
  let(:last_of_each_version) { true }

  shared_examples 'accepting a namespace for' do |example_name|
    before do
      project.update!(namespace: namespace)
    end

    context 'that is a group' do
      let_it_be(:namespace) { create(:group) }

      it_behaves_like example_name

      context 'within another group' do
        let_it_be(:subgroup) { create(:group, parent: namespace) }

        before do
          project.update!(namespace: subgroup)
        end

        it_behaves_like example_name
      end
    end

    context 'that is a user namespace' do
      let_it_be(:user) { create(:user) }
      let_it_be(:namespace) { user.namespace }

      it_behaves_like example_name
    end
  end

  describe '#execute' do
    subject { finder.execute }

    shared_examples 'finding packages by name' do
      it { is_expected.to eq([package]) }

      context 'with unknown package name' do
        let(:package_name) { 'baz' }

        it { is_expected.to be_empty }
      end

      context 'with an uninstallable package' do
        before do
          package.update_column(:status, :error)
        end

        it { is_expected.to be_empty }
      end
    end

    shared_examples 'handling last_of_each_version' do
      include_context 'last_of_each_version setup context'

      context 'disabled' do
        let(:last_of_each_version) { false }

        it { is_expected.to contain_exactly(package1, package2) }
      end

      context 'enabled' do
        it { is_expected.to contain_exactly(package2) }
      end
    end

    context 'with a project' do
      let(:finder) { described_class.new(package_name, project: project, last_of_each_version: last_of_each_version) }

      it_behaves_like 'finding packages by name'

      it_behaves_like 'handling last_of_each_version'

      context 'set to nil' do
        let(:project) { nil }

        it { is_expected.to be_empty }
      end
    end

    context 'with a namespace' do
      let(:finder) { described_class.new(package_name, namespace: namespace, last_of_each_version: last_of_each_version) }

      it_behaves_like 'accepting a namespace for', 'finding packages by name'

      it_behaves_like 'accepting a namespace for', 'handling last_of_each_version'

      context 'set to nil' do
        let_it_be(:namespace) { nil }

        it { is_expected.to be_empty }
      end
    end
  end

  describe '#find_by_version' do
    let(:version) { package.version }

    subject { finder.find_by_version(version) }

    shared_examples 'finding packages by version' do
      it { is_expected.to eq(package) }

      context 'with unknown version' do
        let(:version) { 'foobar' }

        it { is_expected.to be_nil }
      end
    end

    shared_examples 'handling last_of_each_version' do
      include_context 'last_of_each_version setup context'

      context 'enabled' do
        it { is_expected.to eq(package2) }
      end
    end

    context 'with a project' do
      let(:finder) { described_class.new(package_name, project: project, last_of_each_version: last_of_each_version) }

      it_behaves_like 'finding packages by version'

      it_behaves_like 'handling last_of_each_version'
    end

    context 'with a namespace' do
      let(:finder) { described_class.new(package_name, namespace: namespace, last_of_each_version: last_of_each_version) }

      it_behaves_like 'accepting a namespace for', 'finding packages by version'

      it_behaves_like 'accepting a namespace for', 'handling last_of_each_version'
    end
  end

  describe '#last' do
    subject { finder.last }

    shared_examples 'finding package by last' do
      it { is_expected.to eq(package) }
    end

    shared_examples 'handling last_of_each_version' do
      include_context 'last_of_each_version setup context'

      context 'disabled' do
        let(:last_of_each_version) { false }

        it { is_expected.to eq(package2) }
      end

      context 'enabled' do
        it { is_expected.to eq(package2) }
      end
    end

    context 'with a project' do
      let(:finder) { described_class.new(package_name, project: project, last_of_each_version: last_of_each_version) }

      it_behaves_like 'finding package by last'

      it_behaves_like 'handling last_of_each_version'
    end

    context 'with a namespace' do
      let(:finder) { described_class.new(package_name, namespace: namespace) }

      it_behaves_like 'accepting a namespace for', 'finding package by last'

      it_behaves_like 'accepting a namespace for', 'handling last_of_each_version'

      context 'with duplicate packages' do
        let_it_be(:namespace) { create(:group) }
        let_it_be(:subgroup1) { create(:group, parent: namespace) }
        let_it_be(:subgroup2) { create(:group, parent: namespace) }
        let_it_be(:project2) { create(:project, namespace: subgroup2) }
        let_it_be(:package2) { create(:npm_package, name: package.name, project: project2) }

        before do
          project.update!(namespace: subgroup1)
        end

        # the most recent one is returned
        it { is_expected.to eq(package2) }
      end
    end
  end
end