1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# frozen_string_literal: true
# rubocop: disable Gitlab/NamespacedClass
class ClickHouseTestRunner
include ClickHouseSchemaHelpers
def truncate_tables
ClickHouse::Client.configuration.databases.each_key do |db|
# Select tables with at least one row
query = tables_for(db).map do |table|
"(SELECT '#{table}' AS table FROM #{table} LIMIT 1)"
end.join(' UNION ALL ')
next if query.empty?
tables_with_data = ClickHouse::Client.select(query, db).pluck('table')
tables_with_data.each do |table|
ClickHouse::Client.execute("TRUNCATE TABLE #{table}", db)
end
end
end
def ensure_schema
return if @ensure_schema
clear_db
# run the schema SQL files
migrations_paths = ClickHouse::MigrationSupport::Migrator.migrations_paths(:main)
connection = ::ClickHouse::Connection.new(:main)
schema_migration = ClickHouse::MigrationSupport::SchemaMigration.new(connection)
schema_migration.ensure_table
migration_context = ClickHouse::MigrationSupport::MigrationContext.new(connection,
migrations_paths, schema_migration)
Gitlab::ExclusiveLease.skipping_transaction_check { migrate(migration_context, nil) }
@ensure_schema = true
end
def reset_schema_cache!
@ensure_schema = nil
end
private
def tables_for(db)
@tables ||= {}
@tables[db] ||= lookup_tables(db) - %w[schema_migrations]
end
end
# rubocop: enable Gitlab/NamespacedClass
RSpec.configure do |config|
click_house_test_runner = ClickHouseTestRunner.new
config.around(:each, :click_house) do |example|
with_net_connect_allowed do
if example.example.metadata[:click_house] == :without_migrations
click_house_test_runner.clear_db
click_house_test_runner.reset_schema_cache!
else
click_house_test_runner.ensure_schema
click_house_test_runner.truncate_tables
end
example.run
end
end
end
|