84 lines
2.3 KiB
Ruby
84 lines
2.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Releases::Links::CreateService, feature_category: :release_orchestration do
|
|
let(:service) { described_class.new(release, user, params) }
|
|
let_it_be(:project) { create(:project, :repository) }
|
|
let_it_be(:user) { create(:user) }
|
|
let_it_be(:release) { create(:release, project: project, author: user, tag: 'v1.1.0') }
|
|
|
|
let(:params) { { name: name, url: url, direct_asset_path: direct_asset_path, link_type: link_type } }
|
|
let(:name) { 'link' }
|
|
let(:url) { 'https://example.com' }
|
|
let(:direct_asset_path) { '/path' }
|
|
let(:link_type) { 'other' }
|
|
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
describe '#execute' do
|
|
subject(:execute) { service.execute }
|
|
|
|
let(:link) { subject.payload[:link] }
|
|
|
|
it 'successfully creates a release link' do
|
|
expect { execute }.to change { Releases::Link.count }.by(1)
|
|
|
|
expect(link).to have_attributes(
|
|
name: name,
|
|
url: url,
|
|
filepath: direct_asset_path,
|
|
link_type: link_type
|
|
)
|
|
end
|
|
|
|
context 'when user does not have access to create release link' do
|
|
before do
|
|
project.add_guest(user)
|
|
end
|
|
|
|
it 'returns an error' do
|
|
expect { execute }.not_to change { Releases::Link.count }
|
|
|
|
is_expected.to be_error
|
|
expect(execute.message).to include('Access Denied')
|
|
expect(execute.reason).to eq(:forbidden)
|
|
end
|
|
end
|
|
|
|
context 'when url is invalid' do
|
|
let(:url) { 'not_a_url' }
|
|
|
|
it 'returns an error' do
|
|
expect { execute }.not_to change { Releases::Link.count }
|
|
|
|
is_expected.to be_error
|
|
expect(execute.message[0]).to include('Url is blocked')
|
|
expect(execute.reason).to eq(:bad_request)
|
|
end
|
|
end
|
|
|
|
context 'when both direct_asset_path and filepath are provided' do
|
|
let(:params) { super().merge(filepath: '/filepath') }
|
|
|
|
it 'prefers direct_asset_path' do
|
|
is_expected.to be_success
|
|
|
|
expect(link.filepath).to eq(direct_asset_path)
|
|
end
|
|
end
|
|
|
|
context 'when only filepath is set' do
|
|
let(:params) { super().merge(filepath: '/filepath') }
|
|
let(:direct_asset_path) { nil }
|
|
|
|
it 'uses filepath' do
|
|
is_expected.to be_success
|
|
|
|
expect(link.filepath).to eq('/filepath')
|
|
end
|
|
end
|
|
end
|
|
end
|