2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe ::Packages::Maven::PackageFinder do
|
2021-03-08 18:12:59 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:group) { create(:group) }
|
|
|
|
let_it_be(:project) { create(:project, namespace: group) }
|
2021-06-08 01:23:25 +05:30
|
|
|
let_it_be_with_refind(:package) { create(:maven_package, project: project) }
|
2021-03-08 18:12:59 +05:30
|
|
|
|
|
|
|
let(:param_path) { nil }
|
2021-06-08 01:23:25 +05:30
|
|
|
let(:project_or_group) { nil }
|
2021-04-29 21:17:54 +05:30
|
|
|
let(:param_order_by_package_file) { false }
|
2021-06-08 01:23:25 +05:30
|
|
|
let(:finder) { described_class.new(user, project_or_group, path: param_path, order_by_package_file: param_order_by_package_file) }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_developer(user)
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
describe '#execute!' do
|
|
|
|
subject { finder.execute! }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
shared_examples 'handling valid and invalid paths' do
|
|
|
|
context 'with a valid path' do
|
|
|
|
let(:param_path) { package.maven_metadatum.path }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
it { is_expected.to eq(package) }
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'with an invalid path' do
|
|
|
|
let(:param_path) { 'com/example/my-app/1.0-SNAPSHOT' }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
it 'raises an error' do
|
|
|
|
expect { subject }.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'with an uninstallable package' do
|
|
|
|
let(:param_path) { package.maven_metadatum.path }
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
before do
|
2022-03-02 08:16:31 +05:30
|
|
|
package.update_column(:status, :error)
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
it { expect { subject }.to raise_error(ActiveRecord::RecordNotFound) }
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
end
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'within the project' do
|
|
|
|
let(:project_or_group) { project }
|
|
|
|
|
|
|
|
it_behaves_like 'handling valid and invalid paths'
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'within a group' do
|
|
|
|
let(:project_or_group) { group }
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
it_behaves_like 'handling valid and invalid paths'
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'across all projects' do
|
|
|
|
it 'raises an error' do
|
|
|
|
expect { subject }.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
|
|
|
end
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'versionless maven-metadata.xml package' do
|
|
|
|
let_it_be(:sub_group1) { create(:group, parent: group) }
|
|
|
|
let_it_be(:sub_group2) { create(:group, parent: group) }
|
|
|
|
let_it_be(:project1) { create(:project, group: sub_group1) }
|
|
|
|
let_it_be(:project2) { create(:project, group: sub_group2) }
|
|
|
|
let_it_be(:project3) { create(:project, group: sub_group1) }
|
|
|
|
let_it_be(:package_name) { 'foo' }
|
|
|
|
let_it_be(:package1) { create(:maven_package, project: project1, name: package_name, version: nil) }
|
|
|
|
let_it_be(:package2) { create(:maven_package, project: project2, name: package_name, version: nil) }
|
|
|
|
let_it_be(:package3) { create(:maven_package, project: project3, name: package_name, version: nil) }
|
|
|
|
|
|
|
|
let(:project_or_group) { group }
|
|
|
|
let(:param_path) { package_name }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sub_group1.add_developer(user)
|
|
|
|
sub_group2.add_developer(user)
|
|
|
|
# the package with the most recently published file should be returned
|
|
|
|
create(:package_file, :xml, package: package2)
|
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'without order by package file' do
|
|
|
|
it { is_expected.to eq(package3) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with order by package file' do
|
|
|
|
let(:param_order_by_package_file) { true }
|
|
|
|
|
|
|
|
it { is_expected.to eq(package2) }
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
it 'uses CTE in the query' do
|
|
|
|
sql = described_class.new(user, group, path: package.maven_metadatum.path).send(:packages).to_sql
|
|
|
|
|
|
|
|
expect(sql).to include('WITH "maven_metadata_by_path" AS')
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|