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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-07-20 15:26:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-20 15:26:25 +0300
commita09983ae35713f5a2bbb100981116d31ce99826e (patch)
tree2ee2af7bd104d57086db360a7e6d8c9d5d43667a /spec/finders/packages/go
parent18c5ab32b738c0b6ecb4d0df3994000482f34bd8 (diff)
Add latest changes from gitlab-org/gitlab@13-2-stable-ee
Diffstat (limited to 'spec/finders/packages/go')
-rw-r--r--spec/finders/packages/go/module_finder_spec.rb71
-rw-r--r--spec/finders/packages/go/version_finder_spec.rb160
2 files changed, 231 insertions, 0 deletions
diff --git a/spec/finders/packages/go/module_finder_spec.rb b/spec/finders/packages/go/module_finder_spec.rb
new file mode 100644
index 00000000000..e5c8827fc8d
--- /dev/null
+++ b/spec/finders/packages/go/module_finder_spec.rb
@@ -0,0 +1,71 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Packages::Go::ModuleFinder do
+ let_it_be(:project) { create :project }
+ let_it_be(:other_project) { create :project }
+ let(:finder) { described_class.new project, module_name }
+
+ shared_examples 'an invalid path' do
+ describe '#module_name' do
+ it 'returns the expected name' do
+ expect(finder.module_name).to eq(expected_name)
+ end
+ end
+
+ describe '#execute' do
+ it 'returns nil' do
+ expect(finder.execute).to be_nil
+ end
+ end
+ end
+
+ describe '#execute' do
+ context 'with module name equal to project name' do
+ let(:module_name) { base_url(project) }
+
+ it 'returns a module with empty path' do
+ mod = finder.execute
+ expect(mod).not_to be_nil
+ expect(mod.path).to eq('')
+ end
+ end
+
+ context 'with module name starting with project name and slash' do
+ let(:module_name) { base_url(project) + '/mod' }
+
+ it 'returns a module with non-empty path' do
+ mod = finder.execute
+ expect(mod).not_to be_nil
+ expect(mod.path).to eq('mod')
+ end
+ end
+
+ context 'with a module name not equal to and not starting with project name' do
+ let(:module_name) { base_url(other_project) }
+
+ it 'returns nil' do
+ expect(finder.execute).to be_nil
+ end
+ end
+ end
+
+ context 'with relative path component' do
+ it_behaves_like 'an invalid path' do
+ let(:module_name) { base_url(project) + '/../xyz' }
+ let(:expected_name) { base_url(project.namespace) + '/xyz' }
+ end
+ end
+
+ context 'with many relative path components' do
+ it_behaves_like 'an invalid path' do
+ let(:module_name) { base_url(project) + ('/..' * 10) + '/xyz' }
+ let(:expected_name) { ('../' * 7) + 'xyz' }
+ end
+ end
+
+ def base_url(project)
+ "#{Settings.build_gitlab_go_url}/#{project.full_path}"
+ end
+end
diff --git a/spec/finders/packages/go/version_finder_spec.rb b/spec/finders/packages/go/version_finder_spec.rb
new file mode 100644
index 00000000000..b67842d1e05
--- /dev/null
+++ b/spec/finders/packages/go/version_finder_spec.rb
@@ -0,0 +1,160 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Packages::Go::VersionFinder do
+ let_it_be(:user) { create :user }
+ let_it_be(:project) { create :project_empty_repo, creator: user, path: 'my-go-lib' }
+
+ let(:finder) { described_class.new mod }
+
+ before :all do
+ create :go_module_commit, :files, project: project, tag: 'v1.0.0', files: { 'README.md' => 'Hi' }
+ create :go_module_commit, :module, project: project, tag: 'v1.0.1'
+ create :go_module_commit, :package, project: project, tag: 'v1.0.2', path: 'pkg'
+ create :go_module_commit, :module, project: project, tag: 'v1.0.3', name: 'mod'
+ create :go_module_commit, :module, project: project, tag: 'v1.0.4', name: 'bad-mod', url: 'example.com/go-lib'
+ create :go_module_commit, :files, project: project, tag: 'c1', files: { 'y.go' => "package a\n" }
+ create :go_module_commit, :module, project: project, tag: 'c2', name: 'v2'
+ create :go_module_commit, :files, project: project, tag: 'v2.0.0', files: { 'v2/x.go' => "package a\n" }
+ end
+
+ before do
+ stub_feature_flags(go_proxy_disable_gomod_validation: false)
+ end
+
+ shared_examples '#execute' do |*expected|
+ it "returns #{expected.empty? ? 'nothing' : expected.join(', ')}" do
+ actual = finder.execute.map { |x| x.name }
+ expect(actual.to_set).to eq(expected.to_set)
+ end
+ end
+
+ shared_examples '#find with an invalid argument' do |message|
+ it "raises an argument exception: #{message}" do
+ expect { finder.find(target) }.to raise_error(ArgumentError, message)
+ end
+ end
+
+ describe '#execute' do
+ context 'for the root module' do
+ let(:mod) { create :go_module, project: project }
+
+ it_behaves_like '#execute', 'v1.0.1', 'v1.0.2', 'v1.0.3', 'v1.0.4'
+ end
+
+ context 'for the package' do
+ let(:mod) { create :go_module, project: project, path: 'pkg' }
+
+ it_behaves_like '#execute'
+ end
+
+ context 'for the submodule' do
+ let(:mod) { create :go_module, project: project, path: 'mod' }
+
+ it_behaves_like '#execute', 'v1.0.3', 'v1.0.4'
+ end
+
+ context 'for the root module v2' do
+ let(:mod) { create :go_module, project: project, path: 'v2' }
+
+ it_behaves_like '#execute', 'v2.0.0'
+ end
+
+ context 'for the bad module' do
+ let(:mod) { create :go_module, project: project, path: 'bad-mod' }
+
+ context 'with gomod checking enabled' do
+ it_behaves_like '#execute'
+ end
+
+ context 'with gomod checking disabled' do
+ before do
+ stub_feature_flags(go_proxy_disable_gomod_validation: true)
+ end
+
+ it_behaves_like '#execute', 'v1.0.4'
+ end
+ end
+ end
+
+ describe '#find' do
+ let(:mod) { create :go_module, project: project }
+
+ context 'with a ref' do
+ it 'returns a ref version' do
+ ref = project.repository.find_branch 'master'
+ v = finder.find(ref)
+ expect(v.type).to eq(:ref)
+ expect(v.ref).to eq(ref)
+ end
+ end
+
+ context 'with a semver tag' do
+ it 'returns a version with a semver' do
+ v = finder.find(project.repository.find_tag('v1.0.0'))
+ expect(v.major).to eq(1)
+ expect(v.minor).to eq(0)
+ expect(v.patch).to eq(0)
+ expect(v.prerelease).to be_nil
+ expect(v.build).to be_nil
+ end
+ end
+
+ context 'with a semver tag string' do
+ it 'returns a version with a semver' do
+ v = finder.find('v1.0.1')
+ expect(v.major).to eq(1)
+ expect(v.minor).to eq(0)
+ expect(v.patch).to eq(1)
+ expect(v.prerelease).to be_nil
+ expect(v.build).to be_nil
+ end
+ end
+
+ context 'with a commit' do
+ it 'retruns a commit version' do
+ v = finder.find(project.repository.head_commit)
+ expect(v.type).to eq(:commit)
+ end
+ end
+
+ context 'with a pseudo-version' do
+ it 'returns a pseudo version' do
+ commit = project.repository.head_commit
+ pseudo = "v0.0.0-#{commit.committed_date.strftime('%Y%m%d%H%M%S')}-#{commit.sha[0..11]}"
+ v = finder.find(pseudo)
+ expect(v.type).to eq(:pseudo)
+ expect(v.commit).to eq(commit)
+ expect(v.name).to eq(pseudo)
+ end
+ end
+
+ context 'with a string that is not a semantic version' do
+ it 'returns nil' do
+ expect(finder.find('not-a-semver')).to be_nil
+ end
+ end
+
+ context 'with a pseudo-version that does not reference a commit' do
+ it_behaves_like '#find with an invalid argument', 'invalid pseudo-version: unknown commit' do
+ let(:commit) { project.repository.head_commit }
+ let(:target) { "v0.0.0-#{commit.committed_date.strftime('%Y%m%d%H%M%S')}-#{'0' * 12}" }
+ end
+ end
+
+ context 'with a pseudo-version with a short sha' do
+ it_behaves_like '#find with an invalid argument', 'invalid pseudo-version: revision is shorter than canonical' do
+ let(:commit) { project.repository.head_commit }
+ let(:target) { "v0.0.0-#{commit.committed_date.strftime('%Y%m%d%H%M%S')}-#{commit.sha[0..10]}" }
+ end
+ end
+
+ context 'with a pseudo-version with an invalid timestamp' do
+ it_behaves_like '#find with an invalid argument', 'invalid pseudo-version: does not match version-control timestamp' do
+ let(:commit) { project.repository.head_commit }
+ let(:target) { "v0.0.0-#{'0' * 14}-#{commit.sha[0..11]}" }
+ end
+ end
+ end
+end