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

version_index_spec.rb « composer « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63efa8cae955411f1701fc5763e5592be983691d (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Composer::VersionIndex, feature_category: :package_registry do
  let_it_be(:package_name) { 'sample-project' }
  let_it_be(:json) { { 'name' => package_name } }
  let_it_be(:group) { create(:group) }
  let_it_be(:files) { { 'composer.json' => json.to_json } }
  let_it_be_with_reload(:project) { create(:project, :public, :custom_repo, files: files, group: group) }
  let_it_be(:package1) { create(:composer_package, :with_metadatum, project: project, name: package_name, version: '1.0.0', json: json) }
  let_it_be(:package2) { create(:composer_package, :with_metadatum, project: project, name: package_name, version: '2.0.0', json: json) }

  let(:url) { "http://localhost/#{group.path}/#{project.path}.git" }
  let(:branch) { project.repository.find_branch('master') }
  let(:packages) { [package1, package2] }

  describe '#as_json' do
    let(:index) { described_class.new(packages).as_json }
    let(:ssh_path_prefix) { 'username@localhost:' }

    subject(:package_index) { index['packages'][package_name] }

    before do
      allow(Gitlab.config.gitlab_shell).to receive(:ssh_path_prefix)
        .and_return(ssh_path_prefix)
    end

    shared_examples 'returns the packages json' do
      def expected_json(package)
        {
          'dist' => {
            'reference' => branch.target,
            'shasum' => '',
            'type' => 'zip',
            'url' => "http://localhost/api/v4/projects/#{project.id}/packages/composer/archives/#{package.name}.zip?sha=#{branch.target}"
          },
          'source' => {
            'reference' => branch.target,
            'type' => 'git',
            'url' => url
          },
          'name' => package.name,
          'uid' => package.id,
          'version' => package.version
        }
      end

      it 'returns the packages json' do
        expect(package_index['1.0.0']).to eq(expected_json(package1))
        expect(package_index['2.0.0']).to eq(expected_json(package2))
      end

      context 'with an unordered list of packages' do
        let(:packages) { [package2, package1] }

        it 'returns the packages sorted by version' do
          expect(package_index.keys).to eq ['1.0.0', '2.0.0']
        end
      end
    end

    context 'with a public project' do
      it_behaves_like 'returns the packages json'
    end

    context 'with an internal project' do
      let(:url) { "#{ssh_path_prefix}#{group.path}/#{project.path}.git" }

      before do
        project.update!(visibility: Gitlab::VisibilityLevel::INTERNAL)
      end

      it_behaves_like 'returns the packages json'
    end

    context 'with a private project' do
      let(:url) { "#{ssh_path_prefix}#{group.path}/#{project.path}.git" }

      before do
        project.update!(visibility: Gitlab::VisibilityLevel::PRIVATE)
      end

      it_behaves_like 'returns the packages json'
    end

    context 'with composer_use_ssh_source_urls disabled' do
      before do
        stub_feature_flags(composer_use_ssh_source_urls: false)
      end

      context 'with a public project' do
        it_behaves_like 'returns the packages json'
      end

      context 'with an internal project' do
        before do
          project.update!(visibility: Gitlab::VisibilityLevel::INTERNAL)
        end

        it_behaves_like 'returns the packages json'
      end

      context 'with a private project' do
        before do
          project.update!(visibility: Gitlab::VisibilityLevel::PRIVATE)
        end

        it_behaves_like 'returns the packages json'
      end
    end
  end

  describe '#sha' do
    subject(:sha) { described_class.new(packages).sha }

    it 'returns the json SHA' do
      expect(sha).to match /^[A-Fa-f0-9]{64}$/
    end
  end
end