f23b1cb453
Replace MR access checks with use of MergeRequestsFinder Split from !2024 to partially solve https://gitlab.com/gitlab-org/gitlab-ce/issues/23867 ⚠️ - Potentially untested 💣 - No test coverage 🚥 - Test coverage of some sort exists (a test failed when error raised) 🚦 - Test coverage of return value (a test failed when nil used) ✅ - Permissions check tested - [x] 💣 app/finders/notes_finder.rb:17 - [x] ⚠️ app/views/layouts/nav/_project.html.haml:80 [`.count`] - [x] 💣 app/controllers/concerns/creates_commit.rb:84 - [x] 🚥 app/controllers/projects/commits_controller.rb:24 - [x] 🚥 app/controllers/projects/compare_controller.rb:56 - [x] 🚦 app/controllers/projects/discussions_controller.rb:29 - [x] ✅ app/controllers/projects/todos_controller.rb:27 - [x] 🚦 app/models/commit.rb:268 - [x] ✅ lib/gitlab/search_results.rb:71 - [x] https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2024/diffs#d1c10892daedb4d4dd3d4b12b6d071091eea83df_267_266 Memoize ` merged_merge_request(current_user)` - [x] https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2024/diffs#d1c10892daedb4d4dd3d4b12b6d071091eea83df_248_247 Expected side effect for `merged_merge_request!`, consider `skip_authorization: true`. - [x] https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2024/diffs#d1c10892daedb4d4dd3d4b12b6d071091eea83df_269_269 Scary use of unchecked `merged_merge_request?` See merge request !2033
161 lines
4.6 KiB
Ruby
161 lines
4.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe CommitRange, models: true do
|
|
describe 'modules' do
|
|
subject { described_class }
|
|
|
|
it { is_expected.to include_module(Referable) }
|
|
end
|
|
|
|
let!(:project) { create(:project, :public) }
|
|
let!(:commit1) { project.commit("HEAD~2") }
|
|
let!(:commit2) { project.commit }
|
|
|
|
let(:sha_from) { commit1.short_id }
|
|
let(:sha_to) { commit2.short_id }
|
|
|
|
let(:full_sha_from) { commit1.id }
|
|
let(:full_sha_to) { commit2.id }
|
|
|
|
let(:range) { described_class.new("#{sha_from}...#{sha_to}", project) }
|
|
let(:range2) { described_class.new("#{sha_from}..#{sha_to}", project) }
|
|
|
|
it 'raises ArgumentError when given an invalid range string' do
|
|
expect { described_class.new("Foo", project) }.to raise_error(ArgumentError)
|
|
end
|
|
|
|
describe '#initialize' do
|
|
it 'does not modify strings in-place' do
|
|
input = "#{sha_from}...#{sha_to} "
|
|
|
|
described_class.new(input, project)
|
|
|
|
expect(input).to eq("#{sha_from}...#{sha_to} ")
|
|
end
|
|
end
|
|
|
|
describe '#to_s' do
|
|
it 'is correct for three-dot syntax' do
|
|
expect(range.to_s).to eq "#{full_sha_from}...#{full_sha_to}"
|
|
end
|
|
|
|
it 'is correct for two-dot syntax' do
|
|
expect(range2.to_s).to eq "#{full_sha_from}..#{full_sha_to}"
|
|
end
|
|
end
|
|
|
|
describe '#to_reference' do
|
|
let(:cross) { create(:empty_project, namespace: project.namespace) }
|
|
|
|
it 'returns a String reference to the object' do
|
|
expect(range.to_reference).to eq "#{full_sha_from}...#{full_sha_to}"
|
|
end
|
|
|
|
it 'returns a String reference to the object' do
|
|
expect(range2.to_reference).to eq "#{full_sha_from}..#{full_sha_to}"
|
|
end
|
|
|
|
it 'supports a cross-project reference' do
|
|
expect(range.to_reference(cross)).to eq "#{project.path}@#{full_sha_from}...#{full_sha_to}"
|
|
end
|
|
end
|
|
|
|
describe '#reference_link_text' do
|
|
let(:cross) { create(:empty_project, namespace: project.namespace) }
|
|
|
|
it 'returns a String reference to the object' do
|
|
expect(range.reference_link_text).to eq "#{sha_from}...#{sha_to}"
|
|
end
|
|
|
|
it 'returns a String reference to the object' do
|
|
expect(range2.reference_link_text).to eq "#{sha_from}..#{sha_to}"
|
|
end
|
|
|
|
it 'supports a cross-project reference' do
|
|
expect(range.reference_link_text(cross)).to eq "#{project.path}@#{sha_from}...#{sha_to}"
|
|
end
|
|
end
|
|
|
|
describe '#to_param' do
|
|
it 'includes the correct keys' do
|
|
expect(range.to_param.keys).to eq %i(from to)
|
|
end
|
|
|
|
it 'includes the correct values for a three-dot range' do
|
|
expect(range.to_param).to eq({ from: full_sha_from, to: full_sha_to })
|
|
end
|
|
|
|
it 'includes the correct values for a two-dot range' do
|
|
expect(range2.to_param).to eq({ from: full_sha_from + '^', to: full_sha_to })
|
|
end
|
|
end
|
|
|
|
describe '#exclude_start?' do
|
|
it 'is false for three-dot ranges' do
|
|
expect(range.exclude_start?).to eq false
|
|
end
|
|
|
|
it 'is true for two-dot ranges' do
|
|
expect(range2.exclude_start?).to eq true
|
|
end
|
|
end
|
|
|
|
describe '#valid_commits?' do
|
|
context 'with a valid repo' do
|
|
before do
|
|
expect(project).to receive(:valid_repo?).and_return(true)
|
|
end
|
|
|
|
it 'is false when `sha_from` is invalid' do
|
|
expect(project).to receive(:commit).with(sha_from).and_return(nil)
|
|
expect(project).to receive(:commit).with(sha_to).and_call_original
|
|
|
|
expect(range).not_to be_valid_commits
|
|
end
|
|
|
|
it 'is false when `sha_to` is invalid' do
|
|
expect(project).to receive(:commit).with(sha_from).and_call_original
|
|
expect(project).to receive(:commit).with(sha_to).and_return(nil)
|
|
|
|
expect(range).not_to be_valid_commits
|
|
end
|
|
|
|
it 'is true when both `sha_from` and `sha_to` are valid' do
|
|
expect(range).to be_valid_commits
|
|
end
|
|
end
|
|
|
|
context 'without a valid repo' do
|
|
before do
|
|
expect(project).to receive(:valid_repo?).and_return(false)
|
|
end
|
|
|
|
it 'returns false' do
|
|
expect(range).not_to be_valid_commits
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#has_been_reverted?' do
|
|
let(:issue) { create(:issue) }
|
|
let(:user) { issue.author }
|
|
|
|
it 'returns true if the commit has been reverted' do
|
|
create(:note_on_issue,
|
|
noteable: issue,
|
|
system: true,
|
|
note: commit1.revert_description(user),
|
|
project: issue.project)
|
|
|
|
expect_any_instance_of(Commit).to receive(:reverts_commit?).
|
|
with(commit1, user).
|
|
and_return(true)
|
|
|
|
expect(commit1.has_been_reverted?(user, issue)).to eq(true)
|
|
end
|
|
|
|
it 'returns false a commit has not been reverted' do
|
|
expect(commit1.has_been_reverted?(user, issue)).to eq(false)
|
|
end
|
|
end
|
|
end
|