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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
# frozen_string_literal: true
require 'spec_helper'
describe Bullet, focused: true do
subject { Bullet }
describe '#enable' do
context 'enable Bullet' do
before do
# Bullet.enable
# Do nothing. Bullet has already been enabled for the whole test suite.
end
it 'should be enabled' do
expect(subject).to be_enable
end
context 'disable Bullet' do
before { Bullet.enable = false }
it 'should be disabled' do
expect(subject).to_not be_enable
end
context 'enable Bullet again without patching again the orms' do
before do
expect(Bullet::Mongoid).not_to receive(:enable) if defined?(Bullet::Mongoid)
expect(Bullet::ActiveRecord).not_to receive(:enable) if defined?(Bullet::ActiveRecord)
Bullet.enable = true
end
it 'should be enabled again' do
expect(subject).to be_enable
end
end
end
end
end
# Testing the aliases.
describe '#enabled' do
context 'enable Bullet' do
before do
# Bullet.enable
# Do nothing. Bullet has already been enabled for the whole test suite.
end
it 'should be enabled' do
expect(subject).to be_enabled
end
context 'disable Bullet' do
before { Bullet.enabled = false }
it 'should be disabled' do
expect(subject).to_not be_enabled
end
context 'enable Bullet again without patching again the orms' do
before do
expect(Bullet::Mongoid).not_to receive(:enabled) if defined?(Bullet::Mongoid)
expect(Bullet::ActiveRecord).not_to receive(:enabled) if defined?(Bullet::ActiveRecord)
Bullet.enabled = true
end
it 'should be enabled again' do
expect(subject).to be_enabled
end
end
end
end
end
describe '#start?' do
context 'when bullet is disabled' do
before(:each) { Bullet.enable = false }
it 'should not be started' do
expect(Bullet).not_to be_start
end
end
end
describe '#debug' do
before(:each) { $stdout = StringIO.new }
after(:each) { $stdout = STDOUT }
context 'when debug is enabled' do
before(:each) { ENV['BULLET_DEBUG'] = 'true' }
after(:each) { ENV['BULLET_DEBUG'] = 'false' }
it 'should output debug information' do
Bullet.debug('debug_message', 'this is helpful information')
expect($stdout.string).to eq("[Bullet][debug_message] this is helpful information\n")
end
end
context 'when debug is disabled' do
it 'should output debug information' do
Bullet.debug('debug_message', 'this is helpful information')
expect($stdout.string).to be_empty
end
end
end
describe '#add_safelist' do
context "for 'special' class names" do
it 'is added to the safelist successfully' do
Bullet.add_safelist(type: :n_plus_one_query, class_name: 'Klass', association: :department)
expect(Bullet.get_safelist_associations(:n_plus_one_query, 'Klass')).to include :department
end
end
end
describe '#delete_safelist' do
context "for 'special' class names" do
it 'is deleted from the safelist successfully' do
Bullet.add_safelist(type: :n_plus_one_query, class_name: 'Klass', association: :department)
Bullet.delete_safelist(type: :n_plus_one_query, class_name: 'Klass', association: :department)
expect(Bullet.safelist[:n_plus_one_query]).to eq({})
end
end
context 'when exists multiple definitions' do
it 'is deleted from the safelist successfully' do
Bullet.add_safelist(type: :n_plus_one_query, class_name: 'Klass', association: :department)
Bullet.add_safelist(type: :n_plus_one_query, class_name: 'Klass', association: :team)
Bullet.delete_safelist(type: :n_plus_one_query, class_name: 'Klass', association: :team)
expect(Bullet.get_safelist_associations(:n_plus_one_query, 'Klass')).to include :department
expect(Bullet.get_safelist_associations(:n_plus_one_query, 'Klass')).to_not include :team
end
end
end
describe '#perform_out_of_channel_notifications' do
let(:notification) { double }
before do
allow(Bullet).to receive(:for_each_active_notifier_with_notification).and_yield(notification)
allow(notification).to receive(:notify_out_of_channel)
end
context 'when called with Rack environment hash' do
let(:env) { { 'REQUEST_METHOD' => 'GET', 'PATH_INFO' => '/path', 'QUERY_STRING' => 'foo=bar' } }
context "when env['REQUEST_URI'] is nil" do
before { env['REQUEST_URI'] = nil }
it 'should notification.url is built' do
expect(notification).to receive(:url=).with('GET /path?foo=bar')
Bullet.perform_out_of_channel_notifications(env)
end
end
context "when env['REQUEST_URI'] is present" do
before { env['REQUEST_URI'] = 'http://example.com/path' }
it "should notification.url is env['REQUEST_URI']" do
expect(notification).to receive(:url=).with('GET http://example.com/path')
Bullet.perform_out_of_channel_notifications(env)
end
end
end
end
end
|