Commit 88fc1df6 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre

Merge branch 'pl-rubocop-inline-association-geo-event-log' into 'master'

Fix cop FactoryBot/InlineAssociation offenses for geo event log

See merge request gitlab-org/gitlab!55919
parents b6486b27 3a6ba833
...@@ -44,7 +44,6 @@ Graphql/Descriptions: ...@@ -44,7 +44,6 @@ Graphql/Descriptions:
# WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/267606 # WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/267606
FactoryBot/InlineAssociation: FactoryBot/InlineAssociation:
Exclude: Exclude:
- 'ee/spec/factories/geo/event_log.rb'
- 'ee/spec/factories/merge_request_blocks.rb' - 'ee/spec/factories/merge_request_blocks.rb'
- 'ee/spec/factories/vulnerabilities/feedback.rb' - 'ee/spec/factories/vulnerabilities/feedback.rb'
- 'spec/factories/atlassian_identities.rb' - 'spec/factories/atlassian_identities.rb'
......
...@@ -97,37 +97,37 @@ FactoryBot.define do ...@@ -97,37 +97,37 @@ FactoryBot.define do
end end
factory :geo_repository_renamed_event, class: 'Geo::RepositoryRenamedEvent' do factory :geo_repository_renamed_event, class: 'Geo::RepositoryRenamedEvent' do
project { create(:project, :repository) } project { association(:project, :repository) }
repository_storage_name { project.repository_storage } repository_storage_name { project.repository_storage }
old_path_with_namespace { project.path_with_namespace } old_path_with_namespace { project.path_with_namespace }
new_path_with_namespace { project.path_with_namespace + '_new' } new_path_with_namespace { "#{project.path_with_namespace}_new" }
old_wiki_path_with_namespace { project.wiki.path_with_namespace } old_wiki_path_with_namespace { project.wiki.path_with_namespace }
new_wiki_path_with_namespace { project.wiki.path_with_namespace + '_new' } new_wiki_path_with_namespace { "#{project.wiki.path_with_namespace}_new" }
old_path { project.path } old_path { project.path }
new_path { project.path + '_new' } new_path { "#{project.path}_new" }
end end
factory :geo_hashed_storage_migrated_event, class: 'Geo::HashedStorageMigratedEvent' do factory :geo_hashed_storage_migrated_event, class: 'Geo::HashedStorageMigratedEvent' do
project { create(:project, :repository) } project { association(:project, :repository) }
repository_storage_name { project.repository_storage } repository_storage_name { project.repository_storage }
old_disk_path { project.path_with_namespace } old_disk_path { project.path_with_namespace }
new_disk_path { project.path_with_namespace + '_new' } new_disk_path { "#{project.path_with_namespace}_new" }
old_wiki_disk_path { project.wiki.path_with_namespace } old_wiki_disk_path { project.wiki.path_with_namespace }
new_wiki_disk_path { project.wiki.path_with_namespace + '_new' } new_wiki_disk_path { "#{project.wiki.path_with_namespace}_new" }
new_storage_version { Project::HASHED_STORAGE_FEATURES[:repository] } new_storage_version { Project::HASHED_STORAGE_FEATURES[:repository] }
end end
factory :geo_hashed_storage_attachments_event, class: 'Geo::HashedStorageAttachmentsEvent' do factory :geo_hashed_storage_attachments_event, class: 'Geo::HashedStorageAttachmentsEvent' do
project { create(:project, :repository) } project { association(:project, :repository) }
old_attachments_path { Storage::LegacyProject.new(project).disk_path } old_attachments_path { Storage::LegacyProject.new(project).disk_path }
new_attachments_path { Storage::Hashed.new(project).disk_path } new_attachments_path { Storage::Hashed.new(project).disk_path }
end end
factory :geo_lfs_object_deleted_event, class: 'Geo::LfsObjectDeletedEvent' do factory :geo_lfs_object_deleted_event, class: 'Geo::LfsObjectDeletedEvent' do
lfs_object { create(:lfs_object, :with_file) } lfs_object { association(:lfs_object, :with_file) }
after(:build, :stub) do |event, _| after(:build, :stub) do |event, _|
local_store_path = Pathname.new(LfsObjectUploader.root) local_store_path = Pathname.new(LfsObjectUploader.root)
...@@ -139,7 +139,7 @@ FactoryBot.define do ...@@ -139,7 +139,7 @@ FactoryBot.define do
end end
factory :geo_job_artifact_deleted_event, class: 'Geo::JobArtifactDeletedEvent' do factory :geo_job_artifact_deleted_event, class: 'Geo::JobArtifactDeletedEvent' do
job_artifact { create(:ci_job_artifact, :archive) } job_artifact { association(:ci_job_artifact, :archive) }
after(:build, :stub) do |event, _| after(:build, :stub) do |event, _|
local_store_path = Pathname.new(JobArtifactUploader.root) local_store_path = Pathname.new(JobArtifactUploader.root)
...@@ -150,22 +150,22 @@ FactoryBot.define do ...@@ -150,22 +150,22 @@ FactoryBot.define do
end end
factory :geo_upload_deleted_event, class: 'Geo::UploadDeletedEvent' do factory :geo_upload_deleted_event, class: 'Geo::UploadDeletedEvent' do
upload { create(:upload) } upload { association(:upload) }
file_path { upload.path } file_path { upload.path }
model_id { upload.model_id } model_id { upload.model_id }
model_type { upload.model_type } model_type { upload.model_type }
uploader { upload.uploader } uploader { upload.uploader }
trait :issuable_upload do trait :issuable_upload do
upload { create(:upload, :issuable_upload) } upload { association(:upload, :issuable_upload) }
end end
trait :personal_snippet do trait :personal_snippet do
upload { create(:upload, :personal_snippet) } upload { association(:upload, :personal_snippet) }
end end
trait :namespace_upload do trait :namespace_upload do
upload { create(:upload, :namespace_upload) } upload { association(:upload, :namespace_upload) }
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment