bullet 6.0.2 → 6.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -1
- data/CHANGELOG.md +7 -0
- data/README.md +4 -2
- data/lib/bullet.rb +25 -16
- data/lib/bullet/active_job.rb +1 -7
- data/lib/bullet/active_record4.rb +9 -23
- 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 +183 -175
- data/lib/bullet/bullet_xhr.js +3 -9
- data/lib/bullet/dependency.rb +36 -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 +5 -3
- data/lib/bullet/stack_trace_filter.rb +5 -10
- data/lib/bullet/version.rb +1 -1
- data/lib/generators/bullet/install_generator.rb +4 -2
- data/perf/benchmark.rb +8 -14
- data/spec/bullet/detector/counter_cache_spec.rb +5 -5
- data/spec/bullet/detector/n_plus_one_query_spec.rb +7 -3
- data/spec/bullet/detector/unused_eager_loading_spec.rb +29 -12
- data/spec/bullet/notification/base_spec.rb +1 -3
- data/spec/bullet/notification/n_plus_one_query_spec.rb +18 -3
- data/spec/bullet/notification/unused_eager_loading_spec.rb +5 -1
- data/spec/bullet/rack_spec.rb +20 -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 +42 -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 +2 -2
@@ -10,7 +10,7 @@ module Bullet
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def body
|
13
|
-
"#{klazz_associations_str}\n Add to your
|
13
|
+
"#{klazz_associations_str}\n Add to your query: #{associations_str}"
|
14
14
|
end
|
15
15
|
|
16
16
|
def title
|
@@ -18,9 +18,7 @@ module Bullet
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def notification_data
|
21
|
-
super.merge(
|
22
|
-
backtrace: []
|
23
|
-
)
|
21
|
+
super.merge(backtrace: [])
|
24
22
|
end
|
25
23
|
|
26
24
|
protected
|
@@ -10,7 +10,7 @@ module Bullet
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def body
|
13
|
-
"#{klazz_associations_str}\n Remove from your
|
13
|
+
"#{klazz_associations_str}\n Remove from your query: #{associations_str}"
|
14
14
|
end
|
15
15
|
|
16
16
|
def title
|
@@ -18,9 +18,7 @@ module Bullet
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def notification_data
|
21
|
-
super.merge(
|
22
|
-
backtrace: []
|
23
|
-
)
|
21
|
+
super.merge(backtrace: [])
|
24
22
|
end
|
25
23
|
|
26
24
|
protected
|
data/lib/bullet/rack.rb
CHANGED
@@ -15,8 +15,9 @@ module Bullet
|
|
15
15
|
status, headers, response = @app.call(env)
|
16
16
|
|
17
17
|
response_body = nil
|
18
|
+
|
18
19
|
if Bullet.notification?
|
19
|
-
if !file?(headers) && !sse?(headers) && !empty?(response) && status == 200
|
20
|
+
if !Bullet.skip_html_injection? && !file?(headers) && !sse?(headers) && !empty?(response) && status == 200
|
20
21
|
if html_request?(headers, response)
|
21
22
|
response_body = response_body(response)
|
22
23
|
response_body = append_to_html_body(response_body, footer_note) if Bullet.add_footer
|
@@ -61,7 +62,7 @@ module Bullet
|
|
61
62
|
# Many proxy applications such as Nginx and AWS ELB limit
|
62
63
|
# the size a header to 8KB, so truncate the list of reports to
|
63
64
|
# be under that limit
|
64
|
-
header_array.pop while header_array.to_json.length > 8 *
|
65
|
+
header_array.pop while header_array.to_json.length > 8 * 1_024
|
65
66
|
headers[header_name] = header_array.to_json
|
66
67
|
end
|
67
68
|
|
@@ -98,7 +99,8 @@ module Bullet
|
|
98
99
|
end
|
99
100
|
|
100
101
|
def footer_header
|
101
|
-
cancel_button =
|
102
|
+
cancel_button =
|
103
|
+
"<span onclick='this.parentNode.remove()' style='position:absolute; right: 10px; top: 0px; font-weight: bold; color: #333;'>×</span>"
|
102
104
|
if Bullet.console_enabled?
|
103
105
|
"<span>See 'Uniform Notifier' in JS Console for Stacktrace</span>#{cancel_button}"
|
104
106
|
else
|
@@ -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,7 +10,7 @@ module Bullet
|
|
10
10
|
|
11
11
|
def enable_in_development
|
12
12
|
environment(nil, env: 'development') do
|
13
|
-
<<-"FILE"
|
13
|
+
<<-"FILE"
|
14
14
|
|
15
15
|
config.after_initialize do
|
16
16
|
Bullet.enable = true
|
@@ -22,6 +22,7 @@ module Bullet
|
|
22
22
|
Bullet.add_footer = true
|
23
23
|
end
|
24
24
|
FILE
|
25
|
+
.strip
|
25
26
|
end
|
26
27
|
|
27
28
|
say 'Enabled bullet in config/environments/development.rb'
|
@@ -30,7 +31,7 @@ module Bullet
|
|
30
31
|
def enable_in_test
|
31
32
|
if yes?('Would you like to enable bullet in test environment? (y/n)')
|
32
33
|
environment(nil, env: 'test') do
|
33
|
-
<<-"FILE"
|
34
|
+
<<-"FILE"
|
34
35
|
|
35
36
|
config.after_initialize do
|
36
37
|
Bullet.enable = true
|
@@ -38,6 +39,7 @@ module Bullet
|
|
38
39
|
Bullet.raise = true # raise an error if n+1 query occurs
|
39
40
|
end
|
40
41
|
FILE
|
42
|
+
.strip
|
41
43
|
end
|
42
44
|
|
43
45
|
say 'Enabled bullet in config/environments/test.rb'
|
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
|
|
@@ -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
|
@@ -13,39 +13,45 @@ module Bullet
|
|
13
13
|
|
14
14
|
context '.call_associations' do
|
15
15
|
it 'should get empty array if eager_loadings' do
|
16
|
-
expect(UnusedEagerLoading.send(:call_associations, @post.bullet_key, Set.new([
|
16
|
+
expect(UnusedEagerLoading.send(:call_associations, @post.bullet_key, Set.new(%i[association]))).to be_empty
|
17
17
|
end
|
18
18
|
|
19
19
|
it 'should get call associations if object and association are both in eager_loadings and call_object_associations' do
|
20
20
|
UnusedEagerLoading.add_eager_loadings([@post], :association)
|
21
21
|
UnusedEagerLoading.add_call_object_associations(@post, :association)
|
22
|
-
expect(UnusedEagerLoading.send(:call_associations, @post.bullet_key, Set.new([
|
22
|
+
expect(UnusedEagerLoading.send(:call_associations, @post.bullet_key, Set.new(%i[association]))).to eq(
|
23
|
+
%i[association]
|
24
|
+
)
|
23
25
|
end
|
24
26
|
|
25
27
|
it 'should not get call associations if not exist in call_object_associations' do
|
26
28
|
UnusedEagerLoading.add_eager_loadings([@post], :association)
|
27
|
-
expect(UnusedEagerLoading.send(:call_associations, @post.bullet_key, Set.new([
|
29
|
+
expect(UnusedEagerLoading.send(:call_associations, @post.bullet_key, Set.new(%i[association]))).to be_empty
|
28
30
|
end
|
29
31
|
end
|
30
32
|
|
31
33
|
context '.diff_object_associations' do
|
32
34
|
it 'should return associations not exist in call_association' do
|
33
|
-
expect(UnusedEagerLoading.send(:diff_object_associations, @post.bullet_key, Set.new([
|
35
|
+
expect(UnusedEagerLoading.send(:diff_object_associations, @post.bullet_key, Set.new(%i[association]))).to eq(
|
36
|
+
%i[association]
|
37
|
+
)
|
34
38
|
end
|
35
39
|
|
36
40
|
it 'should return empty if associations exist in call_association' do
|
37
41
|
UnusedEagerLoading.add_eager_loadings([@post], :association)
|
38
42
|
UnusedEagerLoading.add_call_object_associations(@post, :association)
|
39
|
-
expect(
|
43
|
+
expect(
|
44
|
+
UnusedEagerLoading.send(:diff_object_associations, @post.bullet_key, Set.new(%i[association]))
|
45
|
+
).to be_empty
|
40
46
|
end
|
41
47
|
end
|
42
48
|
|
43
49
|
context '.check_unused_preload_associations' do
|
44
|
-
let(:paths) { [
|
50
|
+
let(:paths) { %w[/dir1 /dir1/subdir] }
|
45
51
|
it 'should create notification if object_association_diff is not empty' do
|
46
52
|
UnusedEagerLoading.add_object_associations(@post, :association)
|
47
53
|
allow(UnusedEagerLoading).to receive(:caller_in_project).and_return(paths)
|
48
|
-
expect(UnusedEagerLoading).to receive(:create_notification).with(paths, 'Post', [
|
54
|
+
expect(UnusedEagerLoading).to receive(:create_notification).with(paths, 'Post', %i[association])
|
49
55
|
UnusedEagerLoading.check_unused_preload_associations
|
50
56
|
end
|
51
57
|
|
@@ -53,8 +59,10 @@ module Bullet
|
|
53
59
|
UnusedEagerLoading.add_object_associations(@post, :association)
|
54
60
|
UnusedEagerLoading.add_eager_loadings([@post], :association)
|
55
61
|
UnusedEagerLoading.add_call_object_associations(@post, :association)
|
56
|
-
expect(
|
57
|
-
|
62
|
+
expect(
|
63
|
+
UnusedEagerLoading.send(:diff_object_associations, @post.bullet_key, Set.new(%i[association]))
|
64
|
+
).to be_empty
|
65
|
+
expect(UnusedEagerLoading).not_to receive(:create_notification).with('Post', %i[association])
|
58
66
|
UnusedEagerLoading.check_unused_preload_associations
|
59
67
|
end
|
60
68
|
end
|
@@ -62,14 +70,23 @@ module Bullet
|
|
62
70
|
context '.add_eager_loadings' do
|
63
71
|
it 'should add objects, associations pair when eager_loadings are empty' do
|
64
72
|
UnusedEagerLoading.add_eager_loadings([@post, @post2], :associations)
|
65
|
-
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
73
|
+
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
74
|
+
[@post.bullet_key, @post2.bullet_key],
|
75
|
+
:associations
|
76
|
+
)
|
66
77
|
end
|
67
78
|
|
68
79
|
it 'should add objects, associations pair for existing eager_loadings' do
|
69
80
|
UnusedEagerLoading.add_eager_loadings([@post, @post2], :association1)
|
70
81
|
UnusedEagerLoading.add_eager_loadings([@post, @post2], :association2)
|
71
|
-
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
72
|
-
|
82
|
+
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
83
|
+
[@post.bullet_key, @post2.bullet_key],
|
84
|
+
:association1
|
85
|
+
)
|
86
|
+
expect(UnusedEagerLoading.send(:eager_loadings)).to be_include(
|
87
|
+
[@post.bullet_key, @post2.bullet_key],
|
88
|
+
:association2
|
89
|
+
)
|
73
90
|
end
|
74
91
|
|
75
92
|
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,24 @@ 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(
|
25
|
+
" Post => [:comments, :votes]\n Add to your query: .includes([:comments, :votes])"
|
26
|
+
)
|
27
|
+
end
|
13
28
|
it { expect(subject.title).to eq('USE eager loading in path') }
|
14
29
|
end
|
15
30
|
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
|
+
allow(Bullet).to receive(:skip_html_injection?).and_return(false)
|
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
|
@@ -81,9 +82,23 @@ module Bullet
|
|
81
82
|
app.response = response
|
82
83
|
expect(Bullet).to receive(:notification?).and_return(true)
|
83
84
|
expect(Bullet).to receive(:gather_inline_notifications).and_return('<bullet></bullet>')
|
84
|
-
|
85
|
+
_, headers, response = middleware.call('Content-Type' => 'text/html')
|
85
86
|
expect(headers['Content-Length']).to eq((58 + middleware.send(:xhr_script).length).to_s)
|
86
87
|
end
|
88
|
+
|
89
|
+
context 'when skip_html_injection is enabled' do
|
90
|
+
it 'should not try to inject html' do
|
91
|
+
expected_response = Support::ResponseDouble.new 'Actual body'
|
92
|
+
app.response = expected_response
|
93
|
+
allow(Bullet).to receive(:notification?).and_return(true)
|
94
|
+
allow(Bullet).to receive(:skip_html_injection?).and_return(true)
|
95
|
+
expect(Bullet).to receive(:gather_inline_notifications).never
|
96
|
+
expect(middleware).to receive(:xhr_script).never
|
97
|
+
expect(Bullet).to receive(:perform_out_of_channel_notifications)
|
98
|
+
_, _, response = middleware.call('Content-Type' => 'text/html')
|
99
|
+
expect(response).to eq(expected_response)
|
100
|
+
end
|
101
|
+
end
|
87
102
|
end
|
88
103
|
|
89
104
|
context 'when Bullet is disabled' do
|
@@ -98,8 +113,8 @@ module Bullet
|
|
98
113
|
|
99
114
|
context '#set_header' do
|
100
115
|
it 'should truncate headers to under 8kb' do
|
101
|
-
long_header = ['a' *
|
102
|
-
expected_res = (['a' *
|
116
|
+
long_header = ['a' * 1_024] * 10
|
117
|
+
expected_res = (['a' * 1_024] * 7).to_json
|
103
118
|
expect(middleware.set_header({}, 'Dummy-Header', long_header)).to eq(expected_res)
|
104
119
|
end
|
105
120
|
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
|