Merge branch '25848-fix-git-rev-list-env-parsing' into 'master'

Reject blank environment variables in Gitlab::Git::RevList

Closes #25848

See merge request !8189
This commit is contained in:
Sean McGivern 2016-12-20 10:14:20 +00:00
commit deb74f73d9
2 changed files with 9 additions and 2 deletions

View File

@ -22,7 +22,7 @@ module Gitlab
def valid?
environment_variables.all? do |(name, value)|
value.start_with?(project.repository.path_to_repo)
value.to_s.start_with?(project.repository.path_to_repo)
end
end
@ -35,7 +35,7 @@ module Gitlab
end
def environment_variables
@environment_variables ||= env.slice(*ALLOWED_VARIABLES)
@environment_variables ||= env.slice(*ALLOWED_VARIABLES).compact
end
end
end

View File

@ -26,6 +26,13 @@ describe Gitlab::Git::RevList, lib: true do
expect(rev_list).not_to be_valid
end
it "ignores nil values" do
env = { var => nil }
rev_list = described_class.new('oldrev', 'newrev', project: project, env: env)
expect(rev_list).to be_valid
end
end
end
end