Module: DatabaseRewinder

Extended by:
Compatibility
Defined in:
lib/database_rewinder.rb,
lib/database_rewinder/cleaner.rb,
lib/database_rewinder/railtie.rb,
lib/database_rewinder/dummy_model.rb,
lib/database_rewinder/compatibility.rb,
lib/database_rewinder/active_record_monkey.rb,
lib/database_rewinder/multiple_statements_executor.rb

Defined Under Namespace

Modules: Compatibility, InsertRecorder, MultipleStatementsExecutor Classes: Cleaner, DummyModel, Railtie

Constant Summary collapse

VERSION =
Gem.loaded_specs['database_rewinder'].version.to_s

Class Attribute Summary collapse

Class Method Summary collapse

Methods included from Compatibility

[], clean_with, cleaning, start, strategy=

Class Attribute Details

.database_configurationObject



14
15
16
# File 'lib/database_rewinder.rb', line 14

def database_configuration
  @database_configuration || ActiveRecord::Base.configurations
end

Class Method Details

.[](connection) ⇒ Object



24
25
26
# File 'lib/database_rewinder.rb', line 24

def [](connection)
  @cleaners.detect {|c| c.connection_name == connection} || create_cleaner(connection)
end

.all=(v) ⇒ Object



28
29
30
# File 'lib/database_rewinder.rb', line 28

def all=(v)
  @clean_all = v
end

.all_table_names(connection) ⇒ Object

cache AR connection.tables



75
76
77
78
79
80
81
82
83
# File 'lib/database_rewinder.rb', line 75

def all_table_names(connection)
  cache_key = get_cache_key(connection.pool)
  #NOTE connection.tables warns on AR 5 with some adapters
  tables = ActiveSupport::Deprecation.silence { connection.tables }
  @table_names_cache[cache_key] ||= tables.reject do |t|
    (t == ActiveRecord::SchemaMigration.table_name) ||
    (ActiveRecord::Base.respond_to?(:internal_metadata_table_name) && (t == ActiveRecord::Base.))
  end
end

.clean(multiple: true) ⇒ Object



62
63
64
65
66
67
68
# File 'lib/database_rewinder.rb', line 62

def clean(multiple: true)
  if @clean_all
    clean_all multiple: multiple
  else
    cleaners.each {|c| c.clean multiple: multiple}
  end
end

.clean_all(multiple: true) ⇒ Object



70
71
72
# File 'lib/database_rewinder.rb', line 70

def clean_all(multiple: true)
  cleaners.each {|c| c.clean_all multiple: multiple}
end

.cleanersObject



32
33
34
35
# File 'lib/database_rewinder.rb', line 32

def cleaners
  create_cleaner 'test' if @cleaners.empty?
  @cleaners
end

.create_cleaner(connection_name) ⇒ Object



18
19
20
21
22
# File 'lib/database_rewinder.rb', line 18

def create_cleaner(connection_name)
  config = configuration_hash_for(connection_name) or raise %Q[Database configuration named "#{connection_name}" is not configured.]

  Cleaner.new(config: config, connection_name: connection_name, only: @only, except: @except).tap {|c| @cleaners << c}
end

.database_configuration_for(connection_name) ⇒ Object



108
109
110
# File 'lib/database_rewinder.rb', line 108

def database_configuration_for(connection_name)
  traditional_configuration_for(connection_name) || multiple_database_configuration_for(connection_name)
end

.initObject



10
11
12
# File 'lib/database_rewinder.rb', line 10

def init
  @cleaners, @table_names_cache, @clean_all, @only, @except, @database_configuration = [], {}, false
end

.multiple_database_configuration_for(connection_name) ⇒ Object



116
117
118
119
120
121
122
# File 'lib/database_rewinder.rb', line 116

def multiple_database_configuration_for(connection_name)
  if (ActiveRecord::VERSION::MAJOR >= 7) || ((ActiveRecord::VERSION::MAJOR >= 6) && (ActiveRecord::VERSION::MINOR >= 1))
    database_configuration.configs_for(name: connection_name)
  else
    database_configuration.configs_for(spec_name: connection_name)
  end
end

.record_inserted_table(connection, sql) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/database_rewinder.rb', line 37

def record_inserted_table(connection, sql)
  config = connection.instance_variable_get(:'@config')
  database = config[:database]
  #NOTE What's the best way to get the app dir besides Rails.root? I know Dir.pwd here might not be the right solution, but it should work in most cases...
  root_dir = defined?(Rails) && Rails.respond_to?(:root) ? Rails.root : Dir.pwd
  cleaner = cleaners.detect do |c|
    if (config[:adapter] == 'sqlite3') && (config[:database] != ':memory:')
      File.expand_path(c.db, root_dir) == File.expand_path(database, root_dir)
    else
      c.db == database
    end
  end or return

  sql.split(';').each do |statement|
    match = statement.match(/\A\s*INSERT(?:\s+IGNORE)?(?:\s+INTO)?\s+(?:\.*[`"]?([^.\s`"(]+)[`"]?)*/i)
    next unless match

    table = match[1]
    if table
      cleaner.inserted_tables << table unless cleaner.inserted_tables.include? table
      cleaner.pool ||= connection.pool
    end
  end
end

.traditional_configuration_for(connection_name) ⇒ Object



112
113
114
# File 'lib/database_rewinder.rb', line 112

def traditional_configuration_for(connection_name)
  database_configuration.configs_for(env_name: connection_name).first
end