Sha256: f248d95e4cfb8b01d94b3280b147daf1e47a760cd2ed0cc09b34ca6ac2cacd56
Contents?: true
Size: 1.96 KB
Versions: 1
Compression:
Stored size: 1.96 KB
Contents
# frozen_string_literal: true require 'spec_helper' require 'rack' class TestApp def call(env) state = {} [Nanika1, Nanika2].each do |model| r = model.with_readonly { model.connection.query_cache_enabled } w = model.with_writable { model.connection.query_cache_enabled } state[model.name] = { readonly: r, writable: w } end env[:state] = state :result end end RSpec.describe SwitchPoint::QueryCache do let(:app) do Rack::Builder.new do use SwitchPoint::QueryCache run TestApp.new end end describe '#call' do before do # Ensure the connection is established. # The query cache is enabled only when connected. # https://github.com/rails/rails/commit/25fc1f584def4c1bc36be805833194d8aee55b3a [Nanika1, Nanika2].each do |model| model.with_readonly { model.connection } model.with_writable { model.connection } end end it 'enables query cache of all models' do env = {} expect(app.call(env)).to eq(:result) expect(env[:state]).to eq( 'Nanika1' => { readonly: true, writable: true }, 'Nanika2' => { readonly: true, writable: true }, ) end context 'when names are specified' do let(:app) do Rack::Builder.new do use SwitchPoint::QueryCache, %i[main nanika1] run TestApp.new end end it 'enables query caches of specified models' do env = {} expect(app.call(env)).to eq(:result) expect(env[:state]).to eq( 'Nanika1' => { readonly: true, writable: true }, 'Nanika2' => { readonly: false, writable: true }, ) end end context 'when unknown name is specified' do let(:app) do Rack::Builder.new do use SwitchPoint::QueryCache, [:unknown] run TestApp.new end end it 'raises error' do expect { app.call({}) }.to raise_error(KeyError) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
switch_point-0.9.0 | spec/switch_point/query_cache_spec.rb |