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
478f4cb5
Commit
478f4cb5
authored
Jan 16, 2020
by
Sean Arnold
Committed by
Nick Thomas
Jan 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use class method instead of scope
- Refactor specs a bit too
parent
2d2a6137
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
107 additions
and
6 deletions
+107
-6
app/finders/sentry_issue_finder.rb
app/finders/sentry_issue_finder.rb
+23
-0
app/models/sentry_issue.rb
app/models/sentry_issue.rb
+7
-3
db/migrate/20200114204949_add_index_to_sentry_issues_sentry_issue_identifier.rb
...949_add_index_to_sentry_issues_sentry_issue_identifier.rb
+17
-0
db/schema.rb
db/schema.rb
+2
-1
spec/factories/sentry_issue.rb
spec/factories/sentry_issue.rb
+1
-1
spec/finders/sentry_issue_finder_spec.rb
spec/finders/sentry_issue_finder_spec.rb
+46
-0
spec/models/sentry_issue_spec.rb
spec/models/sentry_issue_spec.rb
+11
-1
No files found.
app/finders/sentry_issue_finder.rb
0 → 100644
View file @
478f4cb5
# frozen_string_literal: true
class
SentryIssueFinder
attr_accessor
:project
,
:current_user
def
initialize
(
project
,
current_user:
nil
)
@project
=
project
@current_user
=
current_user
end
def
execute
(
identifier
)
return
unless
authorized?
SentryIssue
.
for_project_and_identifier
(
project
,
identifier
)
end
private
def
authorized?
Ability
.
allowed?
(
current_user
,
:read_sentry_issue
,
project
)
end
end
app/models/sentry_issue.rb
View file @
478f4cb5
...
...
@@ -4,7 +4,11 @@ class SentryIssue < ApplicationRecord
belongs_to
:issue
validates
:issue
,
uniqueness:
true
,
presence:
true
validates
:sentry_issue_identifier
,
uniqueness:
true
,
presence:
true
validates
:sentry_issue_identifier
,
presence:
true
def
self
.
for_project_and_identifier
(
project
,
identifier
)
joins
(
:issue
)
.
where
(
issues:
{
project_id:
project
.
id
})
.
find_by_sentry_issue_identifier
(
identifier
)
end
end
db/migrate/20200114204949_add_index_to_sentry_issues_sentry_issue_identifier.rb
0 → 100644
View file @
478f4cb5
# frozen_string_literal: true
class
AddIndexToSentryIssuesSentryIssueIdentifier
<
ActiveRecord
::
Migration
[
5.2
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:sentry_issues
,
:sentry_issue_identifier
end
def
down
remove_concurrent_index
:sentry_issues
,
:sentry_issue_identifier
end
end
db/schema.rb
View file @
478f4cb5
...
...
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2020_01_14_
113341
)
do
ActiveRecord
::
Schema
.
define
(
version:
2020_01_14_
204949
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"pg_trgm"
...
...
@@ -3732,6 +3732,7 @@ ActiveRecord::Schema.define(version: 2020_01_14_113341) do
t
.
bigint
"issue_id"
,
null:
false
t
.
bigint
"sentry_issue_identifier"
,
null:
false
t
.
index
[
"issue_id"
],
name:
"index_sentry_issues_on_issue_id"
,
unique:
true
t
.
index
[
"sentry_issue_identifier"
],
name:
"index_sentry_issues_on_sentry_issue_identifier"
end
create_table
"serverless_domain_cluster"
,
primary_key:
"uuid"
,
id: :string
,
limit:
14
,
force: :cascade
do
|
t
|
...
...
spec/factories/sentry_issue.rb
View file @
478f4cb5
...
...
@@ -3,6 +3,6 @@
FactoryBot
.
define
do
factory
:sentry_issue
,
class:
'SentryIssue'
do
issue
se
ntry_issue_identifier
{
1234567891
}
se
quence
(
:sentry_issue_identifier
)
{
|
n
|
10000000
+
n
}
end
end
spec/finders/sentry_issue_finder_spec.rb
0 → 100644
View file @
478f4cb5
# frozen_string_literal: true
require
'spec_helper'
describe
SentryIssueFinder
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
let
(
:sentry_issue
)
{
create
(
:sentry_issue
,
issue:
issue
)
}
let
(
:finder
)
{
described_class
.
new
(
project
,
current_user:
user
)
}
describe
'#execute'
do
let
(
:identifier
)
{
sentry_issue
.
sentry_issue_identifier
}
subject
{
finder
.
execute
(
identifier
)
}
context
'when the user is not part of the project'
do
it
{
is_expected
.
to
be_nil
}
end
context
'when the user is a project developer'
do
before
do
project
.
add_developer
(
user
)
end
it
{
is_expected
.
to
eq
(
sentry_issue
)
}
context
'when identifier is incorrect'
do
let
(
:identifier
)
{
1234
}
it
{
is_expected
.
to
be_nil
}
end
context
'when accessing another projects identifier'
do
let
(
:second_project
)
{
create
(
:project
)
}
let
(
:second_issue
)
{
create
(
:issue
,
project:
second_project
)
}
let
(
:second_sentry_issue
)
{
create
(
:sentry_issue
,
issue:
second_issue
)
}
let
(
:identifier
)
{
second_sentry_issue
.
sentry_issue_identifier
}
it
{
is_expected
.
to
be_nil
}
end
end
end
end
spec/models/sentry_issue_spec.rb
View file @
478f4cb5
...
...
@@ -13,6 +13,16 @@ describe SentryIssue do
it
{
is_expected
.
to
validate_presence_of
(
:issue
)
}
it
{
is_expected
.
to
validate_uniqueness_of
(
:issue
)
}
it
{
is_expected
.
to
validate_presence_of
(
:sentry_issue_identifier
)
}
it
{
is_expected
.
to
validate_uniqueness_of
(
:sentry_issue_identifier
).
with_message
(
"has already been taken"
)
}
end
describe
'.for_project_and_identifier'
do
let!
(
:sentry_issue
)
{
create
(
:sentry_issue
)
}
let
(
:project
)
{
sentry_issue
.
issue
.
project
}
let
(
:identifier
)
{
sentry_issue
.
sentry_issue_identifier
}
let!
(
:second_sentry_issue
)
{
create
(
:sentry_issue
)
}
subject
{
described_class
.
for_project_and_identifier
(
project
,
identifier
)
}
it
{
is_expected
.
to
eq
(
sentry_issue
)
}
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