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
7977a20b
Commit
7977a20b
authored
Oct 19, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend error message in case of HTTP errors in `include`
parent
d9780bc0
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
23 deletions
+65
-23
lib/gitlab/ci/config/external/file/base.rb
lib/gitlab/ci/config/external/file/base.rb
+9
-5
lib/gitlab/ci/config/external/file/local.rb
lib/gitlab/ci/config/external/file/local.rb
+0
-2
lib/gitlab/ci/config/external/file/remote.rb
lib/gitlab/ci/config/external/file/remote.rb
+19
-13
spec/lib/gitlab/ci/config/external/file/remote_spec.rb
spec/lib/gitlab/ci/config/external/file/remote_spec.rb
+37
-3
No files found.
lib/gitlab/ci/config/external/file/base.rb
View file @
7977a20b
...
...
@@ -17,9 +17,7 @@ module Gitlab
@opts
=
opts
@errors
=
[]
validate_location!
validate_content!
validate_hash!
validate!
end
def
invalid_extension?
...
...
@@ -46,6 +44,12 @@ module Gitlab
protected
def
validate!
validate_location!
validate_content!
if
errors
.
none?
validate_hash!
if
errors
.
none?
end
def
validate_location!
if
invalid_extension?
errors
.
push
(
"Included file `
#{
location
}
` does not have YAML extension!"
)
...
...
@@ -53,13 +57,13 @@ module Gitlab
end
def
validate_content!
if
errors
.
none?
&&
content
.
blank?
if
content
.
blank?
errors
.
push
(
"Included file `
#{
location
}
` is empty or does not exist!"
)
end
end
def
validate_hash!
if
errors
.
none?
&&
to_hash
.
blank?
if
to_hash
.
blank?
errors
.
push
(
"Included file `
#{
location
}
` does not have valid YAML syntax!"
)
end
end
...
...
lib/gitlab/ci/config/external/file/local.rb
View file @
7977a20b
...
...
@@ -24,8 +24,6 @@ module Gitlab
private
def
validate_content!
return
if
errors
.
any?
if
content
.
nil?
errors
.
push
(
"Local file `
#{
location
}
` does not exist!"
)
elsif
content
.
blank?
...
...
lib/gitlab/ci/config/external/file/remote.rb
View file @
7977a20b
...
...
@@ -23,19 +23,25 @@ module Gitlab
end
def
fetch_remote_content
Gitlab
::
HTTP
.
get
(
location
)
begin
response
=
Gitlab
::
HTTP
.
get
(
location
)
rescue
SocketError
errors
.
push
(
"Remote file `
#{
location
}
` could not be fetched because of a socket error!"
)
nil
rescue
Timeout
::
Error
errors
.
push
(
"Remote file `
#{
location
}
` could not be fetched because of a timeout error!"
)
nil
rescue
Gitlab
::
HTTP
::
Error
errors
.
push
(
"Remote file `
#{
location
}
` could not be fetched because of a HTTP error!"
)
nil
errors
.
push
(
"Remote file `
#{
location
}
` could not be fetched because of HTTP error!"
)
rescue
Gitlab
::
HTTP
::
BlockedUrlError
errors
.
push
(
"Remote file `
#{
location
}
` could not be fetched because the URL is blocked!"
)
nil
end
if
response
&
.
code
.
to_i
>=
400
errors
.
push
<<~
ERROR
Remote file `
#{
location
}
` could not be fetched because of HTTP code `
#{
response
.
code
}
` error!
ERROR
end
response
.
to_s
if
errors
.
none?
end
end
end
...
...
spec/lib/gitlab/ci/config/external/file/remote_spec.rb
View file @
7977a20b
...
...
@@ -105,10 +105,44 @@ describe Gitlab::Ci::Config::External::File::Remote do
end
describe
"#error_message"
do
subject
{
remote_file
.
error_message
}
context
'when remote file location is not valid'
do
let
(
:location
)
{
'not-valid://gitlab.com/gitlab-org/gitlab-ce/blob/1234/.gitlab-ci-1.yml'
}
it
'should return an error message'
do
expect
(
remote_file
.
error_message
).
to
eq
(
"Remote file `
#{
location
}
` does not have a valid address!"
)
it
'returns an error message describing invalid address'
do
expect
(
subject
).
to
match
/does not have a valid address!/
end
end
context
'when timeout error has been raised'
do
before
do
WebMock
.
stub_request
(
:get
,
location
).
to_timeout
end
it
'should returns error message about a timeout'
do
expect
(
subject
).
to
match
/could not be fetched because of a timeout error!/
end
end
context
'when HTTP error has been raised'
do
before
do
WebMock
.
stub_request
(
:get
,
location
).
to_raise
(
Gitlab
::
HTTP
::
Error
)
end
it
'should returns error message about a HTTP error'
do
expect
(
subject
).
to
match
/could not be fetched because of HTTP error!/
end
end
context
'when response has 404 status'
do
before
do
WebMock
.
stub_request
(
:get
,
location
).
to_return
(
body:
remote_file_content
,
status:
404
)
end
it
'should returns error message about a timeout'
do
expect
(
subject
).
to
match
/could not be fetched because of HTTP code `404` error!/
end
end
end
end
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