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
e8f6e910
Commit
e8f6e910
authored
May 25, 2020
by
Arthur de Lapertosa Lisboa
Committed by
Imre Farkas
May 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add finder for group-level runners
parent
0a066d83
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
413 additions
and
153 deletions
+413
-153
app/controllers/admin/runners_controller.rb
app/controllers/admin/runners_controller.rb
+1
-1
app/finders/admin/runners_finder.rb
app/finders/admin/runners_finder.rb
+0
-71
app/finders/ci/runners_finder.rb
app/finders/ci/runners_finder.rb
+92
-0
app/models/ci/runner.rb
app/models/ci/runner.rb
+11
-0
changelogs/unreleased/add-group-runners-finder.yml
changelogs/unreleased/add-group-runners-finder.yml
+5
-0
spec/finders/admin/runners_finder_spec.rb
spec/finders/admin/runners_finder_spec.rb
+0
-81
spec/finders/ci/runners_finder_spec.rb
spec/finders/ci/runners_finder_spec.rb
+304
-0
No files found.
app/controllers/admin/runners_controller.rb
View file @
e8f6e910
...
...
@@ -4,7 +4,7 @@ class Admin::RunnersController < Admin::ApplicationController
before_action
:runner
,
except:
[
:index
,
:tag_list
]
def
index
finder
=
Admin
::
RunnersFinder
.
new
(
params:
params
)
finder
=
Ci
::
RunnersFinder
.
new
(
current_user:
current_user
,
params:
params
)
@runners
=
finder
.
execute
@active_runners_count
=
Ci
::
Runner
.
online
.
count
@sort
=
finder
.
sort_key
...
...
app/finders/admin/runners_finder.rb
deleted
100644 → 0
View file @
0a066d83
# frozen_string_literal: true
class
Admin::RunnersFinder
<
UnionFinder
NUMBER_OF_RUNNERS_PER_PAGE
=
30
def
initialize
(
params
:)
@params
=
params
end
def
execute
search!
filter_by_status!
filter_by_runner_type!
filter_by_tag_list!
sort!
paginate!
@runners
.
with_tags
end
def
sort_key
if
@params
[
:sort
]
==
'contacted_asc'
'contacted_asc'
else
'created_date'
end
end
private
def
search!
@runners
=
if
@params
[
:search
].
present?
Ci
::
Runner
.
search
(
@params
[
:search
])
else
Ci
::
Runner
.
all
end
end
def
filter_by_status!
filter_by!
(
:status_status
,
Ci
::
Runner
::
AVAILABLE_STATUSES
)
end
def
filter_by_runner_type!
filter_by!
(
:type_type
,
Ci
::
Runner
::
AVAILABLE_TYPES
)
end
def
filter_by_tag_list!
tag_list
=
@params
[
:tag_name
].
presence
if
tag_list
@runners
=
@runners
.
tagged_with
(
tag_list
)
end
end
def
sort!
@runners
=
@runners
.
order_by
(
sort_key
)
end
def
paginate!
@runners
=
@runners
.
page
(
@params
[
:page
]).
per
(
NUMBER_OF_RUNNERS_PER_PAGE
)
end
def
filter_by!
(
scope_name
,
available_scopes
)
scope
=
@params
[
scope_name
]
if
scope
.
present?
&&
available_scopes
.
include?
(
scope
)
@runners
=
@runners
.
public_send
(
scope
)
# rubocop:disable GitlabSecurity/PublicSend
end
end
end
app/finders/ci/runners_finder.rb
0 → 100644
View file @
e8f6e910
# frozen_string_literal: true
module
Ci
class
RunnersFinder
<
UnionFinder
include
Gitlab
::
Allowable
NUMBER_OF_RUNNERS_PER_PAGE
=
30
def
initialize
(
current_user
:,
group:
nil
,
params
:)
@params
=
params
@group
=
group
@current_user
=
current_user
end
def
execute
search!
filter_by_status!
filter_by_runner_type!
filter_by_tag_list!
sort!
paginate!
@runners
.
with_tags
rescue
Gitlab
::
Access
::
AccessDeniedError
Ci
::
Runner
.
none
end
def
sort_key
if
@params
[
:sort
]
==
'contacted_asc'
'contacted_asc'
else
'created_date'
end
end
private
def
search!
@group
?
group_runners
:
all_runners
@runners
=
@runners
.
search
(
@params
[
:search
])
if
@params
[
:search
].
present?
end
def
all_runners
raise
Gitlab
::
Access
::
AccessDeniedError
unless
@current_user
&
.
admin?
@runners
=
Ci
::
Runner
.
all
end
def
group_runners
raise
Gitlab
::
Access
::
AccessDeniedError
unless
can?
(
@current_user
,
:admin_group
,
@group
)
# Getting all runners from the group itself and all its descendants
descentant_projects
=
Project
.
for_group_and_its_subgroups
(
@group
)
@runners
=
Ci
::
Runner
.
belonging_to_group_or_project
(
@group
.
self_and_descendants
,
descentant_projects
)
end
def
filter_by_status!
filter_by!
(
:status_status
,
Ci
::
Runner
::
AVAILABLE_STATUSES
)
end
def
filter_by_runner_type!
filter_by!
(
:type_type
,
Ci
::
Runner
::
AVAILABLE_TYPES
)
end
def
filter_by_tag_list!
tag_list
=
@params
[
:tag_name
].
presence
if
tag_list
@runners
=
@runners
.
tagged_with
(
tag_list
)
end
end
def
sort!
@runners
=
@runners
.
order_by
(
sort_key
)
end
def
paginate!
@runners
=
@runners
.
page
(
@params
[
:page
]).
per
(
NUMBER_OF_RUNNERS_PER_PAGE
)
end
def
filter_by!
(
scope_name
,
available_scopes
)
scope
=
@params
[
scope_name
]
if
scope
.
present?
&&
available_scopes
.
include?
(
scope
)
@runners
=
@runners
.
public_send
(
scope
)
# rubocop:disable GitlabSecurity/PublicSend
end
end
end
end
app/models/ci/runner.rb
View file @
e8f6e910
...
...
@@ -81,6 +81,17 @@ module Ci
joins
(
:runner_namespaces
).
where
(
ci_runner_namespaces:
{
namespace_id:
groups
})
}
scope
:belonging_to_group_or_project
,
->
(
group_id
,
project_id
)
{
groups
=
::
Group
.
where
(
id:
group_id
)
group_runners
=
joins
(
:runner_namespaces
).
where
(
ci_runner_namespaces:
{
namespace_id:
groups
})
project_runners
=
joins
(
:runner_projects
).
where
(
ci_runner_projects:
{
project_id:
project_id
})
union_sql
=
::
Gitlab
::
SQL
::
Union
.
new
([
group_runners
,
project_runners
]).
to_sql
from
(
"(
#{
union_sql
}
)
#{
table_name
}
"
)
}
scope
:belonging_to_parent_group_of_project
,
->
(
project_id
)
{
project_groups
=
::
Group
.
joins
(
:projects
).
where
(
projects:
{
id:
project_id
})
hierarchy_groups
=
Gitlab
::
ObjectHierarchy
.
new
(
project_groups
).
base_and_ancestors
...
...
changelogs/unreleased/add-group-runners-finder.yml
0 → 100644
View file @
e8f6e910
---
title
:
Add finder for group-level runners
merge_request
:
29283
author
:
Arthur de Lapertosa Lisboa
type
:
added
spec/finders/admin/runners_finder_spec.rb
deleted
100644 → 0
View file @
0a066d83
# frozen_string_literal: true
require
'spec_helper'
describe
Admin
::
RunnersFinder
do
describe
'#execute'
do
context
'with empty params'
do
it
'returns all runners'
do
runner1
=
create
:ci_runner
,
active:
true
runner2
=
create
:ci_runner
,
active:
false
expect
(
described_class
.
new
(
params:
{}).
execute
).
to
match_array
[
runner1
,
runner2
]
end
end
context
'filter by search term'
do
it
'calls Ci::Runner.search'
do
expect
(
Ci
::
Runner
).
to
receive
(
:search
).
with
(
'term'
).
and_call_original
described_class
.
new
(
params:
{
search:
'term'
}).
execute
end
end
context
'filter by status'
do
it
'calls the corresponding scope on Ci::Runner'
do
expect
(
Ci
::
Runner
).
to
receive
(
:paused
).
and_call_original
described_class
.
new
(
params:
{
status_status:
'paused'
}).
execute
end
end
context
'filter by runner type'
do
it
'calls the corresponding scope on Ci::Runner'
do
expect
(
Ci
::
Runner
).
to
receive
(
:project_type
).
and_call_original
described_class
.
new
(
params:
{
type_type:
'project_type'
}).
execute
end
end
context
'filter by tag_name'
do
it
'calls the corresponding scope on Ci::Runner'
do
expect
(
Ci
::
Runner
).
to
receive
(
:tagged_with
).
with
(
%w[tag1 tag2]
).
and_call_original
described_class
.
new
(
params:
{
tag_name:
%w[tag1 tag2]
}).
execute
end
end
context
'sort'
do
context
'without sort param'
do
it
'sorts by created_at'
do
runner1
=
create
:ci_runner
,
created_at:
'2018-07-12 07:00'
runner2
=
create
:ci_runner
,
created_at:
'2018-07-12 08:00'
runner3
=
create
:ci_runner
,
created_at:
'2018-07-12 09:00'
expect
(
described_class
.
new
(
params:
{}).
execute
).
to
eq
[
runner3
,
runner2
,
runner1
]
end
end
context
'with sort param'
do
it
'sorts by specified attribute'
do
runner1
=
create
:ci_runner
,
contacted_at:
1
.
minute
.
ago
runner2
=
create
:ci_runner
,
contacted_at:
3
.
minutes
.
ago
runner3
=
create
:ci_runner
,
contacted_at:
2
.
minutes
.
ago
expect
(
described_class
.
new
(
params:
{
sort:
'contacted_asc'
}).
execute
).
to
eq
[
runner2
,
runner3
,
runner1
]
end
end
end
context
'paginate'
do
it
'returns the runners for the specified page'
do
stub_const
(
'Admin::RunnersFinder::NUMBER_OF_RUNNERS_PER_PAGE'
,
1
)
runner1
=
create
:ci_runner
,
created_at:
'2018-07-12 07:00'
runner2
=
create
:ci_runner
,
created_at:
'2018-07-12 08:00'
expect
(
described_class
.
new
(
params:
{
page:
1
}).
execute
).
to
eq
[
runner2
]
expect
(
described_class
.
new
(
params:
{
page:
2
}).
execute
).
to
eq
[
runner1
]
end
end
end
end
spec/finders/ci/runners_finder_spec.rb
0 → 100644
View file @
e8f6e910
# frozen_string_literal: true
require
'spec_helper'
describe
Ci
::
RunnersFinder
do
context
'admin'
do
let_it_be
(
:admin
)
{
create
(
:user
,
:admin
)
}
describe
'#execute'
do
context
'with empty params'
do
it
'returns all runners'
do
runner1
=
create
:ci_runner
,
active:
true
runner2
=
create
:ci_runner
,
active:
false
expect
(
described_class
.
new
(
current_user:
admin
,
params:
{}).
execute
).
to
match_array
[
runner1
,
runner2
]
end
end
context
'filter by search term'
do
it
'calls Ci::Runner.search'
do
expect
(
Ci
::
Runner
).
to
receive
(
:search
).
with
(
'term'
).
and_call_original
described_class
.
new
(
current_user:
admin
,
params:
{
search:
'term'
}).
execute
end
end
context
'filter by status'
do
it
'calls the corresponding scope on Ci::Runner'
do
expect
(
Ci
::
Runner
).
to
receive
(
:paused
).
and_call_original
described_class
.
new
(
current_user:
admin
,
params:
{
status_status:
'paused'
}).
execute
end
end
context
'filter by runner type'
do
it
'calls the corresponding scope on Ci::Runner'
do
expect
(
Ci
::
Runner
).
to
receive
(
:project_type
).
and_call_original
described_class
.
new
(
current_user:
admin
,
params:
{
type_type:
'project_type'
}).
execute
end
end
context
'filter by tag_name'
do
it
'calls the corresponding scope on Ci::Runner'
do
expect
(
Ci
::
Runner
).
to
receive
(
:tagged_with
).
with
(
%w[tag1 tag2]
).
and_call_original
described_class
.
new
(
current_user:
admin
,
params:
{
tag_name:
%w[tag1 tag2]
}).
execute
end
end
context
'sort'
do
context
'without sort param'
do
it
'sorts by created_at'
do
runner1
=
create
:ci_runner
,
created_at:
'2018-07-12 07:00'
runner2
=
create
:ci_runner
,
created_at:
'2018-07-12 08:00'
runner3
=
create
:ci_runner
,
created_at:
'2018-07-12 09:00'
expect
(
described_class
.
new
(
current_user:
admin
,
params:
{}).
execute
).
to
eq
[
runner3
,
runner2
,
runner1
]
end
end
context
'with sort param'
do
it
'sorts by specified attribute'
do
runner1
=
create
:ci_runner
,
contacted_at:
1
.
minute
.
ago
runner2
=
create
:ci_runner
,
contacted_at:
3
.
minutes
.
ago
runner3
=
create
:ci_runner
,
contacted_at:
2
.
minutes
.
ago
expect
(
described_class
.
new
(
current_user:
admin
,
params:
{
sort:
'contacted_asc'
}).
execute
).
to
eq
[
runner2
,
runner3
,
runner1
]
end
end
end
context
'paginate'
do
it
'returns the runners for the specified page'
do
stub_const
(
'Ci::RunnersFinder::NUMBER_OF_RUNNERS_PER_PAGE'
,
1
)
runner1
=
create
:ci_runner
,
created_at:
'2018-07-12 07:00'
runner2
=
create
:ci_runner
,
created_at:
'2018-07-12 08:00'
expect
(
described_class
.
new
(
current_user:
admin
,
params:
{
page:
1
}).
execute
).
to
eq
[
runner2
]
expect
(
described_class
.
new
(
current_user:
admin
,
params:
{
page:
2
}).
execute
).
to
eq
[
runner1
]
end
end
context
'non admin user'
do
it
'returns no runners'
do
user
=
create
:user
create
:ci_runner
,
active:
true
create
:ci_runner
,
active:
false
expect
(
described_class
.
new
(
current_user:
user
,
params:
{}).
execute
).
to
be_empty
end
end
context
'user is nil'
do
it
'returns no runners'
do
user
=
nil
create
:ci_runner
,
active:
true
create
:ci_runner
,
active:
false
expect
(
described_class
.
new
(
current_user:
user
,
params:
{}).
execute
).
to
be_empty
end
end
end
end
context
'group'
do
let_it_be
(
:user
)
{
create
(
:user
)
}
let_it_be
(
:group
)
{
create
(
:group
)
}
let_it_be
(
:sub_group_1
)
{
create
(
:group
,
parent:
group
)
}
let_it_be
(
:sub_group_2
)
{
create
(
:group
,
parent:
group
)
}
let_it_be
(
:sub_group_3
)
{
create
(
:group
,
parent:
sub_group_1
)
}
let_it_be
(
:sub_group_4
)
{
create
(
:group
,
parent:
sub_group_3
)
}
let_it_be
(
:project
)
{
create
(
:project
,
group:
group
)
}
let_it_be
(
:project_2
)
{
create
(
:project
,
group:
group
)
}
let_it_be
(
:project_3
)
{
create
(
:project
,
group:
sub_group_1
)
}
let_it_be
(
:project_4
)
{
create
(
:project
,
group:
sub_group_2
)
}
let_it_be
(
:project_5
)
{
create
(
:project
,
group:
sub_group_3
)
}
let_it_be
(
:project_6
)
{
create
(
:project
,
group:
sub_group_4
)
}
let_it_be
(
:runner_group
)
{
create
(
:ci_runner
,
:group
,
contacted_at:
12
.
minutes
.
ago
)
}
let_it_be
(
:runner_sub_group_1
)
{
create
(
:ci_runner
,
:group
,
active:
false
,
contacted_at:
11
.
minutes
.
ago
)
}
let_it_be
(
:runner_sub_group_2
)
{
create
(
:ci_runner
,
:group
,
contacted_at:
10
.
minutes
.
ago
)
}
let_it_be
(
:runner_sub_group_3
)
{
create
(
:ci_runner
,
:group
,
contacted_at:
9
.
minutes
.
ago
)
}
let_it_be
(
:runner_sub_group_4
)
{
create
(
:ci_runner
,
:group
,
contacted_at:
8
.
minutes
.
ago
)
}
let_it_be
(
:runner_project_1
)
{
create
(
:ci_runner
,
:project
,
contacted_at:
7
.
minutes
.
ago
,
projects:
[
project
])}
let_it_be
(
:runner_project_2
)
{
create
(
:ci_runner
,
:project
,
contacted_at:
6
.
minutes
.
ago
,
projects:
[
project_2
])}
let_it_be
(
:runner_project_3
)
{
create
(
:ci_runner
,
:project
,
contacted_at:
5
.
minutes
.
ago
,
description:
'runner_project_search'
,
projects:
[
project
,
project_2
])}
let_it_be
(
:runner_project_4
)
{
create
(
:ci_runner
,
:project
,
contacted_at:
4
.
minutes
.
ago
,
projects:
[
project_3
])}
let_it_be
(
:runner_project_5
)
{
create
(
:ci_runner
,
:project
,
contacted_at:
3
.
minutes
.
ago
,
tag_list:
%w[runner_tag]
,
projects:
[
project_4
])}
let_it_be
(
:runner_project_6
)
{
create
(
:ci_runner
,
:project
,
contacted_at:
2
.
minutes
.
ago
,
projects:
[
project_5
])}
let_it_be
(
:runner_project_7
)
{
create
(
:ci_runner
,
:project
,
contacted_at:
1
.
minute
.
ago
,
projects:
[
project_6
])}
let
(
:params
)
{
{}
}
before
do
group
.
runners
<<
runner_group
sub_group_1
.
runners
<<
runner_sub_group_1
sub_group_2
.
runners
<<
runner_sub_group_2
sub_group_3
.
runners
<<
runner_sub_group_3
sub_group_4
.
runners
<<
runner_sub_group_4
end
describe
'#execute'
do
subject
{
described_class
.
new
(
current_user:
user
,
group:
group
,
params:
params
).
execute
}
context
'no params'
do
before
do
group
.
add_owner
(
user
)
end
it
'returns all runners'
do
expect
(
subject
).
to
eq
([
runner_project_7
,
runner_project_6
,
runner_project_5
,
runner_project_4
,
runner_project_3
,
runner_project_2
,
runner_project_1
,
runner_sub_group_4
,
runner_sub_group_3
,
runner_sub_group_2
,
runner_sub_group_1
,
runner_group
])
end
end
context
'with sort param'
do
let
(
:params
)
{
{
sort:
'contacted_asc'
}
}
before
do
group
.
add_owner
(
user
)
end
it
'sorts by specified attribute'
do
expect
(
subject
).
to
eq
([
runner_group
,
runner_sub_group_1
,
runner_sub_group_2
,
runner_sub_group_3
,
runner_sub_group_4
,
runner_project_1
,
runner_project_2
,
runner_project_3
,
runner_project_4
,
runner_project_5
,
runner_project_6
,
runner_project_7
])
end
end
context
'paginate'
do
using
RSpec
::
Parameterized
::
TableSyntax
let
(
:runners
)
do
[[
runner_project_7
,
runner_project_6
,
runner_project_5
],
[
runner_project_4
,
runner_project_3
,
runner_project_2
],
[
runner_project_1
,
runner_sub_group_4
,
runner_sub_group_3
],
[
runner_sub_group_2
,
runner_sub_group_1
,
runner_group
]]
end
where
(
:page
,
:index
)
do
1
|
0
2
|
1
3
|
2
4
|
3
end
before
do
stub_const
(
'Ci::RunnersFinder::NUMBER_OF_RUNNERS_PER_PAGE'
,
3
)
group
.
add_owner
(
user
)
end
with_them
do
let
(
:params
)
{
{
page:
page
}
}
it
'returns the runners for the specified page'
do
expect
(
subject
).
to
eq
(
runners
[
index
])
end
end
end
context
'filter by search term'
do
let
(
:params
)
{
{
search:
'runner_project_search'
}
}
before
do
group
.
add_owner
(
user
)
end
it
'returns correct runner'
do
expect
(
subject
).
to
eq
([
runner_project_3
])
end
end
context
'filter by status'
do
let
(
:params
)
{
{
status_status:
'paused'
}
}
before
do
group
.
add_owner
(
user
)
end
it
'returns correct runner'
do
expect
(
subject
).
to
eq
([
runner_sub_group_1
])
end
end
context
'filter by tag_name'
do
let
(
:params
)
{
{
tag_name:
%w[runner_tag]
}
}
before
do
group
.
add_owner
(
user
)
end
it
'returns correct runner'
do
expect
(
subject
).
to
eq
([
runner_project_5
])
end
end
context
'filter by runner type'
do
let
(
:params
)
{
{
type_type:
'project_type'
}
}
before
do
group
.
add_owner
(
user
)
end
it
'returns correct runners'
do
expect
(
subject
).
to
eq
([
runner_project_7
,
runner_project_6
,
runner_project_5
,
runner_project_4
,
runner_project_3
,
runner_project_2
,
runner_project_1
])
end
end
context
'user has no access to runners'
do
where
(
:user_permission
)
do
[
:maintainer
,
:developer
,
:reporter
,
:guest
]
end
with_them
do
before
do
create
(
:group_member
,
user_permission
,
group:
group
,
user:
user
)
end
it
'returns no runners'
do
expect
(
subject
).
to
be_empty
end
end
end
context
'user with no access'
do
it
'returns no runners'
do
expect
(
subject
).
to
be_empty
end
end
context
'user is nil'
do
let_it_be
(
:user
)
{
nil
}
it
'returns no runners'
do
expect
(
subject
).
to
be_empty
end
end
end
describe
'#sort_key'
do
subject
{
described_class
.
new
(
current_user:
user
,
group:
group
,
params:
params
).
sort_key
}
context
'no params'
do
it
'returns created_date'
do
expect
(
subject
).
to
eq
(
'created_date'
)
end
end
context
'with params'
do
let
(
:params
)
{
{
sort:
'contacted_asc'
}
}
it
'returns contacted_asc'
do
expect
(
subject
).
to
eq
(
'contacted_asc'
)
end
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