191 lines
8 KiB
Ruby
191 lines
8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Gitlab::UrlBuilder do
|
|
subject { described_class }
|
|
|
|
describe '#build' do
|
|
it 'delegates to the class method' do
|
|
expect(subject).to receive(:build).with(:foo, bar: :baz)
|
|
|
|
subject.instance.build(:foo, bar: :baz)
|
|
end
|
|
end
|
|
|
|
describe '.build' do
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
where(:factory, :path_generator) do
|
|
:project | ->(project) { "/#{project.full_path}" }
|
|
:commit | ->(commit) { "/#{commit.project.full_path}/-/commit/#{commit.id}" }
|
|
:issue | ->(issue) { "/#{issue.project.full_path}/-/issues/#{issue.iid}" }
|
|
:merge_request | ->(merge_request) { "/#{merge_request.project.full_path}/-/merge_requests/#{merge_request.iid}" }
|
|
:project_milestone | ->(milestone) { "/#{milestone.project.full_path}/-/milestones/#{milestone.iid}" }
|
|
:project_snippet | ->(snippet) { "/#{snippet.project.full_path}/-/snippets/#{snippet.id}" }
|
|
:project_wiki | ->(wiki) { "/#{wiki.container.full_path}/-/wikis/home" }
|
|
:ci_build | ->(build) { "/#{build.project.full_path}/-/jobs/#{build.id}" }
|
|
:design | ->(design) { "/#{design.project.full_path}/-/design_management/designs/#{design.id}/raw_image" }
|
|
|
|
:group | ->(group) { "/groups/#{group.full_path}" }
|
|
:group_milestone | ->(milestone) { "/groups/#{milestone.group.full_path}/-/milestones/#{milestone.iid}" }
|
|
|
|
:user | ->(user) { "/#{user.full_path}" }
|
|
:personal_snippet | ->(snippet) { "/-/snippets/#{snippet.id}" }
|
|
:wiki_page | ->(wiki_page) { "#{wiki_page.wiki.wiki_base_path}/#{wiki_page.slug}" }
|
|
|
|
:note_on_commit | ->(note) { "/#{note.project.full_path}/-/commit/#{note.commit_id}#note_#{note.id}" }
|
|
:diff_note_on_commit | ->(note) { "/#{note.project.full_path}/-/commit/#{note.commit_id}#note_#{note.id}" }
|
|
:discussion_note_on_commit | ->(note) { "/#{note.project.full_path}/-/commit/#{note.commit_id}#note_#{note.id}" }
|
|
:legacy_diff_note_on_commit | ->(note) { "/#{note.project.full_path}/-/commit/#{note.commit_id}#note_#{note.id}" }
|
|
|
|
:note_on_issue | ->(note) { "/#{note.project.full_path}/-/issues/#{note.noteable.iid}#note_#{note.id}" }
|
|
:discussion_note_on_issue | ->(note) { "/#{note.project.full_path}/-/issues/#{note.noteable.iid}#note_#{note.id}" }
|
|
|
|
:note_on_merge_request | ->(note) { "/#{note.project.full_path}/-/merge_requests/#{note.noteable.iid}#note_#{note.id}" }
|
|
:diff_note_on_merge_request | ->(note) { "/#{note.project.full_path}/-/merge_requests/#{note.noteable.iid}#note_#{note.id}" }
|
|
:discussion_note_on_merge_request | ->(note) { "/#{note.project.full_path}/-/merge_requests/#{note.noteable.iid}#note_#{note.id}" }
|
|
:legacy_diff_note_on_merge_request | ->(note) { "/#{note.project.full_path}/-/merge_requests/#{note.noteable.iid}#note_#{note.id}" }
|
|
|
|
:note_on_project_snippet | ->(note) { "/#{note.project.full_path}/-/snippets/#{note.noteable_id}#note_#{note.id}" }
|
|
:discussion_note_on_project_snippet | ->(note) { "/#{note.project.full_path}/-/snippets/#{note.noteable_id}#note_#{note.id}" }
|
|
:discussion_note_on_personal_snippet | ->(note) { "/-/snippets/#{note.noteable_id}#note_#{note.id}" }
|
|
:note_on_personal_snippet | ->(note) { "/-/snippets/#{note.noteable_id}#note_#{note.id}" }
|
|
end
|
|
|
|
with_them do
|
|
let(:object) { build_stubbed(factory) }
|
|
let(:path) { path_generator.call(object) }
|
|
|
|
it 'returns the full URL' do
|
|
expect(subject.build(object)).to eq("#{Gitlab.config.gitlab.url}#{path}")
|
|
end
|
|
|
|
it 'returns only the path if only_path is given' do
|
|
expect(subject.build(object, only_path: true)).to eq(path)
|
|
end
|
|
end
|
|
|
|
context 'when passing a commit without a project' do
|
|
let(:commit) { build_stubbed(:commit) }
|
|
|
|
it 'returns an empty string' do
|
|
allow(commit).to receive(:project).and_return(nil)
|
|
|
|
expect(subject.build(commit)).to eq('')
|
|
end
|
|
end
|
|
|
|
context 'when passing a commit note without a project' do
|
|
let(:note) { build_stubbed(:note_on_commit) }
|
|
|
|
it 'returns an empty string' do
|
|
allow(note).to receive(:project).and_return(nil)
|
|
|
|
expect(subject.build(note)).to eq('')
|
|
end
|
|
end
|
|
|
|
context 'when passing a Snippet' do
|
|
let_it_be(:personal_snippet) { create(:personal_snippet, :repository) }
|
|
let_it_be(:project_snippet) { create(:project_snippet, :repository) }
|
|
let(:blob) { snippet.blobs.first }
|
|
let(:ref) { blob.repository.root_ref }
|
|
|
|
context 'for a PersonalSnippet' do
|
|
let(:snippet) { personal_snippet }
|
|
|
|
it 'returns a raw snippet URL if requested' do
|
|
url = subject.build(snippet, raw: true)
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/-/snippets/#{snippet.id}/raw"
|
|
end
|
|
|
|
it 'returns a raw snippet blob URL if requested' do
|
|
url = subject.build(snippet, file: blob.path, ref: ref)
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/-/snippets/#{snippet.id}/raw/#{ref}/#{blob.path}"
|
|
end
|
|
end
|
|
|
|
context 'for a ProjectSnippet' do
|
|
let(:snippet) { project_snippet }
|
|
|
|
it 'returns a raw snippet URL if requested' do
|
|
url = subject.build(snippet, raw: true)
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/#{snippet.project.full_path}/-/snippets/#{snippet.id}/raw"
|
|
end
|
|
|
|
it 'returns a raw snippet blob URL if requested' do
|
|
url = subject.build(snippet, file: blob.path, ref: ref)
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/#{snippet.project.full_path}/-/snippets/#{snippet.id}/raw/#{ref}/#{blob.path}"
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when passing a Wiki' do
|
|
let(:wiki) { build_stubbed(:project_wiki) }
|
|
|
|
describe '#wiki_url' do
|
|
it 'uses the default collection action' do
|
|
url = subject.wiki_url(wiki)
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/#{wiki.project.full_path}/-/wikis/home"
|
|
end
|
|
|
|
it 'supports a custom collection action' do
|
|
url = subject.wiki_url(wiki, action: :pages)
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/#{wiki.project.full_path}/-/wikis/pages"
|
|
end
|
|
end
|
|
|
|
describe '#wiki_page_url' do
|
|
it 'uses the default member action' do
|
|
url = subject.wiki_page_url(wiki, 'foo')
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/#{wiki.project.full_path}/-/wikis/foo"
|
|
end
|
|
|
|
it 'supports a custom member action' do
|
|
url = subject.wiki_page_url(wiki, 'foo', action: :edit)
|
|
|
|
expect(url).to eq "#{Gitlab.config.gitlab.url}/#{wiki.project.full_path}/-/wikis/foo/edit"
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when passing a DesignManagement::Design' do
|
|
let(:design) { build_stubbed(:design) }
|
|
|
|
it 'uses the given ref and size in the URL' do
|
|
url = subject.build(design, ref: 'feature', size: 'small')
|
|
|
|
expect(url).to eq "#{Settings.gitlab['url']}/#{design.project.full_path}/-/design_management/designs/#{design.id}/feature/resized_image/small"
|
|
end
|
|
end
|
|
|
|
context 'when passing an unsupported class' do
|
|
let(:object) { Object.new }
|
|
|
|
it 'raises an exception' do
|
|
expect { subject.build(object) }.to raise_error(NotImplementedError)
|
|
end
|
|
end
|
|
|
|
context 'when passing a batch loaded model' do
|
|
let(:project) { build_stubbed(:project) }
|
|
let(:object) do
|
|
BatchLoader.for(:project).batch do |batch, loader|
|
|
batch.each { |_| loader.call(:project, project) }
|
|
end
|
|
end
|
|
|
|
it 'returns the URL for the real object' do
|
|
expect(subject.build(object, only_path: true)).to eq("/#{project.full_path}")
|
|
end
|
|
end
|
|
end
|
|
end
|