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
42ce775d
Commit
42ce775d
authored
Aug 14, 2017
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'ee-com/master' into ce-to-ee
parents
4ba1a3b8
f7112776
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
49 additions
and
65 deletions
+49
-65
app/views/layouts/nav/_new_profile_sidebar.html.haml
app/views/layouts/nav/_new_profile_sidebar.html.haml
+6
-0
spec/ee/spec/features/boards/sidebar_spec.rb
spec/ee/spec/features/boards/sidebar_spec.rb
+4
-5
spec/lib/gitlab/background_migration/update_authorized_keys_file_since_spec.rb
...round_migration/update_authorized_keys_file_since_spec.rb
+6
-14
spec/migrations/update_authorized_keys_file_spec.rb
spec/migrations/update_authorized_keys_file_spec.rb
+7
-11
spec/models/burndown_spec.rb
spec/models/burndown_spec.rb
+18
-18
spec/models/remote_mirror_spec.rb
spec/models/remote_mirror_spec.rb
+6
-11
spec/workers/repository_update_remote_mirror_worker_spec.rb
spec/workers/repository_update_remote_mirror_worker_spec.rb
+2
-6
No files found.
app/views/layouts/nav/_new_profile_sidebar.html.haml
View file @
42ce775d
...
@@ -85,5 +85,11 @@
...
@@ -85,5 +85,11 @@
=
custom_icon
(
'authentication_log'
)
=
custom_icon
(
'authentication_log'
)
%span
.nav-item-name
%span
.nav-item-name
Authentication log
Authentication log
=
nav_link
(
path:
'profiles#pipeline_quota'
)
do
=
link_to
profile_pipeline_quota_path
,
title:
'Pipeline quota'
do
.nav-icon-container
=
custom_icon
(
'pipeline'
)
%span
Pipeline quota
=
render
'shared/sidebar_toggle_button'
=
render
'shared/sidebar_toggle_button'
spec/ee/spec/features/boards/sidebar_spec.rb
View file @
42ce775d
...
@@ -13,8 +13,11 @@ describe 'Issue Boards', :js do
...
@@ -13,8 +13,11 @@ describe 'Issue Boards', :js do
let!
(
:list
)
{
create
(
:list
,
board:
board
,
label:
development
,
position:
0
)
}
let!
(
:list
)
{
create
(
:list
,
board:
board
,
label:
development
,
position:
0
)
}
let
(
:card
)
{
find
(
'.board:nth-child(2)'
).
first
(
'.card'
)
}
let
(
:card
)
{
find
(
'.board:nth-child(2)'
).
first
(
'.card'
)
}
around
do
|
example
|
Timecop
.
freeze
{
example
.
run
}
end
before
do
before
do
Timecop
.
freeze
stub_licensed_features
(
multiple_issue_assignees:
true
)
stub_licensed_features
(
multiple_issue_assignees:
true
)
project
.
team
<<
[
user
,
:master
]
project
.
team
<<
[
user
,
:master
]
...
@@ -26,10 +29,6 @@ describe 'Issue Boards', :js do
...
@@ -26,10 +29,6 @@ describe 'Issue Boards', :js do
wait_for_requests
wait_for_requests
end
end
after
do
Timecop
.
return
end
context
'assignee'
do
context
'assignee'
do
it
'updates the issues assignee'
do
it
'updates the issues assignee'
do
click_card
(
card
)
click_card
(
card
)
...
...
spec/lib/gitlab/background_migration/update_authorized_keys_file_since_spec.rb
View file @
42ce775d
...
@@ -8,16 +8,12 @@ describe Gitlab::BackgroundMigration::UpdateAuthorizedKeysFileSince do
...
@@ -8,16 +8,12 @@ describe Gitlab::BackgroundMigration::UpdateAuthorizedKeysFileSince do
subject
{
background_migration
.
perform
(
cutoff_datetime
)
}
subject
{
background_migration
.
perform
(
cutoff_datetime
)
}
context
'when an SSH key was created after the cutoff datetime'
do
around
do
|
example
|
before
do
Timecop
.
travel
(
1
.
day
.
from_now
)
{
example
.
run
}
Timecop
.
freeze
end
end
after
do
Timecop
.
return
end
context
'when an SSH key was created after the cutoff datetime'
do
before
do
before
do
Timecop
.
travel
1
.
day
.
from_now
@key
=
create
(
:key
)
@key
=
create
(
:key
)
end
end
...
@@ -38,16 +34,12 @@ describe Gitlab::BackgroundMigration::UpdateAuthorizedKeysFileSince do
...
@@ -38,16 +34,12 @@ describe Gitlab::BackgroundMigration::UpdateAuthorizedKeysFileSince do
subject
{
background_migration
.
add_keys_since
(
cutoff_datetime
)
}
subject
{
background_migration
.
add_keys_since
(
cutoff_datetime
)
}
before
do
around
do
|
example
|
Timecop
.
freeze
Timecop
.
travel
(
1
.
day
.
from_now
)
{
example
.
run
}
end
after
do
Timecop
.
return
end
end
context
'when an SSH key was created after the cutoff datetime'
do
context
'when an SSH key was created after the cutoff datetime'
do
before
do
before
do
Timecop
.
travel
1
.
day
.
from_now
@key
=
create
(
:key
)
@key
=
create
(
:key
)
create
(
:key
)
# other key
create
(
:key
)
# other key
end
end
...
...
spec/migrations/update_authorized_keys_file_spec.rb
View file @
42ce775d
...
@@ -21,20 +21,16 @@ describe UpdateAuthorizedKeysFile, :migration do
...
@@ -21,20 +21,16 @@ describe UpdateAuthorizedKeysFile, :migration do
end
end
context
'there are keys created before and after the cutoff datetime'
do
context
'there are keys created before and after the cutoff datetime'
do
before
do
Timecop
.
freeze
end
after
do
Timecop
.
return
end
before
do
before
do
@cutoff_datetime
=
UpdateAuthorizedKeysFile
::
DATETIME_9_3_0_RELEASED
@cutoff_datetime
=
UpdateAuthorizedKeysFile
::
DATETIME_9_3_0_RELEASED
@keys
=
[]
@keys
=
[]
Timecop
.
travel
(
@cutoff_datetime
-
1
.
day
)
Timecop
.
travel
(
@cutoff_datetime
-
1
.
day
)
do
2
.
times
{
@keys
<<
create
(
:key
)
}
# 2 keys before cutoff
2
.
times
{
@keys
<<
create
(
:key
)
}
# 2 keys before cutoff
Timecop
.
travel
(
@cutoff_datetime
+
1
.
day
)
end
2
.
times
{
@keys
<<
create
(
:key
)
}
# 2 keys after cutoff
Timecop
.
travel
(
@cutoff_datetime
+
1
.
day
)
do
2
.
times
{
@keys
<<
create
(
:key
)
}
# 2 keys after cutoff
end
end
end
it
'adds the keys created after the cutoff datetime to the authorized_keys file'
do
it
'adds the keys created after the cutoff datetime to the authorized_keys file'
do
...
...
spec/models/burndown_spec.rb
View file @
42ce775d
...
@@ -18,15 +18,17 @@ describe Burndown do
...
@@ -18,15 +18,17 @@ describe Burndown do
}
}
end
end
around
do
|
example
|
Timecop
.
travel
(
due_date
)
do
example
.
run
end
end
before
do
before
do
project
.
add_master
(
user
)
project
.
add_master
(
user
)
build_sample
build_sample
end
end
after
do
Timecop
.
return
end
subject
{
described_class
.
new
(
milestone
).
to_json
}
subject
{
described_class
.
new
(
milestone
).
to_json
}
it
"generates an array with date, issue count and weight"
do
it
"generates an array with date, issue count and weight"
do
...
@@ -52,9 +54,9 @@ describe Burndown do
...
@@ -52,9 +54,9 @@ describe Burndown do
end
end
it
"it counts until today if milestone due date > Date.today"
do
it
"it counts until today if milestone due date > Date.today"
do
Timecop
.
travel
(
milestone
.
due_date
-
1
.
day
)
Timecop
.
travel
(
milestone
.
due_date
-
1
.
day
)
do
expect
(
JSON
.
parse
(
subject
).
last
[
0
]).
to
eq
(
Time
.
now
.
strftime
(
"%Y-%m-%d"
))
e
xpect
(
JSON
.
parse
(
subject
).
last
[
0
]).
to
eq
(
Time
.
now
.
strftime
(
"%Y-%m-%d"
))
e
nd
end
end
it
"sets attribute accurate to true"
do
it
"sets attribute accurate to true"
do
...
@@ -104,19 +106,17 @@ describe Burndown do
...
@@ -104,19 +106,17 @@ describe Burndown do
next
if
day
.
even?
next
if
day
.
even?
count
=
day
*
4
count
=
day
*
4
Timecop
.
travel
(
date
)
Timecop
.
travel
(
date
)
do
# Create issues
issues
=
create_list
(
:issue
,
count
,
issue_params
)
# Create issues
# Close issues
issues
=
create_list
(
:issue
,
count
,
issue_params
)
closed
=
issues
.
slice
(
0
..
count
/
2
)
closed
.
each
(
&
:close
)
# Close issues
# Reopen issues
closed
=
issues
.
slice
(
0
..
count
/
2
)
closed
.
slice
(
0
..
count
/
4
).
each
(
&
:reopen
)
closed
.
each
(
&
:close
)
end
# Reopen issues
closed
.
slice
(
0
..
count
/
4
).
each
(
&
:reopen
)
end
end
Timecop
.
travel
(
due_date
)
end
end
end
end
spec/models/remote_mirror_spec.rb
View file @
42ce775d
...
@@ -88,12 +88,8 @@ describe RemoteMirror do
...
@@ -88,12 +88,8 @@ describe RemoteMirror do
context
'#sync'
do
context
'#sync'
do
let
(
:remote_mirror
)
{
create
(
:project
,
:repository
,
:remote_mirror
).
remote_mirrors
.
first
}
let
(
:remote_mirror
)
{
create
(
:project
,
:repository
,
:remote_mirror
).
remote_mirrors
.
first
}
before
do
around
do
|
example
|
Timecop
.
freeze
(
Time
.
now
)
Timecop
.
freeze
{
example
.
run
}
end
after
do
Timecop
.
return
end
end
context
'repository mirrors not licensed'
do
context
'repository mirrors not licensed'
do
...
@@ -145,13 +141,12 @@ describe RemoteMirror do
...
@@ -145,13 +141,12 @@ describe RemoteMirror do
let
(
:remote_mirror
)
{
create
(
:project
,
:repository
,
:remote_mirror
).
remote_mirrors
.
first
}
let
(
:remote_mirror
)
{
create
(
:project
,
:repository
,
:remote_mirror
).
remote_mirrors
.
first
}
let
(
:timestamp
)
{
Time
.
now
-
5
.
minutes
}
let
(
:timestamp
)
{
Time
.
now
-
5
.
minutes
}
before
do
around
do
|
example
|
Timecop
.
freeze
(
Time
.
now
)
Timecop
.
freeze
{
example
.
run
}
remote_mirror
.
update_attributes
(
last_update_started_at:
Time
.
now
)
end
end
after
do
before
do
Timecop
.
return
remote_mirror
.
update_attributes
(
last_update_started_at:
Time
.
now
)
end
end
context
'when remote mirror does not have status failed'
do
context
'when remote mirror does not have status failed'
do
...
...
spec/workers/repository_update_remote_mirror_worker_spec.rb
View file @
42ce775d
...
@@ -6,12 +6,8 @@ describe RepositoryUpdateRemoteMirrorWorker do
...
@@ -6,12 +6,8 @@ describe RepositoryUpdateRemoteMirrorWorker do
let
(
:remote_mirror
)
{
create
(
:project
,
:repository
,
:remote_mirror
).
remote_mirrors
.
first
}
let
(
:remote_mirror
)
{
create
(
:project
,
:repository
,
:remote_mirror
).
remote_mirrors
.
first
}
let
(
:scheduled_time
)
{
Time
.
now
-
5
.
minutes
}
let
(
:scheduled_time
)
{
Time
.
now
-
5
.
minutes
}
before
do
around
do
|
example
|
Timecop
.
freeze
(
Time
.
now
)
Timecop
.
freeze
(
Time
.
now
)
{
example
.
run
}
end
after
do
Timecop
.
return
end
end
describe
'#perform'
do
describe
'#perform'
do
...
...
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