summaryrefslogtreecommitdiff
path: root/rubocop
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-19 21:07:28 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-19 21:07:28 +0000
commit9bc3ee9ad4c857570b7a029345cc6fff3ed46b5f (patch)
tree4de11c170947a73056c72b47f1036c048e7c082e /rubocop
parentdc539af30068062bd6fc2f9c6b478d4a1feb8c23 (diff)
downloadgitlab-ce-9bc3ee9ad4c857570b7a029345cc6fff3ed46b5f.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop')
-rw-r--r--rubocop/cop/migration/versioned_migration_class.rb24
1 files changed, 19 insertions, 5 deletions
diff --git a/rubocop/cop/migration/versioned_migration_class.rb b/rubocop/cop/migration/versioned_migration_class.rb
index 572ddcd1b12..27f1c0e16a1 100644
--- a/rubocop/cop/migration/versioned_migration_class.rb
+++ b/rubocop/cop/migration/versioned_migration_class.rb
@@ -8,13 +8,18 @@ module RuboCop
class VersionedMigrationClass < RuboCop::Cop::Base
include MigrationHelpers
- ENFORCED_SINCE = 2021_09_02_00_00_00
- CURRENT_DATABASE_MIGRATION_CLASS = 'Gitlab::Database::Migration[2.1]'
+ ENFORCED_SINCE = 2023_01_12_00_00_00
+ DOC_LINK = "https://docs.gitlab.com/ee/development/migration_style_guide.html#migration-helpers-and-versioning"
- MSG_INHERIT = 'Don\'t inherit from ActiveRecord::Migration but use Gitlab::Database::Migration[2.1] instead. See https://docs.gitlab.com/ee/development/migration_style_guide.html#migration-helpers-and-versioning.'
- MSG_INCLUDE = 'Don\'t include migration helper modules directly. Inherit from Gitlab::Database::Migration[2.1] instead. See https://docs.gitlab.com/ee/development/migration_style_guide.html#migration-helpers-and-versioning.'
+ MSG_INHERIT = "Don't inherit from ActiveRecord::Migration or old versions of Gitlab::Database::Migration. " \
+ "Use Gitlab::Database::Migration[2.1] instead. See #{DOC_LINK}."
+ MSG_INCLUDE = "Don't include migration helper modules directly. " \
+ "Inherit from Gitlab::Database::Migration[2.1] instead. See #{DOC_LINK}."
+
+ GITLAB_MIGRATION_CLASS = 'Gitlab::Database::Migration'
ACTIVERECORD_MIGRATION_CLASS = 'ActiveRecord::Migration'
+ CURRENT_MIGRATION_VERSION = 2.1 # Should be the same value as Gitlab::Database::Migration.current_version
def_node_search :includes_helpers?, <<~PATTERN
(send nil? :include
@@ -25,7 +30,7 @@ module RuboCop
def on_class(node)
return unless relevant_migration?(node)
- return unless activerecord_migration_class?(node)
+ return unless activerecord_migration_class?(node) || old_version_migration_class?(node)
add_offense(node, message: MSG_INHERIT)
end
@@ -51,6 +56,15 @@ module RuboCop
others.find { |node| node.const_type? && node&.const_name != 'Types' }&.const_name
end
+
+ # Returns true for any parent class of format Gitlab::Database::Migration[version] if version < current_version
+ def old_version_migration_class?(class_node)
+ parent_class_node = class_node.parent_class
+ return false unless parent_class_node.send_type? && parent_class_node.arguments.last.float_type?
+ return false unless parent_class_node.children[0].const_name == GITLAB_MIGRATION_CLASS
+
+ parent_class_node.arguments[0].value < CURRENT_MIGRATION_VERSION
+ end
end
end
end