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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
7cef4f19
Commit
7cef4f19
authored
Jul 18, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve valid keys validation for CI config nodes
parent
24b686eb
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
29 deletions
+28
-29
lib/ci/gitlab_ci_yaml_processor.rb
lib/ci/gitlab_ci_yaml_processor.rb
+0
-9
lib/gitlab/ci/config/node/artifacts.rb
lib/gitlab/ci/config/node/artifacts.rb
+2
-0
lib/gitlab/ci/config/node/cache.rb
lib/gitlab/ci/config/node/cache.rb
+4
-4
lib/gitlab/ci/config/node/validator.rb
lib/gitlab/ci/config/node/validator.rb
+1
-7
lib/gitlab/ci/config/node/validators.rb
lib/gitlab/ci/config/node/validators.rb
+5
-4
spec/lib/gitlab/ci/config/node/artifacts_spec.rb
spec/lib/gitlab/ci/config/node/artifacts_spec.rb
+16
-5
No files found.
lib/ci/gitlab_ci_yaml_processor.rb
View file @
7cef4f19
...
...
@@ -106,7 +106,6 @@ module Ci
validate_job_types!
(
name
,
job
)
validate_job_stage!
(
name
,
job
)
if
job
[
:stage
]
validate_job_artifacts!
(
name
,
job
)
if
job
[
:artifacts
]
validate_job_dependencies!
(
name
,
job
)
if
job
[
:dependencies
]
end
...
...
@@ -142,14 +141,6 @@ module Ci
end
end
def
validate_job_artifacts!
(
name
,
job
)
job
[
:artifacts
].
keys
.
each
do
|
key
|
unless
ALLOWED_ARTIFACTS_KEYS
.
include?
key
raise
ValidationError
,
"
#{
name
}
job: artifacts unknown parameter
#{
key
}
"
end
end
end
def
validate_job_dependencies!
(
name
,
job
)
unless
validate_array_of_strings
(
job
[
:dependencies
])
raise
ValidationError
,
"
#{
name
}
job: dependencies parameter should be an array of strings"
...
...
lib/gitlab/ci/config/node/artifacts.rb
View file @
7cef4f19
...
...
@@ -13,6 +13,8 @@ module Gitlab
validations
do
validates
:config
,
type:
Hash
validates
:config
,
allowed_keys:
%i[name untracked paths when expire_in]
with_options
allow_nil:
true
do
validates
:name
,
type:
String
...
...
lib/gitlab/ci/config/node/cache.rb
View file @
7cef4f19
...
...
@@ -8,6 +8,10 @@ module Gitlab
class
Cache
<
Entry
include
Configurable
validations
do
validates
:config
,
allowed_keys:
%i[key untracked paths]
end
node
:key
,
Node
::
Key
,
description:
'Cache key used to define a cache affinity.'
...
...
@@ -16,10 +20,6 @@ module Gitlab
node
:paths
,
Node
::
Paths
,
description:
'Specify which paths should be cached across builds.'
validations
do
validates
:config
,
allowed_keys:
true
end
end
end
end
...
...
lib/gitlab/ci/config/node/validator.rb
View file @
7cef4f19
...
...
@@ -21,12 +21,6 @@ module Gitlab
'Validator'
end
def
unknown_keys
return
[]
unless
config
.
is_a?
(
Hash
)
config
.
keys
-
@node
.
class
.
nodes
.
keys
end
private
def
location
...
...
@@ -35,7 +29,7 @@ module Gitlab
end
def
key_name
if
key
.
blank?
||
key
.
nil?
if
key
.
blank?
@node
.
class
.
name
.
demodulize
.
underscore
.
humanize
else
key
...
...
lib/gitlab/ci/config/node/validators.rb
View file @
7cef4f19
...
...
@@ -5,10 +5,11 @@ module Gitlab
module
Validators
class
AllowedKeysValidator
<
ActiveModel
::
EachValidator
def
validate_each
(
record
,
attribute
,
value
)
if
record
.
unknown_keys
.
any?
unknown_list
=
record
.
unknown_keys
.
join
(
', '
)
record
.
errors
.
add
(
:config
,
"contains unknown keys:
#{
unknown_list
}
"
)
unknown_keys
=
record
.
config
.
try
(
:keys
).
to_a
-
options
[
:in
]
if
unknown_keys
.
any?
record
.
errors
.
add
(
:config
,
'contains unknown keys: '
+
unknown_keys
.
join
(
', '
))
end
end
end
...
...
spec/lib/gitlab/ci/config/node/artifacts_spec.rb
View file @
7cef4f19
...
...
@@ -21,12 +21,23 @@ describe Gitlab::Ci::Config::Node::Artifacts do
end
context
'when entry value is not correct'
do
let
(
:config
)
{
{
name:
10
}
}
describe
'#errors'
do
it
'saves errors'
do
expect
(
entry
.
errors
)
.
to
include
'artifacts name should be a string'
context
'when value of attribute is invalid'
do
let
(
:config
)
{
{
name:
10
}
}
it
'reports error'
do
expect
(
entry
.
errors
)
.
to
include
'artifacts name should be a string'
end
end
context
'when there is uknown key'
do
let
(
:config
)
{
{
test:
100
}
}
it
'reports error'
do
expect
(
entry
.
errors
)
.
to
include
'artifacts config contains unknown keys: test'
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