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
700078e8
Commit
700078e8
authored
Aug 06, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename unspecified and undefined CI config nodes
parent
6c704fd9
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
103 additions
and
64 deletions
+103
-64
lib/gitlab/ci/config/node/factory.rb
lib/gitlab/ci/config/node/factory.rb
+4
-4
lib/gitlab/ci/config/node/undefined.rb
lib/gitlab/ci/config/node/undefined.rb
+23
-4
lib/gitlab/ci/config/node/unspecified.rb
lib/gitlab/ci/config/node/unspecified.rb
+19
-0
spec/lib/gitlab/ci/config/node/factory_spec.rb
spec/lib/gitlab/ci/config/node/factory_spec.rb
+2
-1
spec/lib/gitlab/ci/config/node/global_spec.rb
spec/lib/gitlab/ci/config/node/global_spec.rb
+2
-2
spec/lib/gitlab/ci/config/node/null_spec.rb
spec/lib/gitlab/ci/config/node/null_spec.rb
+0
-41
spec/lib/gitlab/ci/config/node/undefined_spec.rb
spec/lib/gitlab/ci/config/node/undefined_spec.rb
+21
-12
spec/lib/gitlab/ci/config/node/unspecified_spec.rb
spec/lib/gitlab/ci/config/node/unspecified_spec.rb
+32
-0
No files found.
lib/gitlab/ci/config/node/factory.rb
View file @
700078e8
...
@@ -37,8 +37,8 @@ module Gitlab
...
@@ -37,8 +37,8 @@ module Gitlab
# See issue #18775.
# See issue #18775.
#
#
if
@value
.
nil?
if
@value
.
nil?
Node
::
Un
defin
ed
.
new
(
Node
::
Un
specifi
ed
.
new
(
fabricate_un
defin
ed
fabricate_un
specifi
ed
)
)
else
else
fabricate
(
@node
,
@value
)
fabricate
(
@node
,
@value
)
...
@@ -47,13 +47,13 @@ module Gitlab
...
@@ -47,13 +47,13 @@ module Gitlab
private
private
def
fabricate_un
defin
ed
def
fabricate_un
specifi
ed
##
##
# If node has a default value we fabricate concrete node
# If node has a default value we fabricate concrete node
# with default value.
# with default value.
#
#
if
@node
.
default
.
nil?
if
@node
.
default
.
nil?
fabricate
(
Node
::
Null
)
fabricate
(
Node
::
Undefined
)
else
else
fabricate
(
@node
,
@node
.
default
)
fabricate
(
@node
,
@node
.
default
)
end
end
...
...
lib/gitlab/ci/config/node/undefined.rb
View file @
700078e8
...
@@ -3,15 +3,34 @@ module Gitlab
...
@@ -3,15 +3,34 @@ module Gitlab
class
Config
class
Config
module
Node
module
Node
##
##
# This class represents an un
specified entry
node.
# This class represents an un
defined
node.
#
#
# It decorates original entry adding method that indicates it is
# Implements the Null Object pattern.
# unspecified.
#
#
class
Undefined
<
SimpleDelegator
class
Undefined
<
Entry
def
initialize
(
*
)
super
(
nil
)
end
def
value
nil
end
def
valid?
true
end
def
errors
[]
end
def
specified?
def
specified?
false
false
end
end
def
relevant?
false
end
end
end
end
end
end
end
...
...
lib/gitlab/ci/config/node/
null
.rb
→
lib/gitlab/ci/config/node/
unspecified
.rb
View file @
700078e8
...
@@ -3,30 +3,15 @@ module Gitlab
...
@@ -3,30 +3,15 @@ module Gitlab
class
Config
class
Config
module
Node
module
Node
##
##
# This class represents an un
defined
node.
# This class represents an un
specified entry
node.
#
#
# Implements the Null Object pattern.
# It decorates original entry adding method that indicates it is
# unspecified.
#
#
class
Null
<
Entry
class
Unspecified
<
SimpleDelegator
def
value
nil
end
def
valid?
true
end
def
errors
[]
end
def
specified?
def
specified?
false
false
end
end
def
relevant?
false
end
end
end
end
end
end
end
...
...
spec/lib/gitlab/ci/config/node/factory_spec.rb
View file @
700078e8
...
@@ -65,7 +65,8 @@ describe Gitlab::Ci::Config::Node::Factory do
...
@@ -65,7 +65,8 @@ describe Gitlab::Ci::Config::Node::Factory do
.
value
(
nil
)
.
value
(
nil
)
.
create!
.
create!
expect
(
entry
).
to
be_an_instance_of
Gitlab
::
Ci
::
Config
::
Node
::
Undefined
expect
(
entry
)
.
to
be_an_instance_of
Gitlab
::
Ci
::
Config
::
Node
::
Unspecified
end
end
end
end
...
...
spec/lib/gitlab/ci/config/node/global_spec.rb
View file @
700078e8
...
@@ -156,9 +156,9 @@ describe Gitlab::Ci::Config::Node::Global do
...
@@ -156,9 +156,9 @@ describe Gitlab::Ci::Config::Node::Global do
expect
(
global
.
descendants
.
count
).
to
eq
8
expect
(
global
.
descendants
.
count
).
to
eq
8
end
end
it
'contains un
defin
ed nodes'
do
it
'contains un
specifi
ed nodes'
do
expect
(
global
.
descendants
.
first
)
expect
(
global
.
descendants
.
first
)
.
to
be_an_instance_of
Gitlab
::
Ci
::
Config
::
Node
::
Un
defin
ed
.
to
be_an_instance_of
Gitlab
::
Ci
::
Config
::
Node
::
Un
specifi
ed
end
end
end
end
...
...
spec/lib/gitlab/ci/config/node/null_spec.rb
deleted
100644 → 0
View file @
6c704fd9
require
'spec_helper'
describe
Gitlab
::
Ci
::
Config
::
Node
::
Null
do
let
(
:null
)
{
described_class
.
new
(
nil
)
}
describe
'#leaf?'
do
it
'is leaf node'
do
expect
(
null
).
to
be_leaf
end
end
describe
'#valid?'
do
it
'is always valid'
do
expect
(
null
).
to
be_valid
end
end
describe
'#errors'
do
it
'is does not contain errors'
do
expect
(
null
.
errors
).
to
be_empty
end
end
describe
'#value'
do
it
'returns nil'
do
expect
(
null
.
value
).
to
eq
nil
end
end
describe
'#relevant?'
do
it
'is not relevant'
do
expect
(
null
.
relevant?
).
to
eq
false
end
end
describe
'#specified?'
do
it
'is not defined'
do
expect
(
null
.
specified?
).
to
eq
false
end
end
end
spec/lib/gitlab/ci/config/node/undefined_spec.rb
View file @
700078e8
require
'spec_helper'
require
'spec_helper'
describe
Gitlab
::
Ci
::
Config
::
Node
::
Undefined
do
describe
Gitlab
::
Ci
::
Config
::
Node
::
Undefined
do
let
(
:undefined
)
{
described_class
.
new
(
entry
)
}
let
(
:entry
)
{
described_class
.
new
}
let
(
:entry
)
{
spy
(
'Entry'
)
}
describe
'#leaf?'
do
it
'is leaf node'
do
expect
(
entry
).
to
be_leaf
end
end
describe
'#valid?'
do
describe
'#valid?'
do
it
'
delegates method to entry
'
do
it
'
is always valid
'
do
expect
(
undefined
.
valid
).
to
eq
entry
expect
(
entry
).
to
be_valid
end
end
end
end
describe
'#errors'
do
describe
'#errors'
do
it
'
delegates method to entry
'
do
it
'
is does not contain errors
'
do
expect
(
undefined
.
errors
).
to
eq
entr
y
expect
(
entry
.
errors
).
to
be_empt
y
end
end
end
end
describe
'#value'
do
describe
'#value'
do
it
'
delegates method to entry
'
do
it
'
returns nil
'
do
expect
(
undefined
.
value
).
to
eq
entry
expect
(
entry
.
value
).
to
eq
nil
end
end
end
end
describe
'#specified?'
do
describe
'#relevant?'
do
it
'is always false'
do
it
'is not relevant'
do
allow
(
entry
).
to
receive
(
:specified?
).
and_return
(
true
)
expect
(
entry
.
relevant?
).
to
eq
false
end
end
expect
(
undefined
.
specified?
).
to
be
false
describe
'#specified?'
do
it
'is not defined'
do
expect
(
entry
.
specified?
).
to
eq
false
end
end
end
end
end
end
spec/lib/gitlab/ci/config/node/unspecified_spec.rb
0 → 100644
View file @
700078e8
require
'spec_helper'
describe
Gitlab
::
Ci
::
Config
::
Node
::
Unspecified
do
let
(
:unspecified
)
{
described_class
.
new
(
entry
)
}
let
(
:entry
)
{
spy
(
'Entry'
)
}
describe
'#valid?'
do
it
'delegates method to entry'
do
expect
(
unspecified
.
valid?
).
to
eq
entry
end
end
describe
'#errors'
do
it
'delegates method to entry'
do
expect
(
unspecified
.
errors
).
to
eq
entry
end
end
describe
'#value'
do
it
'delegates method to entry'
do
expect
(
unspecified
.
value
).
to
eq
entry
end
end
describe
'#specified?'
do
it
'is always false'
do
allow
(
entry
).
to
receive
(
:specified?
).
and_return
(
true
)
expect
(
unspecified
.
specified?
).
to
be
false
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