bullet 6.0.0 → 6.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +20 -1
- data/CHANGELOG.md +26 -1
- data/Gemfile.rails-6.0 +1 -1
- data/Gemfile.rails-6.1 +15 -0
- data/README.md +30 -9
- data/lib/bullet.rb +26 -16
- data/lib/bullet/active_job.rb +13 -0
- data/lib/bullet/active_record4.rb +9 -24
- data/lib/bullet/active_record41.rb +7 -19
- data/lib/bullet/active_record42.rb +8 -16
- data/lib/bullet/active_record5.rb +188 -170
- data/lib/bullet/active_record52.rb +176 -161
- data/lib/bullet/active_record60.rb +193 -171
- data/lib/bullet/active_record61.rb +267 -0
- data/lib/bullet/bullet_xhr.js +32 -27
- data/lib/bullet/dependency.rb +42 -34
- data/lib/bullet/detector/association.rb +24 -18
- data/lib/bullet/detector/base.rb +1 -2
- data/lib/bullet/detector/counter_cache.rb +10 -6
- data/lib/bullet/detector/n_plus_one_query.rb +18 -8
- data/lib/bullet/detector/unused_eager_loading.rb +5 -2
- data/lib/bullet/mongoid4x.rb +2 -6
- data/lib/bullet/mongoid5x.rb +2 -6
- data/lib/bullet/mongoid6x.rb +2 -6
- data/lib/bullet/mongoid7x.rb +2 -6
- data/lib/bullet/notification/base.rb +14 -18
- data/lib/bullet/notification/n_plus_one_query.rb +2 -4
- data/lib/bullet/notification/unused_eager_loading.rb +2 -4
- data/lib/bullet/rack.rb +21 -13
- data/lib/bullet/stack_trace_filter.rb +5 -10
- data/lib/bullet/version.rb +1 -1
- data/lib/generators/bullet/install_generator.rb +23 -23
- data/perf/benchmark.rb +8 -14
- data/spec/bullet/detector/counter_cache_spec.rb +6 -6
- data/spec/bullet/detector/n_plus_one_query_spec.rb +7 -3
- data/spec/bullet/detector/unused_eager_loading_spec.rb +19 -6
- data/spec/bullet/notification/base_spec.rb +1 -3
- data/spec/bullet/notification/n_plus_one_query_spec.rb +16 -3
- data/spec/bullet/notification/unused_eager_loading_spec.rb +5 -1
- data/spec/bullet/rack_spec.rb +76 -5
- data/spec/bullet/registry/association_spec.rb +2 -2
- data/spec/bullet/registry/base_spec.rb +1 -1
- data/spec/bullet_spec.rb +10 -29
- data/spec/integration/active_record/association_spec.rb +41 -122
- data/spec/integration/counter_cache_spec.rb +10 -30
- data/spec/integration/mongoid/association_spec.rb +18 -32
- data/spec/models/folder.rb +1 -2
- data/spec/models/group.rb +1 -2
- data/spec/models/page.rb +1 -2
- data/spec/models/writer.rb +1 -2
- data/spec/spec_helper.rb +6 -10
- data/spec/support/bullet_ext.rb +8 -9
- data/spec/support/mongo_seed.rb +2 -16
- metadata +9 -6
@@ -9,7 +9,8 @@ module Bullet
|
|
9
9
|
bundler_path = Bundler.bundle_path.to_s
|
10
10
|
select_caller_locations do |location|
|
11
11
|
caller_path = location_as_path(location)
|
12
|
-
caller_path.include?(Bullet.app_root) && !caller_path.include?(vendor_root) &&
|
12
|
+
caller_path.include?(Bullet.app_root) && !caller_path.include?(vendor_root) &&
|
13
|
+
!caller_path.include?(bundler_path) ||
|
13
14
|
Bullet.stacktrace_includes.any? { |include_pattern| pattern_matches?(location, include_pattern) }
|
14
15
|
end
|
15
16
|
end
|
@@ -51,20 +52,14 @@ module Bullet
|
|
51
52
|
|
52
53
|
def select_caller_locations
|
53
54
|
if ruby_19?
|
54
|
-
caller.select
|
55
|
-
yield caller_path
|
56
|
-
end
|
55
|
+
caller.select { |caller_path| yield caller_path }
|
57
56
|
else
|
58
|
-
caller_locations.select
|
59
|
-
yield location
|
60
|
-
end
|
57
|
+
caller_locations.select { |location| yield location }
|
61
58
|
end
|
62
59
|
end
|
63
60
|
|
64
61
|
def ruby_19?
|
65
|
-
if @ruby_19.nil?
|
66
|
-
@ruby_19 = Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.0.0')
|
67
|
-
end
|
62
|
+
@ruby_19 = Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.0.0') if @ruby_19.nil?
|
68
63
|
@ruby_19
|
69
64
|
end
|
70
65
|
end
|
data/lib/bullet/version.rb
CHANGED
@@ -10,17 +10,17 @@ module Bullet
|
|
10
10
|
|
11
11
|
def enable_in_development
|
12
12
|
environment(nil, env: 'development') do
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
13
|
+
<<~FILE
|
14
|
+
config.after_initialize do
|
15
|
+
Bullet.enable = true
|
16
|
+
Bullet.alert = true
|
17
|
+
Bullet.bullet_logger = true
|
18
|
+
Bullet.console = true
|
19
|
+
# Bullet.growl = true
|
20
|
+
Bullet.rails_logger = true
|
21
|
+
Bullet.add_footer = true
|
22
|
+
end
|
23
|
+
|
24
24
|
FILE
|
25
25
|
end
|
26
26
|
|
@@ -28,20 +28,20 @@ module Bullet
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def enable_in_test
|
31
|
-
|
32
|
-
environment(nil, env: 'test') do
|
33
|
-
<<-"FILE".strip
|
34
|
-
|
35
|
-
config.after_initialize do
|
36
|
-
Bullet.enable = true
|
37
|
-
Bullet.bullet_logger = true
|
38
|
-
Bullet.raise = true # raise an error if n+1 query occurs
|
39
|
-
end
|
40
|
-
FILE
|
41
|
-
end
|
31
|
+
return unless yes?('Would you like to enable bullet in test environment? (y/n)')
|
42
32
|
|
43
|
-
|
33
|
+
environment(nil, env: 'test') do
|
34
|
+
<<~FILE
|
35
|
+
config.after_initialize do
|
36
|
+
Bullet.enable = true
|
37
|
+
Bullet.bullet_logger = true
|
38
|
+
Bullet.raise = true # raise an error if n+1 query occurs
|
39
|
+
end
|
40
|
+
|
41
|
+
FILE
|
44
42
|
end
|
43
|
+
|
44
|
+
say 'Enabled bullet in config/environments/test.rb'
|
45
45
|
end
|
46
46
|
end
|
47
47
|
end
|
data/perf/benchmark.rb
CHANGED
@@ -29,11 +29,11 @@ class User < ActiveRecord::Base
|
|
29
29
|
end
|
30
30
|
|
31
31
|
# create database bullet_benchmark;
|
32
|
-
ActiveRecord::Base.establish_connection(
|
32
|
+
ActiveRecord::Base.establish_connection(
|
33
|
+
adapter: 'mysql2', database: 'bullet_benchmark', server: '/tmp/mysql.socket', username: 'root'
|
34
|
+
)
|
33
35
|
|
34
|
-
ActiveRecord::Base.connection.tables.each
|
35
|
-
ActiveRecord::Base.connection.drop_table(table)
|
36
|
-
end
|
36
|
+
ActiveRecord::Base.connection.tables.each { |table| ActiveRecord::Base.connection.drop_table(table) }
|
37
37
|
|
38
38
|
ActiveRecord::Schema.define(version: 1) do
|
39
39
|
create_table :posts do |t|
|
@@ -54,26 +54,20 @@ ActiveRecord::Schema.define(version: 1) do
|
|
54
54
|
end
|
55
55
|
|
56
56
|
users_size = 100
|
57
|
-
posts_size =
|
57
|
+
posts_size = 1_000
|
58
58
|
comments_size = 10_000
|
59
59
|
users = []
|
60
|
-
users_size.times
|
61
|
-
users << User.new(name: "user#{i}")
|
62
|
-
end
|
60
|
+
users_size.times { |i| users << User.new(name: "user#{i}") }
|
63
61
|
User.import users
|
64
62
|
users = User.all
|
65
63
|
|
66
64
|
posts = []
|
67
|
-
posts_size.times
|
68
|
-
posts << Post.new(title: "Title #{i}", body: "Body #{i}", user: users[i % 100])
|
69
|
-
end
|
65
|
+
posts_size.times { |i| posts << Post.new(title: "Title #{i}", body: "Body #{i}", user: users[i % 100]) }
|
70
66
|
Post.import posts
|
71
67
|
posts = Post.all
|
72
68
|
|
73
69
|
comments = []
|
74
|
-
comments_size.times
|
75
|
-
comments << Comment.new(body: "Comment #{i}", post: posts[i % 1000], user: users[i % 100])
|
76
|
-
end
|
70
|
+
comments_size.times { |i| comments << Comment.new(body: "Comment #{i}", post: posts[i % 1_000], user: users[i % 100]) }
|
77
71
|
Comment.import comments
|
78
72
|
|
79
73
|
puts 'Start benchmarking...'
|
@@ -12,15 +12,15 @@ module Bullet
|
|
12
12
|
|
13
13
|
context '.add_counter_cache' do
|
14
14
|
it 'should create notification if conditions met' do
|
15
|
-
expect(CounterCache).to receive(:conditions_met?).with(@post1, [
|
16
|
-
expect(CounterCache).to receive(:create_notification).with('Post', [
|
17
|
-
CounterCache.add_counter_cache(@post1, [
|
15
|
+
expect(CounterCache).to receive(:conditions_met?).with(@post1, %i[comments]).and_return(true)
|
16
|
+
expect(CounterCache).to receive(:create_notification).with('Post', %i[comments])
|
17
|
+
CounterCache.add_counter_cache(@post1, %i[comments])
|
18
18
|
end
|
19
19
|
|
20
20
|
it 'should not create notification if conditions not met' do
|
21
|
-
expect(CounterCache).to receive(:conditions_met?).with(@post1, [
|
21
|
+
expect(CounterCache).to receive(:conditions_met?).with(@post1, %i[comments]).and_return(false)
|
22
22
|
expect(CounterCache).to receive(:create_notification).never
|
23
|
-
CounterCache.add_counter_cache(@post1, [
|
23
|
+
CounterCache.add_counter_cache(@post1, %i[comments])
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
@@ -47,7 +47,7 @@ module Bullet
|
|
47
47
|
expect(CounterCache.conditions_met?(@post1, :associations)).to eq false
|
48
48
|
end
|
49
49
|
|
50
|
-
it 'should be
|
50
|
+
it 'should be false when object is possible, and impossible' do
|
51
51
|
CounterCache.add_possible_objects(@post1)
|
52
52
|
CounterCache.add_impossible_object(@post1)
|
53
53
|
expect(CounterCache.conditions_met?(@post1, :associations)).to eq false
|
@@ -76,8 +76,8 @@ module Bullet
|
|
76
76
|
context '.call_association' do
|
77
77
|
it 'should create notification if conditions met' do
|
78
78
|
expect(NPlusOneQuery).to receive(:conditions_met?).with(@post, :association).and_return(true)
|
79
|
-
expect(NPlusOneQuery).to receive(:caller_in_project).and_return([
|
80
|
-
expect(NPlusOneQuery).to receive(:create_notification).with([
|
79
|
+
expect(NPlusOneQuery).to receive(:caller_in_project).and_return(%w[caller])
|
80
|
+
expect(NPlusOneQuery).to receive(:create_notification).with(%w[caller], 'Post', :association)
|
81
81
|
NPlusOneQuery.call_association(@post, :association)
|
82
82
|
end
|
83
83
|
|
@@ -149,7 +149,11 @@ module Bullet
|
|
149
149
|
|
150
150
|
expect(NPlusOneQuery).to receive(:caller_locations).and_return([in_project, *included_gems, excluded_gem])
|
151
151
|
expect(NPlusOneQuery).to receive(:conditions_met?).with(@post, :association).and_return(true)
|
152
|
-
expect(NPlusOneQuery).to receive(:create_notification).with(
|
152
|
+
expect(NPlusOneQuery).to receive(:create_notification).with(
|
153
|
+
[in_project, *included_gems],
|
154
|
+
'Post',
|
155
|
+
:association
|
156
|
+
)
|
153
157
|
NPlusOneQuery.call_association(@post, :association)
|
154
158
|
end
|
155
159
|
end
|
@@ -36,12 +36,14 @@ module Bullet
|
|
36
36
|
it 'should return empty if associations exist in call_association' do
|
37
37
|
UnusedEagerLoading.add_eager_loadings([@post], :association)
|
38
38
|
UnusedEagerLoading.add_call_object_associations(@post, :association)
|
39
|
-
expect(
|
39
|
+
expect(
|
40
|
+
UnusedEagerLoading.send(:diff_object_associations, @post.bullet_key, Set.new([:association]))
|
41
|
+
).to be_empty
|
40
42
|
end
|
41
43
|
end
|
42
44
|
|
43
45
|
context '.check_unused_preload_associations' do
|
44
|
-
let(:paths) { [
|
46
|
+
let(:paths) { %w[/dir1 /dir1/subdir] }
|
45
47
|
it 'should create notification if object_association_diff is not empty' do
|
46
48
|
UnusedEagerLoading.add_object_associations(@post, :association)
|
47
49
|
allow(UnusedEagerLoading).to receive(:caller_in_project).and_return(paths)
|
@@ -53,7 +55,9 @@ module Bullet
|
|
53
55
|
UnusedEagerLoading.add_object_associations(@post, :association)
|
54
56
|
UnusedEagerLoading.add_eager_loadings([@post], :association)
|
55
57
|
UnusedEagerLoading.add_call_object_associations(@post, :association)
|
56
|
-
expect(
|
58
|
+
expect(
|
59
|
+
UnusedEagerLoading.send(:diff_object_associations, @post.bullet_key, Set.new([:association]))
|
60
|
+
).to be_empty
|
57
61
|
expect(UnusedEagerLoading).not_to receive(:create_notification).with('Post', [:association])
|
58
62
|
UnusedEagerLoading.check_unused_preload_associations
|
59
63
|
end
|
@@ -62,14 +66,23 @@ module Bullet
|
|
62
66
|
context '.add_eager_loadings' do
|
63
67
|
it 'should add objects, associations pair when eager_loadings are empty' do
|
64
68
|
UnusedEagerLoading.add_eager_loadings([@post, @post2], :associations)
|
65
|
-
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
69
|
+
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
70
|
+
[@post.bullet_key, @post2.bullet_key],
|
71
|
+
:associations
|
72
|
+
)
|
66
73
|
end
|
67
74
|
|
68
75
|
it 'should add objects, associations pair for existing eager_loadings' do
|
69
76
|
UnusedEagerLoading.add_eager_loadings([@post, @post2], :association1)
|
70
77
|
UnusedEagerLoading.add_eager_loadings([@post, @post2], :association2)
|
71
|
-
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
72
|
-
|
78
|
+
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
79
|
+
[@post.bullet_key, @post2.bullet_key],
|
80
|
+
:association1
|
81
|
+
)
|
82
|
+
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
83
|
+
[@post.bullet_key, @post2.bullet_key],
|
84
|
+
:association2
|
85
|
+
)
|
73
86
|
end
|
74
87
|
|
75
88
|
it 'should merge objects, associations pair for existing eager_loadings' do
|
@@ -26,9 +26,7 @@ module Bullet
|
|
26
26
|
end
|
27
27
|
|
28
28
|
it 'should leverage ENV parameter' do
|
29
|
-
temp_env_variable('USER', 'bogus')
|
30
|
-
expect(subject.whoami).to eq('user: bogus')
|
31
|
-
end
|
29
|
+
temp_env_variable('USER', 'bogus') { expect(subject.whoami).to eq('user: bogus') }
|
32
30
|
end
|
33
31
|
|
34
32
|
it 'should return blank if no user available' do
|
@@ -7,9 +7,22 @@ module Bullet
|
|
7
7
|
describe NPlusOneQuery do
|
8
8
|
subject { NPlusOneQuery.new([%w[caller1 caller2]], Post, %i[comments votes], 'path') }
|
9
9
|
|
10
|
-
it
|
11
|
-
|
12
|
-
|
10
|
+
it do
|
11
|
+
expect(subject.body_with_caller).to eq(
|
12
|
+
" Post => [:comments, :votes]\n Add to your query: .includes([:comments, :votes])\nCall stack\n caller1\n caller2\n"
|
13
|
+
)
|
14
|
+
end
|
15
|
+
it do
|
16
|
+
expect([subject.body_with_caller, subject.body_with_caller]).to eq(
|
17
|
+
[
|
18
|
+
" Post => [:comments, :votes]\n Add to your query: .includes([:comments, :votes])\nCall stack\n caller1\n caller2\n",
|
19
|
+
" Post => [:comments, :votes]\n Add to your query: .includes([:comments, :votes])\nCall stack\n caller1\n caller2\n"
|
20
|
+
]
|
21
|
+
)
|
22
|
+
end
|
23
|
+
it do
|
24
|
+
expect(subject.body).to eq(" Post => [:comments, :votes]\n Add to your query: .includes([:comments, :votes])")
|
25
|
+
end
|
13
26
|
it { expect(subject.title).to eq('USE eager loading in path') }
|
14
27
|
end
|
15
28
|
end
|
@@ -7,7 +7,11 @@ module Bullet
|
|
7
7
|
describe UnusedEagerLoading do
|
8
8
|
subject { UnusedEagerLoading.new([''], Post, %i[comments votes], 'path') }
|
9
9
|
|
10
|
-
it
|
10
|
+
it do
|
11
|
+
expect(subject.body).to eq(
|
12
|
+
" Post => [:comments, :votes]\n Remove from your query: .includes([:comments, :votes])"
|
13
|
+
)
|
14
|
+
end
|
11
15
|
it { expect(subject.title).to eq('AVOID eager loading in path') }
|
12
16
|
end
|
13
17
|
end
|
data/spec/bullet/rack_spec.rb
CHANGED
@@ -67,12 +67,13 @@ module Bullet
|
|
67
67
|
|
68
68
|
it 'should change response body if notification is active' do
|
69
69
|
expect(Bullet).to receive(:notification?).and_return(true)
|
70
|
+
expect(Bullet).to receive(:console_enabled?).and_return(true)
|
70
71
|
expect(Bullet).to receive(:gather_inline_notifications).and_return('<bullet></bullet>')
|
71
72
|
expect(middleware).to receive(:xhr_script).and_return('')
|
72
73
|
expect(Bullet).to receive(:perform_out_of_channel_notifications)
|
73
|
-
|
74
|
+
_, headers, response = middleware.call('Content-Type' => 'text/html')
|
74
75
|
expect(headers['Content-Length']).to eq('56')
|
75
|
-
expect(response).to eq([
|
76
|
+
expect(response).to eq(%w[<html><head></head><body><bullet></bullet></body></html>])
|
76
77
|
end
|
77
78
|
|
78
79
|
it 'should set the right Content-Length if response body contains accents' do
|
@@ -80,10 +81,80 @@ module Bullet
|
|
80
81
|
response.body = '<html><head></head><body>é</body></html>'
|
81
82
|
app.response = response
|
82
83
|
expect(Bullet).to receive(:notification?).and_return(true)
|
84
|
+
allow(Bullet).to receive(:console_enabled?).and_return(true)
|
83
85
|
expect(Bullet).to receive(:gather_inline_notifications).and_return('<bullet></bullet>')
|
84
|
-
|
86
|
+
_, headers, response = middleware.call('Content-Type' => 'text/html')
|
85
87
|
expect(headers['Content-Length']).to eq((58 + middleware.send(:xhr_script).length).to_s)
|
86
88
|
end
|
89
|
+
|
90
|
+
context 'with injection notifiers' do
|
91
|
+
before do
|
92
|
+
expect(Bullet).to receive(:notification?).and_return(true)
|
93
|
+
allow(Bullet).to receive(:gather_inline_notifications).and_return('<bullet></bullet>')
|
94
|
+
allow(middleware).to receive(:xhr_script).and_return('')
|
95
|
+
allow(middleware).to receive(:footer_note).and_return('footer')
|
96
|
+
expect(Bullet).to receive(:perform_out_of_channel_notifications)
|
97
|
+
end
|
98
|
+
|
99
|
+
it 'should change response body if add_footer is true' do
|
100
|
+
expect(Bullet).to receive(:add_footer).twice.and_return(true)
|
101
|
+
_, headers, response = middleware.call('Content-Type' => 'text/html')
|
102
|
+
|
103
|
+
expect(headers['Content-Length']).to eq((56 + middleware.send(:footer_note).length).to_s)
|
104
|
+
expect(response.first).to start_with('<html><head></head><body>')
|
105
|
+
expect(response.first).to include('<bullet></bullet><')
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'should change response body for html safe string if add_footer is true' do
|
109
|
+
expect(Bullet).to receive(:add_footer).twice.and_return(true)
|
110
|
+
app.response = Support::ResponseDouble.new.tap do |response|
|
111
|
+
response.body = ActiveSupport::SafeBuffer.new('<html><head></head><body></body></html>')
|
112
|
+
end
|
113
|
+
_, headers, response = middleware.call('Content-Type' => 'text/html')
|
114
|
+
|
115
|
+
expect(headers['Content-Length']).to eq((56 + middleware.send(:footer_note).length).to_s)
|
116
|
+
expect(response.first).to start_with('<html><head></head><body>')
|
117
|
+
expect(response.first).to include('<bullet></bullet><')
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'should change response body if console_enabled is true' do
|
121
|
+
expect(Bullet).to receive(:console_enabled?).and_return(true)
|
122
|
+
_, headers, response = middleware.call('Content-Type' => 'text/html')
|
123
|
+
expect(headers['Content-Length']).to eq('56')
|
124
|
+
expect(response).to eq(%w[<html><head></head><body><bullet></bullet></body></html>])
|
125
|
+
end
|
126
|
+
|
127
|
+
it 'should change response body for html safe string if console_enabled is true' do
|
128
|
+
expect(Bullet).to receive(:console_enabled?).and_return(true)
|
129
|
+
app.response = Support::ResponseDouble.new.tap do |response|
|
130
|
+
response.body = ActiveSupport::SafeBuffer.new('<html><head></head><body></body></html>')
|
131
|
+
end
|
132
|
+
_, headers, response = middleware.call('Content-Type' => 'text/html')
|
133
|
+
expect(headers['Content-Length']).to eq('56')
|
134
|
+
expect(response).to eq(%w[<html><head></head><body><bullet></bullet></body></html>])
|
135
|
+
end
|
136
|
+
|
137
|
+
it "shouldn't change response body unnecessarily" do
|
138
|
+
expected_response = Support::ResponseDouble.new 'Actual body'
|
139
|
+
app.response = expected_response
|
140
|
+
_, _, response = middleware.call({})
|
141
|
+
expect(response).to eq(expected_response)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
context 'when skip_html_injection is enabled' do
|
146
|
+
it 'should not try to inject html' do
|
147
|
+
expected_response = Support::ResponseDouble.new 'Actual body'
|
148
|
+
app.response = expected_response
|
149
|
+
allow(Bullet).to receive(:notification?).and_return(true)
|
150
|
+
allow(Bullet).to receive(:skip_html_injection?).and_return(true)
|
151
|
+
expect(Bullet).to receive(:gather_inline_notifications).never
|
152
|
+
expect(middleware).to receive(:xhr_script).never
|
153
|
+
expect(Bullet).to receive(:perform_out_of_channel_notifications)
|
154
|
+
_, _, response = middleware.call('Content-Type' => 'text/html')
|
155
|
+
expect(response).to eq(expected_response)
|
156
|
+
end
|
157
|
+
end
|
87
158
|
end
|
88
159
|
|
89
160
|
context 'when Bullet is disabled' do
|
@@ -98,8 +169,8 @@ module Bullet
|
|
98
169
|
|
99
170
|
context '#set_header' do
|
100
171
|
it 'should truncate headers to under 8kb' do
|
101
|
-
long_header = ['a' *
|
102
|
-
expected_res = (['a' *
|
172
|
+
long_header = ['a' * 1_024] * 10
|
173
|
+
expected_res = (['a' * 1_024] * 7).to_json
|
103
174
|
expect(middleware.set_header({}, 'Dummy-Header', long_header)).to eq(expected_res)
|
104
175
|
end
|
105
176
|
end
|
@@ -16,11 +16,11 @@ module Bullet
|
|
16
16
|
|
17
17
|
context '#similarly_associated' do
|
18
18
|
it 'should return similarly associated keys' do
|
19
|
-
expect(subject.similarly_associated('key1', Set.new([
|
19
|
+
expect(subject.similarly_associated('key1', Set.new(%w[value]))).to eq(%w[key1 key2])
|
20
20
|
end
|
21
21
|
|
22
22
|
it 'should return empty if key does not exist' do
|
23
|
-
expect(subject.similarly_associated('key3', Set.new([
|
23
|
+
expect(subject.similarly_associated('key3', Set.new(%w[value]))).to be_empty
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
data/spec/bullet_spec.rb
CHANGED
@@ -17,9 +17,7 @@ describe Bullet, focused: true do
|
|
17
17
|
end
|
18
18
|
|
19
19
|
context 'disable Bullet' do
|
20
|
-
before
|
21
|
-
Bullet.enable = false
|
22
|
-
end
|
20
|
+
before { Bullet.enable = false }
|
23
21
|
|
24
22
|
it 'should be disabled' do
|
25
23
|
expect(subject).to_not be_enable
|
@@ -27,8 +25,8 @@ describe Bullet, focused: true do
|
|
27
25
|
|
28
26
|
context 'enable Bullet again without patching again the orms' do
|
29
27
|
before do
|
30
|
-
expect(Bullet::Mongoid).not_to receive(:enable) if defined?
|
31
|
-
expect(Bullet::ActiveRecord).not_to receive(:enable) if defined?
|
28
|
+
expect(Bullet::Mongoid).not_to receive(:enable) if defined?(Bullet::Mongoid)
|
29
|
+
expect(Bullet::ActiveRecord).not_to receive(:enable) if defined?(Bullet::ActiveRecord)
|
32
30
|
Bullet.enable = true
|
33
31
|
end
|
34
32
|
|
@@ -42,9 +40,7 @@ describe Bullet, focused: true do
|
|
42
40
|
|
43
41
|
describe '#start?' do
|
44
42
|
context 'when bullet is disabled' do
|
45
|
-
before(:each)
|
46
|
-
Bullet.enable = false
|
47
|
-
end
|
43
|
+
before(:each) { Bullet.enable = false }
|
48
44
|
|
49
45
|
it 'should not be started' do
|
50
46
|
expect(Bullet).not_to be_start
|
@@ -53,28 +49,19 @@ describe Bullet, focused: true do
|
|
53
49
|
end
|
54
50
|
|
55
51
|
describe '#debug' do
|
56
|
-
before(:each)
|
57
|
-
$stdout = StringIO.new
|
58
|
-
end
|
52
|
+
before(:each) { $stdout = StringIO.new }
|
59
53
|
|
60
|
-
after(:each)
|
61
|
-
$stdout = STDOUT
|
62
|
-
end
|
54
|
+
after(:each) { $stdout = STDOUT }
|
63
55
|
|
64
56
|
context 'when debug is enabled' do
|
65
|
-
before(:each)
|
66
|
-
ENV['BULLET_DEBUG'] = 'true'
|
67
|
-
end
|
57
|
+
before(:each) { ENV['BULLET_DEBUG'] = 'true' }
|
68
58
|
|
69
|
-
after(:each)
|
70
|
-
ENV['BULLET_DEBUG'] = 'false'
|
71
|
-
end
|
59
|
+
after(:each) { ENV['BULLET_DEBUG'] = 'false' }
|
72
60
|
|
73
61
|
it 'should output debug information' do
|
74
62
|
Bullet.debug('debug_message', 'this is helpful information')
|
75
63
|
|
76
|
-
expect($stdout.string)
|
77
|
-
.to eq("[Bullet][debug_message] this is helpful information\n")
|
64
|
+
expect($stdout.string).to eq("[Bullet][debug_message] this is helpful information\n")
|
78
65
|
end
|
79
66
|
end
|
80
67
|
|
@@ -125,13 +112,7 @@ describe Bullet, focused: true do
|
|
125
112
|
end
|
126
113
|
|
127
114
|
context 'when called with Rack environment hash' do
|
128
|
-
let(:env) {
|
129
|
-
{
|
130
|
-
'REQUEST_METHOD' => 'GET',
|
131
|
-
'PATH_INFO' => '/path',
|
132
|
-
'QUERY_STRING' => 'foo=bar'
|
133
|
-
}
|
134
|
-
}
|
115
|
+
let(:env) { { 'REQUEST_METHOD' => 'GET', 'PATH_INFO' => '/path', 'QUERY_STRING' => 'foo=bar' } }
|
135
116
|
|
136
117
|
context "when env['REQUEST_URI'] is nil" do
|
137
118
|
before { env['REQUEST_URI'] = nil }
|