summaryrefslogtreecommitdiff
path: root/spec/features/projects/package_files_spec.rb
blob: c5c03396d71df99ace968ea55106ee150818db3a (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'PackageFiles' do
  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let!(:package) { create(:maven_package, project: project) }
  let!(:package_file) { package.package_files.first }

  before do
    sign_in(user)
  end

  context 'user with master role' do
    before do
      project.add_maintainer(user)
    end

    it 'allows direct download by url' do
      visit download_project_package_file_path(project, package_file)

      expect(status_code).to eq(200)
    end

    context 'when package_details_apollo feature flag is off' do
      before do
        stub_feature_flags(package_details_apollo: false)
      end

      it 'renders the download link with the correct url', :js do
        visit project_package_path(project, package)

        download_url = download_project_package_file_path(project, package_file)

        expect(page).to have_link(package_file.file_name, href: download_url)
      end
    end

    it 'does not allow download of package belonging to different project' do
      another_package = create(:maven_package)
      another_file = another_package.package_files.first

      visit download_project_package_file_path(project, another_file)

      expect(status_code).to eq(404)
    end
  end

  it 'does not allow direct download when no access to the project' do
    visit download_project_package_file_path(project, package_file)

    expect(status_code).to eq(404)
  end

  it 'gives 404 when no package file exist' do
    visit download_project_package_file_path(project, non_existing_record_id)

    expect(status_code).to eq(404)
  end
end