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
Léo-Paul Géneau
gitlab-ce
Commits
87b85ef8
Commit
87b85ef8
authored
Sep 20, 2018
by
Semyon Pupkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DynamicAttributeDefinedStatically cop
parent
67cdb1d1
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
26 additions
and
45 deletions
+26
-45
.rubocop_todo.yml
.rubocop_todo.yml
+0
-18
spec/factories/broadcast_messages.rb
spec/factories/broadcast_messages.rb
+6
-6
spec/factories/ci/builds.rb
spec/factories/ci/builds.rb
+3
-3
spec/factories/ci/runners.rb
spec/factories/ci/runners.rb
+1
-1
spec/factories/clusters/applications/helm.rb
spec/factories/clusters/applications/helm.rb
+1
-1
spec/factories/clusters/platforms/kubernetes.rb
spec/factories/clusters/platforms/kubernetes.rb
+1
-2
spec/factories/emails.rb
spec/factories/emails.rb
+1
-1
spec/factories/gpg_keys.rb
spec/factories/gpg_keys.rb
+2
-2
spec/factories/group_members.rb
spec/factories/group_members.rb
+1
-1
spec/factories/merge_requests.rb
spec/factories/merge_requests.rb
+1
-1
spec/factories/notes.rb
spec/factories/notes.rb
+1
-1
spec/factories/oauth_access_grants.rb
spec/factories/oauth_access_grants.rb
+1
-1
spec/factories/project_members.rb
spec/factories/project_members.rb
+1
-1
spec/factories/todos.rb
spec/factories/todos.rb
+1
-1
spec/factories/uploads.rb
spec/factories/uploads.rb
+5
-5
No files found.
.rubocop_todo.yml
View file @
87b85ef8
...
...
@@ -10,24 +10,6 @@
Capybara/CurrentPathExpectation
:
Enabled
:
false
# Offense count: 23
FactoryBot/DynamicAttributeDefinedStatically
:
Exclude
:
-
'
spec/factories/broadcast_messages.rb'
-
'
spec/factories/ci/builds.rb'
-
'
spec/factories/ci/runners.rb'
-
'
spec/factories/clusters/applications/helm.rb'
-
'
spec/factories/clusters/platforms/kubernetes.rb'
-
'
spec/factories/emails.rb'
-
'
spec/factories/gpg_keys.rb'
-
'
spec/factories/group_members.rb'
-
'
spec/factories/merge_requests.rb'
-
'
spec/factories/notes.rb'
-
'
spec/factories/oauth_access_grants.rb'
-
'
spec/factories/project_members.rb'
-
'
spec/factories/todos.rb'
-
'
spec/factories/uploads.rb'
# Offense count: 167
# Cop supports --auto-correct.
Layout/EmptyLinesAroundArguments
:
...
...
spec/factories/broadcast_messages.rb
View file @
87b85ef8
FactoryBot
.
define
do
factory
:broadcast_message
do
message
"MyText"
starts_at
1
.
day
.
ago
ends_at
1
.
day
.
from_now
starts_at
{
1
.
day
.
ago
}
ends_at
{
1
.
day
.
from_now
}
trait
:expired
do
starts_at
5
.
days
.
ago
ends_at
3
.
days
.
ago
starts_at
{
5
.
days
.
ago
}
ends_at
{
3
.
days
.
ago
}
end
trait
:future
do
starts_at
5
.
days
.
from_now
ends_at
6
.
days
.
from_now
starts_at
{
5
.
days
.
from_now
}
ends_at
{
6
.
days
.
from_now
}
end
end
end
spec/factories/ci/builds.rb
View file @
87b85ef8
...
...
@@ -159,12 +159,12 @@ FactoryBot.define do
end
trait
:erased
do
erased_at
Time
.
now
erased_at
{
Time
.
now
}
erased_by
factory: :user
end
trait
:queued
do
queued_at
Time
.
now
queued_at
{
Time
.
now
}
runner
factory: :ci_runner
end
...
...
@@ -194,7 +194,7 @@ FactoryBot.define do
end
trait
:expired
do
artifacts_expire_at
1
.
minute
.
ago
artifacts_expire_at
{
1
.
minute
.
ago
}
end
trait
:with_commit
do
...
...
spec/factories/ci/runners.rb
View file @
87b85ef8
...
...
@@ -9,7 +9,7 @@ FactoryBot.define do
runner_type
:instance_type
trait
:online
do
contacted_at
Time
.
now
contacted_at
{
Time
.
now
}
end
trait
:instance
do
...
...
spec/factories/clusters/applications/helm.rb
View file @
87b85ef8
...
...
@@ -29,7 +29,7 @@ FactoryBot.define do
trait
:timeouted
do
installing
updated_at
ClusterWaitForAppInstallationWorker
::
TIMEOUT
.
ago
updated_at
{
ClusterWaitForAppInstallationWorker
::
TIMEOUT
.
ago
}
end
factory
:clusters_applications_ingress
,
class:
Clusters
::
Applications
::
Ingress
do
...
...
spec/factories/clusters/platforms/kubernetes.rb
View file @
87b85ef8
...
...
@@ -3,11 +3,10 @@ FactoryBot.define do
cluster
namespace
nil
api_url
'https://kubernetes.example.com'
token
'a'
*
40
token
{
'a'
*
40
}
trait
:configured
do
api_url
'https://kubernetes.example.com'
token
'a'
*
40
username
'xxxxxx'
password
'xxxxxx'
...
...
spec/factories/emails.rb
View file @
87b85ef8
...
...
@@ -3,7 +3,7 @@ FactoryBot.define do
user
email
{
generate
(
:email_alias
)
}
trait
(
:confirmed
)
{
confirmed_at
Time
.
now
}
trait
(
:confirmed
)
{
confirmed_at
{
Time
.
now
}
}
trait
(
:skip_validate
)
{
to_create
{
|
instance
|
instance
.
save
(
validate:
false
)
}
}
end
end
spec/factories/gpg_keys.rb
View file @
87b85ef8
...
...
@@ -2,11 +2,11 @@ require_relative '../support/helpers/gpg_helpers'
FactoryBot
.
define
do
factory
:gpg_key
do
key
GpgHelpers
::
User1
.
public_key
key
{
GpgHelpers
::
User1
.
public_key
}
user
factory
:gpg_key_with_subkeys
do
key
GpgHelpers
::
User1
.
public_key_with_extra_signing_key
key
{
GpgHelpers
::
User1
.
public_key_with_extra_signing_key
}
end
end
end
spec/factories/group_members.rb
View file @
87b85ef8
...
...
@@ -9,7 +9,7 @@ FactoryBot.define do
trait
(
:developer
)
{
access_level
GroupMember
::
DEVELOPER
}
trait
(
:maintainer
)
{
access_level
GroupMember
::
MAINTAINER
}
trait
(
:owner
)
{
access_level
GroupMember
::
OWNER
}
trait
(
:access_request
)
{
requested_at
Time
.
now
}
trait
(
:access_request
)
{
requested_at
{
Time
.
now
}
}
trait
(
:invited
)
do
user_id
nil
...
...
spec/factories/merge_requests.rb
View file @
87b85ef8
...
...
@@ -80,7 +80,7 @@ FactoryBot.define do
trait
:merge_when_pipeline_succeeds
do
merge_when_pipeline_succeeds
true
merge_user
author
merge_user
{
author
}
end
trait
:remove_source_branch
do
...
...
spec/factories/notes.rb
View file @
87b85ef8
...
...
@@ -90,7 +90,7 @@ FactoryBot.define do
noteable
nil
noteable_type
'Commit'
noteable_id
nil
commit_id
RepoHelpers
.
sample_commit
.
id
commit_id
{
RepoHelpers
.
sample_commit
.
id
}
end
trait
:legacy_diff_note
do
...
...
spec/factories/oauth_access_grants.rb
View file @
87b85ef8
...
...
@@ -3,7 +3,7 @@ FactoryBot.define do
resource_owner_id
{
create
(
:user
).
id
}
application
token
{
Doorkeeper
::
OAuth
::
Helpers
::
UniqueToken
.
generate
}
expires_in
2
.
hours
expires_in
{
2
.
hours
}
redirect_uri
{
application
.
redirect_uri
}
scopes
{
application
.
scopes
}
...
...
spec/factories/project_members.rb
View file @
87b85ef8
...
...
@@ -8,7 +8,7 @@ FactoryBot.define do
trait
(
:reporter
)
{
access_level
ProjectMember
::
REPORTER
}
trait
(
:developer
)
{
access_level
ProjectMember
::
DEVELOPER
}
trait
(
:maintainer
)
{
access_level
ProjectMember
::
MAINTAINER
}
trait
(
:access_request
)
{
requested_at
Time
.
now
}
trait
(
:access_request
)
{
requested_at
{
Time
.
now
}
}
trait
(
:invited
)
do
user_id
nil
...
...
spec/factories/todos.rb
View file @
87b85ef8
...
...
@@ -49,7 +49,7 @@ FactoryBot.define do
author
user
action
{
Todo
::
ASSIGNED
}
commit_id
RepoHelpers
.
sample_commit
.
id
commit_id
{
RepoHelpers
.
sample_commit
.
id
}
target_type
"Commit"
end
end
spec/factories/uploads.rb
View file @
87b85ef8
FactoryBot
.
define
do
factory
:upload
do
model
{
build
(
:project
)
}
size
100
.
kilobytes
size
{
100
.
kilobytes
}
uploader
"AvatarUploader"
mount_point
:avatar
secret
nil
...
...
@@ -19,13 +19,13 @@ FactoryBot.define do
uploader
"PersonalFileUploader"
path
{
File
.
join
(
secret
,
filename
)
}
model
{
build
(
:personal_snippet
)
}
secret
SecureRandom
.
hex
secret
{
SecureRandom
.
hex
}
end
trait
:issuable_upload
do
uploader
"FileUploader"
path
{
File
.
join
(
secret
,
filename
)
}
secret
SecureRandom
.
hex
secret
{
SecureRandom
.
hex
}
end
trait
:with_file
do
...
...
@@ -43,14 +43,14 @@ FactoryBot.define do
model
{
build
(
:group
)
}
path
{
File
.
join
(
secret
,
filename
)
}
uploader
"NamespaceFileUploader"
secret
SecureRandom
.
hex
secret
{
SecureRandom
.
hex
}
end
trait
:favicon_upload
do
model
{
build
(
:appearance
)
}
path
{
File
.
join
(
secret
,
filename
)
}
uploader
"FaviconUploader"
secret
SecureRandom
.
hex
secret
{
SecureRandom
.
hex
}
end
trait
:attachment_upload
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