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
Jérome Perrin
gitlab-ce
Commits
ce641335
Commit
ce641335
authored
Aug 15, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce Gitlab::Utils.now so that it's easier to stub
parent
0ea81ae5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
7 deletions
+15
-7
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+2
-2
app/models/concerns/statuseable.rb
app/models/concerns/statuseable.rb
+1
-1
lib/gitlab/utils.rb
lib/gitlab/utils.rb
+6
-1
spec/models/ci/pipeline_spec.rb
spec/models/ci/pipeline_spec.rb
+6
-3
No files found.
app/models/ci/pipeline.rb
View file @
ce641335
...
...
@@ -48,11 +48,11 @@ module Ci
end
before_transition
[
:created
,
:pending
]
=>
:running
do
|
pipeline
|
pipeline
.
started_at
=
Time
.
now
pipeline
.
started_at
=
Gitlab
::
Utils
.
now
end
before_transition
any
=>
[
:success
,
:failed
,
:canceled
]
do
|
pipeline
|
pipeline
.
finished_at
=
Time
.
now
pipeline
.
finished_at
=
Gitlab
::
Utils
.
now
end
before_transition
do
|
pipeline
|
...
...
app/models/concerns/statuseable.rb
View file @
ce641335
...
...
@@ -87,7 +87,7 @@ module Statuseable
if
started_at
&&
finished_at
finished_at
-
started_at
elsif
started_at
Time
.
now
-
started_at
Gitlab
::
Utils
.
now
-
started_at
end
end
end
lib/gitlab/utils.rb
View file @
ce641335
...
...
@@ -7,11 +7,16 @@ module Gitlab
# @param cmd [Array<String>]
# @return [Boolean]
def
system_silent
(
cmd
)
Popen
::
popen
(
cmd
).
last
.
zero?
Popen
.
popen
(
cmd
).
last
.
zero?
end
def
force_utf8
(
str
)
str
.
force_encoding
(
Encoding
::
UTF_8
)
end
# The same as Time.now but using this would make it easier to test
def
now
Time
.
now
end
end
end
spec/models/ci/pipeline_spec.rb
View file @
ce641335
...
...
@@ -129,12 +129,15 @@ describe Ci::Pipeline, models: true do
describe
'#duration'
do
before
do
build
.
skip
build2
.
skip
allow
(
Gitlab
::
Utils
).
to
receive
(
:now
).
and_return
(
current
-
120
,
current
)
pipeline
.
run
pipeline
.
succeed
end
it
'matches sum of builds duration'
do
expect
(
pipeline
.
reload
.
duration
).
to
eq
(
build
.
duration
+
build2
.
duration
)
expect
(
pipeline
.
reload
.
duration
).
to
eq
(
120
)
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