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
c019585c
Commit
c019585c
authored
Jun 27, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Validate interface only with CI node validator
parent
56e88b8c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
40 deletions
+24
-40
lib/gitlab/ci/config/node/cache.rb
lib/gitlab/ci/config/node/cache.rb
+16
-13
lib/gitlab/ci/config/node/validator.rb
lib/gitlab/ci/config/node/validator.rb
+1
-2
spec/lib/gitlab/ci/config/node/validator_spec.rb
spec/lib/gitlab/ci/config/node/validator_spec.rb
+7
-25
No files found.
lib/gitlab/ci/config/node/cache.rb
View file @
c019585c
...
...
@@ -8,30 +8,33 @@ module Gitlab
class
Cache
<
Entry
include
Configurable
node
:key
,
Key
,
description:
'Cache key used to define a cache affinity.'
node
:untracked
,
Boolean
,
description:
'Cache all untracked files.'
node
:paths
,
Paths
,
description:
'Specify which paths should be cached across builds.'
validations
do
validate
:
allowed_
keys
validate
:keys
def
unknown_keys
return
[]
unless
@node
.
config
.
is_a?
(
Hash
)
@node
.
config
.
keys
-
@node
.
class
.
nodes
.
keys
return
[]
unless
config
.
is_a?
(
Hash
)
config
.
keys
-
allowed_keys
end
def
allowed_
keys
def
keys
if
unknown_keys
.
any?
errors
.
add
(
:config
,
"contains unknown keys
#{
unknown_keys
}
"
)
end
end
end
node
:key
,
Node
::
Key
,
description:
'Cache key used to define a cache affinity.'
node
:untracked
,
Boolean
,
description:
'Cache all untracked files.'
node
:paths
,
Paths
,
description:
'Specify which paths should be cached across builds.'
def
allowed_keys
self
.
class
.
nodes
.
keys
end
end
end
end
...
...
lib/gitlab/ci/config/node/validator.rb
View file @
c019585c
...
...
@@ -8,12 +8,11 @@ module Gitlab
def
initialize
(
node
)
super
(
node
)
@node
=
node
end
def
messages
errors
.
full_messages
.
map
do
|
error
|
"
#{
@node
.
key
}
#{
error
}
"
.
humanize
"
#{
key
}
#{
error
}
"
.
humanize
end
end
...
...
spec/lib/gitlab/ci/config/node/validator_spec.rb
View file @
c019585c
...
...
@@ -5,7 +5,13 @@ describe Gitlab::Ci::Config::Node::Validator do
let
(
:validator_instance
)
{
validator
.
new
(
node
)
}
let
(
:node
)
{
spy
(
'node'
)
}
shared_examples
'delegated validator'
do
describe
'delegated validator'
do
before
do
validator
.
class_eval
do
validates
:test_attribute
,
presence:
true
end
end
context
'when node is valid'
do
before
do
allow
(
node
).
to
receive
(
:test_attribute
).
and_return
(
'valid value'
)
...
...
@@ -40,28 +46,4 @@ describe Gitlab::Ci::Config::Node::Validator do
end
end
end
describe
'attributes validations'
do
before
do
validator
.
class_eval
do
validates
:test_attribute
,
presence:
true
end
end
it_behaves_like
'delegated validator'
end
describe
'interface validations'
do
before
do
validator
.
class_eval
do
validate
do
unless
@node
.
test_attribute
==
'valid value'
errors
.
add
(
:test_attribute
,
'invalid value'
)
end
end
end
end
it_behaves_like
'delegated validator'
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