mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 21:34:50 +00:00
This hasn't functioned since we removed the `.es6` extensions from our JS files. Plus, during the migration from classic reactivity to octane, there are legitimate reasons to use `this.get` for single properties of Ember Objects
49 lines
1.5 KiB
Ruby
49 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
def list_files(base_dir, pattern = "*")
|
|
Dir[File.join("#{base_dir}", pattern)]
|
|
end
|
|
|
|
def grep_files(files, regex)
|
|
files.select { |file| grep_file(file, regex) }
|
|
end
|
|
|
|
def grep_file(file, regex)
|
|
lines = File.open(file).grep(regex)
|
|
lines.count > 0 ? file : nil
|
|
end
|
|
|
|
RSpec.describe "Coding style" do
|
|
describe "Post Migrations" do
|
|
def check_offenses(files, method_name, constant_name)
|
|
method_name_regex = /#{Regexp.escape(method_name)}/
|
|
constant_name_regex = /#{Regexp.escape(constant_name)}/
|
|
offenses = files.reject { |file| is_valid?(file, method_name_regex, constant_name_regex) }
|
|
|
|
expect(offenses).to be_empty, <<~TEXT
|
|
You need to use the constant #{constant_name} when you use
|
|
#{method_name} in order to help with restoring backups.
|
|
|
|
Please take a look at existing migrations to see how to use it correctly.
|
|
|
|
Offenses:
|
|
#{offenses.join("\n")}
|
|
TEXT
|
|
end
|
|
|
|
def is_valid?(file, method_name_regex, constant_name_regex)
|
|
contains_method_name = File.open(file).grep(method_name_regex).any?
|
|
contains_constant_name = File.open(file).grep(constant_name_regex).any?
|
|
|
|
contains_method_name ? contains_constant_name : true
|
|
end
|
|
|
|
it "ensures dropped tables and columns are stored in constants" do
|
|
migration_files = list_files("db/post_migrate", "**/*.rb")
|
|
|
|
check_offenses(migration_files, "ColumnDropper.execute_drop", "DROPPED_COLUMNS")
|
|
check_offenses(migration_files, "TableDropper.execute_drop", "DROPPED_TABLES")
|
|
end
|
|
end
|
|
end
|