2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
module DbCleaner
2021-10-27 15:23:28 +05:30
def all_connection_classes
2023-03-04 22:38:38 +05:30
:: TestProfBeforeAllAdapter :: MultipleDatabaseAdapter . all_connection_classes
2021-10-27 15:23:28 +05:30
end
2020-03-13 15:44:24 +05:30
def delete_from_all_tables! ( except : [ ] )
except << 'ar_internal_metadata'
2019-09-30 21:07:59 +05:30
DatabaseCleaner . clean_with ( :deletion , cache_tables : false , except : except )
end
2019-07-07 11:18:12 +05:30
def deletion_except_tables
2023-03-04 22:38:38 +05:30
%w[ work_item_types work_item_hierarchy_restrictions ]
2014-09-02 18:07:02 +05:30
end
2019-07-07 11:18:12 +05:30
def setup_database_cleaner
2021-10-27 15:23:28 +05:30
all_connection_classes . each do | connection_class |
DatabaseCleaner [ :active_record , { connection : connection_class } ]
end
2014-09-02 18:07:02 +05:30
end
2021-11-18 22:05:49 +05:30
def any_connection_class_with_more_than_allowed_columns?
all_connection_classes . any? do | connection_class |
more_than_allowed_columns? ( connection_class )
end
end
def more_than_allowed_columns? ( connection_class )
# Postgres maximum number of columns in a table is 1600 (https://github.com/postgres/postgres/blob/de41869b64d57160f58852eab20a27f248188135/src/include/access/htup_details.h#L23-L47).
# And since:
# "The DROP COLUMN form does not physically remove the column, but simply makes
# it invisible to SQL operations. Subsequent insert and update operations in the
# table will store a null value for the column. Thus, dropping a column is quick
# but it will not immediately reduce the on-disk size of your table, as the space
# occupied by the dropped column is not reclaimed.
# The space will be reclaimed over time as existing rows are updated."
# according to https://www.postgresql.org/docs/current/sql-altertable.html.
# We drop and recreate the database if any table has more than 1200 columns, just to be safe.
max_allowed_columns = 1200
tables_with_more_than_allowed_columns = connection_class . connection . execute ( <<-SQL)
SELECT attrelid :: regclass :: text AS table , COUNT ( * ) AS column_count
FROM pg_attribute
GROUP BY attrelid
HAVING COUNT ( * ) > #{max_allowed_columns}
SQL
tables_with_more_than_allowed_columns . each do | result |
puts " The #{ result [ 'table' ] } ( #{ connection_class . connection_db_config . name } ) table has #{ result [ 'column_count' ] } columns. "
end
tables_with_more_than_allowed_columns . any?
end
def recreate_all_databases!
start = Gitlab :: Metrics :: System . monotonic_time
puts " Recreating the database "
force_disconnect_all_connections!
ActiveRecord :: Tasks :: DatabaseTasks . drop_current
ActiveRecord :: Tasks :: DatabaseTasks . create_current
ActiveRecord :: Tasks :: DatabaseTasks . load_schema_current
# Migrate each database individually
with_reestablished_active_record_base do
all_connection_classes . each do | connection_class |
2022-03-02 08:16:31 +05:30
ActiveRecord :: Base . establish_connection ( connection_class . connection_db_config ) # rubocop: disable Database/EstablishConnection
2021-11-18 22:05:49 +05:30
ActiveRecord :: Tasks :: DatabaseTasks . migrate
end
end
2022-04-04 11:22:00 +05:30
Gitlab :: Database :: Partitioning . sync_partitions_ignore_db_error
2021-11-18 22:05:49 +05:30
puts " Databases re-creation done in #{ Gitlab :: Metrics :: System . monotonic_time - start } "
end
2022-11-25 23:54:43 +05:30
def recreate_databases_and_seed_if_needed
# Postgres maximum number of columns in a table is 1600 (https://github.com/postgres/postgres/blob/de41869b64d57160f58852eab20a27f248188135/src/include/access/htup_details.h#L23-L47).
# We drop and recreate the database if any table has more than 1200 columns, just to be safe.
return false unless any_connection_class_with_more_than_allowed_columns?
recreate_all_databases!
# Seed required data as recreating DBs will delete it
TestEnv . seed_db
true
end
2021-11-18 22:05:49 +05:30
def force_disconnect_all_connections!
2022-11-25 23:54:43 +05:30
cmd = << ~ SQL
SELECT pg_terminate_backend ( pg_stat_activity . pid )
FROM pg_stat_activity
WHERE datname = current_database ( )
AND pid < > pg_backend_pid ( ) ;
SQL
Gitlab :: Database :: EachDatabase . each_database_connection ( include_shared : false ) do | connection |
connection . execute ( cmd )
2021-11-18 22:05:49 +05:30
end
2022-11-25 23:54:43 +05:30
ActiveRecord :: Base . clear_all_connections! # rubocop:disable Database/MultipleDatabases
2021-11-18 22:05:49 +05:30
end
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
DbCleaner . prepend_mod_with ( 'DbCleaner' )