Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/solid_cache/store/failsafe.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ class Store
module Failsafe
TRANSIENT_ACTIVE_RECORD_ERRORS = [
ActiveRecord::AdapterTimeout,
ActiveRecord::ConnectionFailed,
ActiveRecord::ConnectionNotEstablished,
ActiveRecord::Deadlocked,
ActiveRecord::LockWaitTimeout,
Expand Down
12 changes: 10 additions & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,20 @@ def shard_keys(cache, shard)
shard_keys.map { |key| key.delete_prefix("#{@namespace}:") }
end

def emulating_timeouts
def emulating_errors(error_class)
ar_methods = [ :select_all, :delete, :exec_insert_all ]
stub_matcher = ActiveRecord::Base.connection.class.any_instance
ar_methods.each { |method| stub_matcher.stubs(method).raises(ActiveRecord::StatementTimeout) }
ar_methods.each { |method| stub_matcher.stubs(method).raises(error_class) }
yield
ensure
ar_methods.each { |method| stub_matcher.unstub(method) }
end

def emulating_timeouts(&block)
emulating_errors(ActiveRecord::StatementTimeout, &block)
end

def emulating_connection_failures(&block)
emulating_errors(ActiveRecord::ConnectionFailed, &block)
end
end
26 changes: 26 additions & 0 deletions test/unit/solid_cache_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,32 @@ def emulating_unavailability
end
end

class SolidCacheConnectionFailedFailsafeTest < ActiveSupport::TestCase
include FailureSafetyBehavior

setup do
@cache = nil
@namespace = "test-#{SecureRandom.hex}"

@cache = lookup_store(expires_in: 60)
# @cache.logger = Logger.new($stdout) # For test debugging

# For LocalCacheBehavior tests
@peek = lookup_store(expires_in: 60)
end

# A terminated connection raises ActiveRecord::ConnectionFailed, which is a
# subclass of ActiveRecord::StatementInvalid rather than of
# ActiveRecord::ConnectionNotEstablished, so it needs its own failsafe entry.
# Regression test for https://github.com/rails/solid_cache/issues/307.
def emulating_unavailability
wait_for_background_tasks(@cache)
emulating_connection_failures do
yield lookup_store(namespace: @namespace)
end
end
end

class SolidCacheRaisingTest < ActiveSupport::TestCase
include FailureRaisingBehavior

Expand Down
Loading