Fix validation method for Gitlab::GithubImport::PullRequestFormatter

This commit is contained in:
Douglas Barbosa Alexandre 2016-05-10 16:23:59 -05:00
parent 795a7ca8f1
commit ebaa19c162
4 changed files with 22 additions and 5 deletions

View file

@ -15,6 +15,10 @@ module Gitlab
repo.present?
end
def valid?
repo.present?
end
private
def short_id

View file

@ -29,7 +29,7 @@ module Gitlab
end
def valid?
!cross_project?
source_branch.valid? && target_branch.valid? && !cross_project?
end
def source_branch
@ -65,8 +65,7 @@ module Gitlab
end
def cross_project?
source_branch_repo.present? && target_branch_repo.present? &&
source_branch_repo.id != target_branch_repo.id
source_branch_repo.id != target_branch_repo.id
end
def description

View file

@ -54,4 +54,18 @@ describe Gitlab::GithubImport::BranchFormatter, lib: true do
expect(branch.sha).to eq '2e5d3239642f9161dcbbc4b70a211a68e5e45e2b'
end
end
describe '#valid?' do
it 'returns true when repository exists' do
branch = described_class.new(project, double(raw))
expect(branch.valid?).to eq true
end
it 'returns false when repository does not exist' do
branch = described_class.new(project, double(raw.merge(repo: nil)))
expect(branch.valid?).to eq false
end
end
end

View file

@ -173,7 +173,7 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
end
context 'when source repo is a fork' do
let(:source_repo) { double(id: 2, fork: true) }
let(:source_repo) { double(id: 2) }
let(:raw_data) { double(base_data) }
it 'returns false' do
@ -182,7 +182,7 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
end
context 'when target repo is a fork' do
let(:target_repo) { double(id: 2, fork: true) }
let(:target_repo) { double(id: 2) }
let(:raw_data) { double(base_data) }
it 'returns false' do