debian-mirror-gitlab/spec/helpers/submodule_helper_spec.rb

426 lines
16 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe SubmoduleHelper do
2015-04-26 12:48:37 +05:30
include RepoHelpers
2019-09-30 21:07:59 +05:30
let(:submodule_item) { double(id: 'hash', path: 'rack') }
let(:config) { Gitlab.config.gitlab }
let(:repo) { double }
2020-03-13 15:44:24 +05:30
let(:submodules) { Gitlab::SubmoduleLinks.new(repo) }
before do
allow(repo).to receive(:submodule_links).and_return(submodules)
end
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
shared_examples 'submodule_links' do
2014-09-02 18:07:02 +05:30
context 'submodule on self' do
before do
2015-09-11 14:41:01 +05:30
allow(Gitlab.config.gitlab).to receive(:protocol).and_return('http') # set this just to be sure
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects ssh on standard port' do
2015-09-11 14:41:01 +05:30
allow(Gitlab.config.gitlab_shell).to receive(:ssh_port).and_return(22) # set this just to be sure
allow(Gitlab.config.gitlab_shell).to receive(:ssh_path_prefix).and_return(Settings.send(:build_gitlab_shell_ssh_path_prefix))
2020-04-08 14:13:33 +05:30
stub_url([config.ssh_user, '@', config.host, ':gitlab-org/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2020-04-08 14:13:33 +05:30
end
it 'detects ssh on standard port without a username' do
allow(Gitlab.config.gitlab_shell).to receive(:ssh_port).and_return(22) # set this just to be sure
allow(Gitlab.config.gitlab_shell).to receive(:ssh_user).and_return('')
allow(Gitlab.config.gitlab_shell).to receive(:ssh_path_prefix).and_return(Settings.send(:build_gitlab_shell_ssh_path_prefix))
stub_url([config.host, ':gitlab-org/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects ssh on non-standard port' do
2015-09-11 14:41:01 +05:30
allow(Gitlab.config.gitlab_shell).to receive(:ssh_port).and_return(2222)
allow(Gitlab.config.gitlab_shell).to receive(:ssh_path_prefix).and_return(Settings.send(:build_gitlab_shell_ssh_path_prefix))
2020-04-08 14:13:33 +05:30
stub_url(['ssh://', config.ssh_user, '@', config.host, ':2222/gitlab-org/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2020-04-08 14:13:33 +05:30
end
it 'detects ssh on non-standard port without a username' do
allow(Gitlab.config.gitlab_shell).to receive(:ssh_port).and_return(2222)
allow(Gitlab.config.gitlab_shell).to receive(:ssh_user).and_return('')
allow(Gitlab.config.gitlab_shell).to receive(:ssh_path_prefix).and_return(Settings.send(:build_gitlab_shell_ssh_path_prefix))
stub_url(['ssh://', config.host, ':2222/gitlab-org/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects http on standard port' do
2015-09-11 14:41:01 +05:30
allow(Gitlab.config.gitlab).to receive(:port).and_return(80)
allow(Gitlab.config.gitlab).to receive(:url).and_return(Settings.send(:build_gitlab_url))
2019-12-04 20:38:33 +05:30
stub_url(['http://', config.host, '/gitlab-org/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects http on non-standard port' do
2015-09-11 14:41:01 +05:30
allow(Gitlab.config.gitlab).to receive(:port).and_return(3000)
allow(Gitlab.config.gitlab).to receive(:url).and_return(Settings.send(:build_gitlab_url))
2019-12-04 20:38:33 +05:30
stub_url(['http://', config.host, ':3000/gitlab-org/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'works with relative_url_root' do
2015-09-11 14:41:01 +05:30
allow(Gitlab.config.gitlab).to receive(:port).and_return(80) # set this just to be sure
allow(Gitlab.config.gitlab).to receive(:relative_url_root).and_return('/gitlab/root')
allow(Gitlab.config.gitlab).to receive(:url).and_return(Settings.send(:build_gitlab_url))
2019-12-04 20:38:33 +05:30
stub_url(['http://', config.host, '/gitlab/root/gitlab-org/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
it 'works with subgroups' do
allow(Gitlab.config.gitlab).to receive(:port).and_return(80) # set this just to be sure
allow(Gitlab.config.gitlab).to receive(:relative_url_root).and_return('/gitlab/root')
allow(Gitlab.config.gitlab).to receive(:url).and_return(Settings.send(:build_gitlab_url))
2019-12-04 20:38:33 +05:30
stub_url(['http://', config.host, '/gitlab/root/gitlab-org/sub/gitlab-foss.git'].join(''))
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(namespace_project_path('gitlab-org/sub', 'gitlab-foss'))
expect(subject.tree).to eq(namespace_project_tree_path('gitlab-org/sub', 'gitlab-foss', 'hash'))
expect(subject.compare).to be_nil
end
2017-09-10 17:25:29 +05:30
end
2014-09-02 18:07:02 +05:30
end
2020-04-08 14:13:33 +05:30
context 'submodule on gist.github.com' do
it 'detects ssh' do
stub_url('git@gist.github.com:gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gist.github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gist.github.com/gitlab-org/gitlab-foss/hash')
expect(subject.compare).to be_nil
end
2020-04-08 14:13:33 +05:30
end
it 'detects http' do
stub_url('http://gist.github.com/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gist.github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gist.github.com/gitlab-org/gitlab-foss/hash')
expect(subject.compare).to be_nil
end
2020-04-08 14:13:33 +05:30
end
it 'detects https' do
stub_url('https://gist.github.com/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gist.github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gist.github.com/gitlab-org/gitlab-foss/hash')
expect(subject.compare).to be_nil
end
2020-04-08 14:13:33 +05:30
end
it 'handles urls with no .git on the end' do
stub_url('http://gist.github.com/gitlab-org/gitlab-foss')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gist.github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gist.github.com/gitlab-org/gitlab-foss/hash')
expect(subject.compare).to be_nil
end
2020-04-08 14:13:33 +05:30
end
it 'returns original with non-standard url' do
stub_url('http://gist.github.com/another/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(repo.submodule_url_for)
expect(subject.tree).to be_nil
expect(subject.compare).to be_nil
end
2020-04-08 14:13:33 +05:30
end
end
2014-09-02 18:07:02 +05:30
context 'submodule on github.com' do
2016-09-13 17:45:13 +05:30
it 'detects ssh' do
2019-12-04 20:38:33 +05:30
stub_url('git@github.com:gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://github.com/gitlab-org/gitlab-foss/tree/hash')
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects http' do
2019-12-04 20:38:33 +05:30
stub_url('http://github.com/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://github.com/gitlab-org/gitlab-foss/tree/hash')
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects https' do
2019-12-04 20:38:33 +05:30
stub_url('https://github.com/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://github.com/gitlab-org/gitlab-foss/tree/hash')
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it 'handles urls with no .git on the end' do
2019-12-04 20:38:33 +05:30
stub_url('http://github.com/gitlab-org/gitlab-foss')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://github.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://github.com/gitlab-org/gitlab-foss/tree/hash')
expect(subject.compare).to be_nil
end
2017-08-17 22:00:37 +05:30
end
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
it 'returns original with non-standard url' do
2019-12-04 20:38:33 +05:30
stub_url('http://github.com/another/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(repo.submodule_url_for)
expect(subject.tree).to be_nil
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
end
2017-09-10 17:25:29 +05:30
context 'in-repository submodule' do
let(:group) { create(:group, name: "Master Project", path: "master-project") }
let(:project) { create(:project, group: group) }
it 'in-repository' do
2018-11-08 19:23:39 +05:30
allow(repo).to receive(:project).and_return(project)
2017-09-10 17:25:29 +05:30
stub_url('./')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq("/master-project/#{project.path}")
expect(subject.tree).to eq("/master-project/#{project.path}/-/tree/hash")
expect(subject.compare).to be_nil
end
2017-09-10 17:25:29 +05:30
end
end
2014-09-02 18:07:02 +05:30
context 'submodule on gitlab.com' do
2016-09-13 17:45:13 +05:30
it 'detects ssh' do
2019-12-04 20:38:33 +05:30
stub_url('git@gitlab.com:gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gitlab.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gitlab.com/gitlab-org/gitlab-foss/-/tree/hash')
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects http' do
2019-12-04 20:38:33 +05:30
stub_url('http://gitlab.com/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gitlab.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gitlab.com/gitlab-org/gitlab-foss/-/tree/hash')
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'detects https' do
2019-12-04 20:38:33 +05:30
stub_url('https://gitlab.com/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gitlab.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gitlab.com/gitlab-org/gitlab-foss/-/tree/hash')
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it 'handles urls with no .git on the end' do
2019-12-04 20:38:33 +05:30
stub_url('http://gitlab.com/gitlab-org/gitlab-foss')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gitlab.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gitlab.com/gitlab-org/gitlab-foss/-/tree/hash')
expect(subject.compare).to be_nil
end
2017-08-17 22:00:37 +05:30
end
it 'handles urls with trailing whitespace' do
2019-12-04 20:38:33 +05:30
stub_url('http://gitlab.com/gitlab-org/gitlab-foss.git ')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq('https://gitlab.com/gitlab-org/gitlab-foss')
expect(subject.tree).to eq('https://gitlab.com/gitlab-org/gitlab-foss/-/tree/hash')
expect(subject.compare).to be_nil
end
2017-08-17 22:00:37 +05:30
end
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
it 'returns original with non-standard url' do
2019-12-04 20:38:33 +05:30
stub_url('http://gitlab.com/another/gitlab-org/gitlab-foss.git')
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(repo.submodule_url_for)
expect(subject.tree).to be_nil
expect(subject.compare).to be_nil
end
2014-09-02 18:07:02 +05:30
end
end
context 'submodule on unsupported' do
2017-08-17 22:00:37 +05:30
it 'sanitizes unsupported protocols' do
stub_url('javascript:alert("XSS");')
2020-11-24 15:15:51 +05:30
expect(subject).to be_nil
2017-08-17 22:00:37 +05:30
end
it 'sanitizes unsupported protocols disguised as a repository URL' do
stub_url('javascript:alert("XSS");foo/bar.git')
2020-11-24 15:15:51 +05:30
expect(subject).to be_nil
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
it 'sanitizes invalid URL with extended ASCII' do
stub_url('é')
2020-11-24 15:15:51 +05:30
expect(subject).to be_nil
2018-03-17 18:26:18 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns original' do
2019-12-04 20:38:33 +05:30
stub_url('http://mygitserver.com/gitlab-org/gitlab-foss')
2014-09-02 18:07:02 +05:30
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(subject.web).to eq(repo.submodule_url_for)
expect(subject.tree).to be_nil
expect(subject.compare).to be_nil
end
2015-04-26 12:48:37 +05:30
end
end
context 'submodules with relative links' do
2018-11-20 20:47:30 +05:30
let(:group) { create(:group, name: "top group", path: "top-group") }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, group: group) }
2018-11-20 20:47:30 +05:30
let(:repo) { double(:repo, project: project) }
def expect_relative_link_to_resolve_to(relative_path, expected_path)
2020-03-13 15:44:24 +05:30
stub_url(relative_path)
2019-09-30 21:07:59 +05:30
result = subject
2018-11-20 20:47:30 +05:30
2020-11-24 15:15:51 +05:30
aggregate_failures do
expect(result.web).to eq(expected_path)
expect(result.tree).to eq("#{expected_path}/-/tree/#{submodule_item.id}")
expect(result.compare).to be_nil
end
2018-11-20 20:47:30 +05:30
end
2015-04-26 12:48:37 +05:30
2018-11-20 20:47:30 +05:30
it 'handles project under same group' do
expect_relative_link_to_resolve_to('../test.git', "/#{group.path}/test")
2015-04-26 12:48:37 +05:30
end
2018-11-20 20:47:30 +05:30
it 'handles trailing whitespace' do
expect_relative_link_to_resolve_to('../test.git ', "/#{group.path}/test")
2017-09-10 17:25:29 +05:30
end
2018-11-20 20:47:30 +05:30
it 'handles project under another top group' do
expect_relative_link_to_resolve_to('../../baz/test.git ', "/baz/test")
end
context 'repo path resolves to be located at root (namespace absent)' do
it 'returns nil' do
2020-03-13 15:44:24 +05:30
stub_url('../../test.git')
2018-11-20 20:47:30 +05:30
2019-09-30 21:07:59 +05:30
result = subject
2018-11-20 20:47:30 +05:30
2020-11-24 15:15:51 +05:30
expect(result).to be_nil
2018-11-20 20:47:30 +05:30
end
2015-04-26 12:48:37 +05:30
end
2018-11-20 20:47:30 +05:30
context 'repo path resolves to be located underneath current project path' do
it 'returns nil because it is not possible to have repo nested under another repo' do
2020-03-13 15:44:24 +05:30
stub_url('./test.git')
2018-11-20 20:47:30 +05:30
2019-09-30 21:07:59 +05:30
result = subject
2018-11-20 20:47:30 +05:30
2020-11-24 15:15:51 +05:30
expect(result).to be_nil
2018-11-20 20:47:30 +05:30
end
2015-04-26 12:48:37 +05:30
end
2018-11-20 20:47:30 +05:30
context 'subgroup' do
let(:sub_group) { create(:group, parent: group, name: "sub group", path: "sub-group") }
let(:sub_project) { create(:project, group: sub_group) }
context 'project in sub group' do
let(:project) { sub_project }
it "handles referencing ancestor group's project" do
expect_relative_link_to_resolve_to('../../../top-group/test.git', "/#{group.path}/test")
end
end
it "handles referencing descendent group's project" do
expect_relative_link_to_resolve_to('../sub-group/test.git', "/top-group/sub-group/test")
end
it "handles referencing another top group's project" do
expect_relative_link_to_resolve_to('../../frontend/css/test.git', "/frontend/css/test")
end
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
context 'personal project' do
let(:user) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, namespace: user.namespace) }
2015-09-11 14:41:01 +05:30
2018-11-20 20:47:30 +05:30
it 'handles referencing another personal project' do
expect_relative_link_to_resolve_to('../test.git', "/#{user.username}/test")
2015-09-11 14:41:01 +05:30
end
end
2014-09-02 18:07:02 +05:30
end
2019-09-30 21:07:59 +05:30
context 'unknown submodule' do
before do
# When there is no `.gitmodules` file, or if `.gitmodules` does not
# know the submodule at the specified path,
# `Repository#submodule_url_for` returns `nil`
stub_url(nil)
end
it 'returns no links' do
2020-11-24 15:15:51 +05:30
expect(subject).to be_nil
2019-09-30 21:07:59 +05:30
end
end
end
context 'as view helpers in view context' do
subject { helper.submodule_links(submodule_item) }
before do
self.instance_variable_set(:@repository, repo)
end
it_behaves_like 'submodule_links'
end
context 'as stand-alone module' do
subject { described_class.submodule_links(submodule_item, nil, repo) }
it_behaves_like 'submodule_links'
2014-09-02 18:07:02 +05:30
end
def stub_url(url)
2020-03-13 15:44:24 +05:30
allow(submodules).to receive(:submodule_url_for).and_return(url)
2015-09-11 14:41:01 +05:30
allow(repo).to receive(:submodule_url_for).and_return(url)
2014-09-02 18:07:02 +05:30
end
end