Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
17258b37
Commit
17258b37
authored
Apr 25, 2018
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raise InvalidRepository error for non-valid git repositories
parent
68b71df6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
5 deletions
+25
-5
lib/gitlab/git/repository.rb
lib/gitlab/git/repository.rb
+7
-4
lib/gitlab/gitaly_client/repository_service.rb
lib/gitlab/gitaly_client/repository_service.rb
+2
-0
spec/lib/gitlab/git/repository_spec.rb
spec/lib/gitlab/git/repository_spec.rb
+16
-1
No files found.
lib/gitlab/git/repository.rb
View file @
17258b37
...
...
@@ -30,6 +30,7 @@ module Gitlab
EMPTY_REPOSITORY_CHECKSUM
=
'0000000000000000000000000000000000000000'
.
freeze
NoRepository
=
Class
.
new
(
StandardError
)
InvalidRepository
=
Class
.
new
(
StandardError
)
InvalidBlobName
=
Class
.
new
(
StandardError
)
InvalidRef
=
Class
.
new
(
StandardError
)
GitError
=
Class
.
new
(
StandardError
)
...
...
@@ -2533,10 +2534,12 @@ module Gitlab
output
,
status
=
run_git
(
args
)
if
status
.
nil?
||
!
status
.
zero?
# Empty repositories return with a non-zero status and an empty output.
return
EMPTY_REPOSITORY_CHECKSUM
if
output
&
.
empty?
# Non-valid git repositories return 128 as the status code and an error output
raise
InvalidRepository
if
status
==
128
&&
output
.
to_s
.
downcase
=~
/not a git repository/
# Empty repositories returns with a non-zero status and an empty output.
raise
ChecksumError
,
output
unless
output
.
blank?
r
aise
ChecksumError
,
output
r
eturn
EMPTY_REPOSITORY_CHECKSUM
end
refs
=
output
.
split
(
"
\n
"
)
...
...
lib/gitlab/gitaly_client/repository_service.rb
View file @
17258b37
...
...
@@ -292,6 +292,8 @@ module Gitlab
request
=
Gitaly
::
CalculateChecksumRequest
.
new
(
repository:
@gitaly_repo
)
response
=
GitalyClient
.
call
(
@storage
,
:repository_service
,
:calculate_checksum
,
request
)
response
.
checksum
.
presence
rescue
GRPC
::
DataLoss
=>
e
raise
Gitlab
::
Git
::
Repository
::
InvalidRepository
.
new
(
e
)
end
def
raw_changes_between
(
from
,
to
)
...
...
spec/lib/gitlab/git/repository_spec.rb
View file @
17258b37
...
...
@@ -2275,7 +2275,22 @@ describe Gitlab::Git::Repository, seed_helper: true do
expect
(
empty_repo
.
checksum
).
to
eq
'0000000000000000000000000000000000000000'
end
it
'raises a no repository exception when there is no repo'
do
it
'raises Gitlab::Git::Repository::InvalidRepository error for non-valid git repo'
do
FileUtils
.
rm_rf
(
File
.
join
(
storage_path
,
'non-valid.git'
))
system
(
git_env
,
*
%W(
#{
Gitlab
.
config
.
git
.
bin_path
}
clone --bare
#{
TEST_REPO_PATH
}
non-valid.git)
,
chdir:
SEED_STORAGE_PATH
,
out:
'/dev/null'
,
err:
'/dev/null'
)
File
.
truncate
(
File
.
join
(
storage_path
,
'non-valid.git/HEAD'
),
0
)
non_valid
=
described_class
.
new
(
'default'
,
'non-valid.git'
,
''
)
expect
{
non_valid
.
checksum
}.
to
raise_error
(
Gitlab
::
Git
::
Repository
::
InvalidRepository
)
end
it
'raises Gitlab::Git::Repository::NoRepository error when there is no repo'
do
broken_repo
=
described_class
.
new
(
'default'
,
'a/path.git'
,
''
)
expect
{
broken_repo
.
checksum
}.
to
raise_error
(
Gitlab
::
Git
::
Repository
::
NoRepository
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment