55 lines
1.5 KiB
Ruby
55 lines
1.5 KiB
Ruby
# 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
|
|
|
|
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
|
|
|
|
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
|