2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe TreeHelper do
|
2022-08-13 15:12:31 +05:30
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
2018-03-17 18:26:18 +05:30
|
|
|
let(:repository) { project.repository }
|
2018-12-13 13:39:08 +05:30
|
|
|
let(:sha) { 'c1c67abbaf91f624347bb3ae96eabe3a1b742478' }
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
describe '#commit_in_single_accessible_branch' do
|
|
|
|
it 'escapes HTML from the branch name' do
|
|
|
|
helper.instance_variable_set(:@branch_name, "<script>alert('escape me!');</script>")
|
|
|
|
escaped_branch_name = '<script>alert('escape me!');</script>'
|
|
|
|
|
|
|
|
expect(helper.commit_in_single_accessible_branch).to include(escaped_branch_name)
|
|
|
|
end
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
describe '#vue_file_list_data' do
|
|
|
|
it 'returns a list of attributes related to the project' do
|
|
|
|
expect(helper.vue_file_list_data(project, sha)).to include(
|
|
|
|
project_path: project.full_path,
|
|
|
|
project_short_path: project.path,
|
2020-11-24 15:15:51 +05:30
|
|
|
ref: sha,
|
|
|
|
escaped_ref: sha,
|
2020-07-28 23:09:34 +05:30
|
|
|
full_name: project.name_with_namespace
|
|
|
|
)
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
describe '#web_ide_button_data' do
|
|
|
|
let(:blob) { project.repository.blob_at('refs/heads/master', @path) }
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
let_it_be(:user_preferences_gitpod_path) { '/-/profile/preferences#user_gitpod_enabled' }
|
|
|
|
let_it_be(:user_profile_enable_gitpod_path) { '/-/profile?user%5Bgitpod_enabled%5D=true' }
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
before do
|
2021-01-03 14:25:43 +05:30
|
|
|
@path = ''
|
|
|
|
@project = project
|
|
|
|
@ref = sha
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
allow(helper).to receive_messages(
|
|
|
|
current_user: nil,
|
|
|
|
can_collaborate_with_project?: true,
|
|
|
|
can?: true,
|
|
|
|
user_preferences_gitpod_path: user_preferences_gitpod_path,
|
|
|
|
user_profile_enable_gitpod_path: user_profile_enable_gitpod_path
|
|
|
|
)
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
subject { helper.web_ide_button_data(blob: blob) }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
it 'returns a list of attributes related to the project' do
|
|
|
|
expect(subject).to include(
|
2021-01-03 14:25:43 +05:30
|
|
|
project_path: project.full_path,
|
|
|
|
ref: sha,
|
|
|
|
|
|
|
|
is_fork: false,
|
2020-11-24 15:15:51 +05:30
|
|
|
needs_to_fork: false,
|
2021-01-03 14:25:43 +05:30
|
|
|
gitpod_enabled: false,
|
|
|
|
is_blob: false,
|
|
|
|
|
|
|
|
show_edit_button: false,
|
2020-11-24 15:15:51 +05:30
|
|
|
show_web_ide_button: true,
|
|
|
|
show_gitpod_button: false,
|
2022-05-07 20:08:51 +05:30
|
|
|
show_pipeline_editor_button: false,
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
edit_url: '',
|
|
|
|
web_ide_url: "/-/ide/project/#{project.full_path}/edit/#{sha}",
|
2022-05-07 20:08:51 +05:30
|
|
|
pipeline_editor_url: "/#{project.full_path}/-/ci/editor?branch_name=#{@ref}",
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
gitpod_url: '',
|
|
|
|
user_preferences_gitpod_path: user_preferences_gitpod_path,
|
|
|
|
user_profile_enable_gitpod_path: user_profile_enable_gitpod_path
|
2020-11-24 15:15:51 +05:30
|
|
|
)
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
context 'a blob is passed' do
|
|
|
|
before do
|
|
|
|
@path = 'README.md'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns edit url and webide url for the blob' do
|
|
|
|
expect(subject).to include(
|
|
|
|
show_edit_button: true,
|
|
|
|
edit_url: "/#{project.full_path}/-/edit/#{sha}/#{@path}",
|
|
|
|
web_ide_url: "/-/ide/project/#{project.full_path}/edit/#{sha}/-/#{@path}"
|
|
|
|
)
|
|
|
|
end
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
it 'does not load blob from repository again' do
|
|
|
|
blob
|
|
|
|
|
|
|
|
expect(repository).not_to receive(:blob_at)
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'nil blob is passed' do
|
|
|
|
let(:blob) { nil }
|
|
|
|
|
|
|
|
it 'does not load blob from repository' do
|
|
|
|
expect(repository).not_to receive(:blob_at)
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
context 'user does not have write access but a personal fork exists' do
|
|
|
|
include ProjectForksHelper
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
let(:project) { create(:project, :repository) }
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:forked_project) { create(:project, :repository, namespace: user.namespace) }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_guest(user)
|
|
|
|
fork_project(project, nil, target_project: forked_project)
|
|
|
|
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'includes forked project path as project_path' do
|
|
|
|
expect(subject).to include(
|
|
|
|
project_path: forked_project.full_path,
|
|
|
|
is_fork: true,
|
|
|
|
needs_to_fork: false,
|
|
|
|
show_edit_button: false,
|
|
|
|
web_ide_url: "/-/ide/project/#{forked_project.full_path}/edit/#{sha}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'a blob is passed' do
|
|
|
|
before do
|
|
|
|
@path = 'README.md'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns edit url and web ide for the blob in the fork' do
|
|
|
|
expect(subject).to include(
|
|
|
|
is_blob: true,
|
|
|
|
show_edit_button: true,
|
|
|
|
# edit urls are automatically redirected to the fork
|
|
|
|
edit_url: "/#{project.full_path}/-/edit/#{sha}/#{@path}",
|
|
|
|
web_ide_url: "/-/ide/project/#{forked_project.full_path}/edit/#{sha}/-/#{@path}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for archived project' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:can_collaborate_with_project?).and_return(false)
|
|
|
|
allow(helper).to receive(:can?).and_return(false)
|
|
|
|
|
|
|
|
project.update!(archived: true)
|
|
|
|
|
|
|
|
@path = 'README.md'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show any buttons' do
|
2020-11-24 15:15:51 +05:30
|
|
|
expect(subject).to include(
|
2021-01-03 14:25:43 +05:30
|
|
|
is_blob: true,
|
|
|
|
show_edit_button: false,
|
|
|
|
show_web_ide_button: false,
|
|
|
|
show_gitpod_button: false
|
2020-07-28 23:09:34 +05:30
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user has write access' do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'includes original project path as project_path' do
|
2020-11-24 15:15:51 +05:30
|
|
|
expect(subject).to include(
|
2021-01-03 14:25:43 +05:30
|
|
|
project_path: project.full_path,
|
|
|
|
|
|
|
|
is_fork: false,
|
|
|
|
needs_to_fork: false,
|
|
|
|
|
|
|
|
show_edit_button: false,
|
|
|
|
web_ide_url: "/-/ide/project/#{project.full_path}/edit/#{sha}"
|
2020-11-24 15:15:51 +05:30
|
|
|
)
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
context 'a blob is passed' do
|
|
|
|
before do
|
|
|
|
@path = 'README.md'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns edit url and web ide for the blob in the fork' do
|
|
|
|
expect(subject).to include(
|
|
|
|
is_blob: true,
|
|
|
|
show_edit_button: true,
|
|
|
|
edit_url: "/#{project.full_path}/-/edit/#{sha}/#{@path}",
|
|
|
|
web_ide_url: "/-/ide/project/#{project.full_path}/edit/#{sha}/-/#{@path}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
context 'gitpod settings is enabled' do
|
2020-11-24 15:15:51 +05:30
|
|
|
before do
|
|
|
|
allow(Gitlab::CurrentSettings)
|
|
|
|
.to receive(:gitpod_enabled)
|
|
|
|
.and_return(true)
|
|
|
|
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has show_gitpod_button: true' do
|
|
|
|
expect(subject).to include(
|
|
|
|
show_gitpod_button: true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has gitpod_enabled: true when user has enabled gitpod' do
|
|
|
|
user.gitpod_enabled = true
|
|
|
|
|
|
|
|
expect(subject).to include(
|
|
|
|
gitpod_enabled: true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has gitpod_enabled: false when user has not enabled gitpod' do
|
|
|
|
user.gitpod_enabled = false
|
|
|
|
|
|
|
|
expect(subject).to include(
|
|
|
|
gitpod_enabled: false
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has show_gitpod_button: false when web ide button is not shown' do
|
|
|
|
allow(helper).to receive(:can_collaborate_with_project?).and_return(false)
|
|
|
|
allow(helper).to receive(:can?).and_return(false)
|
|
|
|
|
|
|
|
expect(subject).to include(
|
|
|
|
show_web_ide_button: false,
|
|
|
|
show_gitpod_button: false
|
2020-07-28 23:09:34 +05:30
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
describe '.patch_branch_name' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { helper.patch_branch_name('master') }
|
|
|
|
|
|
|
|
it 'returns a patch branch name' do
|
|
|
|
freeze_time do
|
|
|
|
epoch = Time.now.strftime('%s%L').last(5)
|
|
|
|
|
|
|
|
expect(subject).to eq "#{user.username}-master-patch-#{epoch}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without a current_user' do
|
|
|
|
let(:user) { nil }
|
|
|
|
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(subject).to be nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|