coverband 4.2.7 → 5.0.0.rc.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.standard.yml +26 -0
- data/.travis.yml +2 -1
- data/Gemfile +5 -7
- data/Gemfile.rails4 +0 -3
- data/Gemfile.rails6 +0 -3
- data/README.md +8 -77
- data/Rakefile +17 -17
- data/changes.md +30 -28
- data/config.ru +1 -1
- data/coverband.gemspec +31 -34
- data/lib/coverband.rb +68 -44
- data/lib/coverband/adapters/base.rb +17 -18
- data/lib/coverband/adapters/file_store.rb +38 -6
- data/lib/coverband/adapters/hash_redis_store.rb +24 -21
- data/lib/coverband/adapters/redis_store.rb +12 -12
- data/lib/coverband/adapters/stdout_store.rb +41 -0
- data/lib/coverband/adapters/web_service_store.rb +155 -0
- data/lib/coverband/at_exit.rb +1 -1
- data/lib/coverband/collectors/coverage.rb +15 -27
- data/lib/coverband/collectors/delta.rb +29 -9
- data/lib/coverband/collectors/view_tracker.rb +10 -10
- data/lib/coverband/collectors/view_tracker_service.rb +59 -0
- data/lib/coverband/configuration.rb +149 -112
- data/lib/coverband/integrations/background.rb +6 -6
- data/lib/coverband/integrations/rack_server_check.rb +3 -3
- data/lib/coverband/reporters/base.rb +11 -12
- data/lib/coverband/reporters/console_report.rb +1 -1
- data/lib/coverband/reporters/html_report.rb +10 -30
- data/lib/coverband/reporters/web.rb +55 -50
- data/lib/coverband/utils/absolute_file_converter.rb +6 -6
- data/lib/coverband/utils/html_formatter.rb +32 -61
- data/lib/coverband/utils/railtie.rb +23 -6
- data/lib/coverband/utils/relative_file_converter.rb +2 -2
- data/lib/coverband/utils/result.rb +6 -11
- data/lib/coverband/utils/results.rb +0 -10
- data/lib/coverband/utils/source_file.rb +21 -30
- data/lib/coverband/utils/tasks.rb +8 -11
- data/lib/coverband/version.rb +1 -1
- data/public/application.js +0 -30
- data/test/benchmarks/benchmark.rake +97 -92
- data/test/benchmarks/dog.rb +1 -1
- data/test/benchmarks/init_rails.rake +4 -4
- data/test/coverband/adapters/base_test.rb +29 -30
- data/test/coverband/adapters/file_store_test.rb +19 -20
- data/test/coverband/adapters/hash_redis_store_test.rb +57 -57
- data/test/coverband/adapters/redis_store_test.rb +26 -26
- data/test/coverband/adapters/web_service_store_test.rb +56 -0
- data/test/coverband/at_exit_test.rb +2 -2
- data/test/coverband/collectors/coverage_test.rb +33 -47
- data/test/coverband/collectors/delta_test.rb +52 -23
- data/test/coverband/collectors/view_tracker_test.rb +35 -35
- data/test/coverband/configuration_test.rb +49 -36
- data/test/coverband/coverband_test.rb +11 -11
- data/test/coverband/integrations/background_middleware_test.rb +10 -10
- data/test/coverband/integrations/background_test.rb +17 -5
- data/test/coverband/integrations/rack_server_check_test.rb +7 -7
- data/test/coverband/integrations/report_middleware_test.rb +9 -9
- data/test/coverband/integrations/resque_worker_test.rb +9 -9
- data/test/coverband/integrations/test_resque_job.rb +1 -1
- data/test/coverband/reporters/base_test.rb +9 -9
- data/test/coverband/reporters/console_test.rb +6 -6
- data/test/coverband/reporters/html_test.rb +36 -48
- data/test/coverband/reporters/web_test.rb +16 -18
- data/test/coverband/utils/absolute_file_converter_test.rb +22 -22
- data/test/coverband/utils/file_hasher_test.rb +6 -12
- data/test/coverband/utils/file_list_test.rb +13 -13
- data/test/coverband/utils/html_formatter_test.rb +9 -23
- data/test/coverband/utils/lines_classifier_test.rb +29 -29
- data/test/coverband/utils/relative_file_converter_test.rb +13 -13
- data/test/coverband/utils/result_test.rb +18 -18
- data/test/coverband/utils/results_test.rb +17 -17
- data/test/coverband/utils/source_file_line_test.rb +46 -46
- data/test/coverband/utils/source_file_test.rb +38 -88
- data/test/dog.rb +1 -1
- data/test/fake_app/basic_rack.rb +2 -2
- data/test/fixtures/app/controllers/sample_controller.rb +1 -1
- data/test/fixtures/app/models/user.rb +1 -1
- data/test/fixtures/sample.rb +1 -1
- data/test/fixtures/utf-8.rb +0 -2
- data/test/forked/rails_full_stack_test.rb +24 -27
- data/test/forked/rails_rake_full_stack_test.rb +7 -26
- data/test/integration/full_stack_test.rb +11 -22
- data/test/jruby_check.rb +2 -3
- data/test/rails4_dummy/Rakefile +1 -1
- data/test/rails4_dummy/config.ru +1 -1
- data/test/rails4_dummy/config/application.rb +4 -4
- data/test/rails4_dummy/config/boot.rb +2 -2
- data/test/rails4_dummy/config/coverband.rb +1 -1
- data/test/rails4_dummy/config/coverband_missing_redis.rb +1 -1
- data/test/rails4_dummy/config/environment.rb +1 -1
- data/test/rails4_dummy/config/routes.rb +2 -2
- data/test/rails5_dummy/Rakefile +1 -1
- data/test/rails5_dummy/config.ru +1 -1
- data/test/rails5_dummy/config/application.rb +3 -3
- data/test/rails5_dummy/config/coverband.rb +8 -8
- data/test/rails5_dummy/config/coverband_missing_redis.rb +8 -8
- data/test/rails5_dummy/config/environment.rb +1 -1
- data/test/rails5_dummy/config/routes.rb +2 -2
- data/test/rails6_dummy/Rakefile +1 -1
- data/test/rails6_dummy/config.ru +1 -1
- data/test/rails6_dummy/config/application.rb +4 -4
- data/test/rails6_dummy/config/boot.rb +2 -2
- data/test/rails6_dummy/config/coverband.rb +1 -1
- data/test/rails6_dummy/config/coverband_missing_redis.rb +1 -1
- data/test/rails6_dummy/config/environment.rb +1 -1
- data/test/rails6_dummy/config/routes.rb +2 -2
- data/test/rails_test_helper.rb +11 -11
- data/test/test_helper.rb +44 -34
- data/test/unique_files.rb +10 -10
- data/views/layout.erb +2 -12
- metadata +28 -34
- data/.rubocop.yml +0 -86
- data/lib/coverband/integrations/bundler.rb +0 -8
- data/lib/coverband/utils/file_groups.rb +0 -53
- data/lib/coverband/utils/gem_list.rb +0 -31
- data/lib/coverband/utils/s3_report.rb +0 -105
- data/test/coverband/utils/file_groups_test.rb +0 -61
- data/test/coverband/utils/gem_list_test.rb +0 -48
- data/test/coverband/utils/s3_report_test.rb +0 -44
- data/views/gem_list.erb +0 -63
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require File.expand_path(
|
3
|
+
require File.expand_path("../../test_helper", File.dirname(__FILE__))
|
4
4
|
|
5
5
|
####
|
6
6
|
# Thanks for all the help SimpleCov https://github.com/colszowka/simplecov-html
|
@@ -8,32 +8,32 @@ require File.expand_path('../../test_helper', File.dirname(__FILE__))
|
|
8
8
|
####
|
9
9
|
describe Coverband::Utils::SourceFile do
|
10
10
|
COVERAGE_FOR_SAMPLE_RB = [nil, 1, 1, 1, nil, nil, 1, 0, nil, nil, nil, nil, nil, nil, nil, nil].freeze
|
11
|
-
describe
|
11
|
+
describe "a source file initialized with some coverage data" do
|
12
12
|
subject do
|
13
|
-
Coverband::Utils::SourceFile.new(source_fixture(
|
13
|
+
Coverband::Utils::SourceFile.new(source_fixture("sample.rb"), COVERAGE_FOR_SAMPLE_RB)
|
14
14
|
end
|
15
15
|
|
16
|
-
it
|
16
|
+
it "has a filename" do
|
17
17
|
assert subject.filename
|
18
18
|
end
|
19
19
|
|
20
|
-
it
|
20
|
+
it "has source equal to src" do
|
21
21
|
assert_equal subject.source, subject.src
|
22
22
|
end
|
23
23
|
|
24
|
-
it
|
25
|
-
assert_equal
|
24
|
+
it "has a project filename which removes the project directory" do
|
25
|
+
assert_equal "/test/fixtures/sample.rb", subject.project_filename
|
26
26
|
end
|
27
27
|
|
28
|
-
it
|
28
|
+
it "has source_lines equal to lines" do
|
29
29
|
assert_equal subject.source_lines, subject.lines
|
30
30
|
end
|
31
31
|
|
32
|
-
it
|
32
|
+
it "has 16 source lines" do
|
33
33
|
assert_equal 16, subject.lines.count
|
34
34
|
end
|
35
35
|
|
36
|
-
it
|
36
|
+
it "has all source lines of type Coverband::Utils::SourceFile::Line" do
|
37
37
|
subject.lines.each do |line|
|
38
38
|
assert line.is_a?(Coverband::Utils::SourceFile::Line)
|
39
39
|
end
|
@@ -43,161 +43,111 @@ describe Coverband::Utils::SourceFile do
|
|
43
43
|
assert_equal "class Foo\n", subject.line(2).source
|
44
44
|
end
|
45
45
|
|
46
|
-
it
|
46
|
+
it "returns lines number 2, 3, 4, 7 for covered_lines" do
|
47
47
|
assert_equal [2, 3, 4, 7], subject.covered_lines.map(&:line)
|
48
48
|
end
|
49
49
|
|
50
|
-
it
|
50
|
+
it "returns lines number 8 for missed_lines" do
|
51
51
|
assert_equal [8], subject.missed_lines.map(&:line)
|
52
52
|
end
|
53
53
|
|
54
|
-
it
|
54
|
+
it "returns lines number 1, 5, 6, 9, 10, 16 for never_lines" do
|
55
55
|
assert_equal [1, 5, 6, 9, 10, 16], subject.never_lines.map(&:line)
|
56
56
|
end
|
57
57
|
|
58
|
-
it
|
58
|
+
it "returns line numbers 11, 12, 13, 14, 15 for skipped_lines" do
|
59
59
|
assert_equal [11, 12, 13, 14, 15], subject.skipped_lines.map(&:line)
|
60
60
|
end
|
61
61
|
|
62
|
-
it
|
62
|
+
it "has 80% covered_percent" do
|
63
63
|
assert_equal 80.0, subject.covered_percent
|
64
64
|
end
|
65
65
|
|
66
|
-
it
|
66
|
+
it "working for nil last_updated_at" do
|
67
67
|
assert_equal "not available", subject.last_updated_at
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe
|
71
|
+
describe "simulating potential Ruby 1.9 defect -- see Issue #56" do
|
72
72
|
subject do
|
73
|
-
Coverband::Utils::SourceFile.new(source_fixture(
|
73
|
+
Coverband::Utils::SourceFile.new(source_fixture("sample.rb"), COVERAGE_FOR_SAMPLE_RB + [nil])
|
74
74
|
end
|
75
75
|
|
76
|
-
it
|
76
|
+
it "has 16 source lines regardless of extra data in coverage array" do
|
77
77
|
# Do not litter test output with known warning
|
78
78
|
capture_stderr { assert_equal 16, subject.lines.count }
|
79
79
|
end
|
80
80
|
|
81
|
-
it
|
82
|
-
captured_output = capture_stderr
|
81
|
+
it "prints a warning to stderr if coverage array contains more data than lines in the file" do
|
82
|
+
captured_output = capture_stderr {
|
83
83
|
subject.lines
|
84
|
-
|
84
|
+
}
|
85
85
|
|
86
86
|
assert(captured_output.match(/^Warning: coverage data/))
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
|
-
describe
|
90
|
+
describe "a file that is never relevant" do
|
91
91
|
COVERAGE_FOR_NEVER_RB = [nil, nil].freeze
|
92
92
|
|
93
93
|
subject do
|
94
|
-
Coverband::Utils::SourceFile.new(source_fixture(
|
94
|
+
Coverband::Utils::SourceFile.new(source_fixture("never.rb"), COVERAGE_FOR_NEVER_RB)
|
95
95
|
end
|
96
96
|
|
97
|
-
it
|
97
|
+
it "has 0.0 covered_strength" do
|
98
98
|
assert_equal 0.0, subject.covered_strength
|
99
99
|
end
|
100
100
|
|
101
|
-
it
|
101
|
+
it "has 0.0 covered_percent" do
|
102
102
|
assert_equal 100.0, subject.covered_percent
|
103
103
|
end
|
104
104
|
end
|
105
105
|
|
106
|
-
describe
|
106
|
+
describe "a file where nothing is ever executed mixed with skipping #563" do
|
107
107
|
COVERAGE_FOR_SKIPPED_RB = [nil, nil, nil, nil].freeze
|
108
108
|
|
109
109
|
subject do
|
110
|
-
Coverband::Utils::SourceFile.new(source_fixture(
|
110
|
+
Coverband::Utils::SourceFile.new(source_fixture("skipped.rb"), COVERAGE_FOR_SKIPPED_RB)
|
111
111
|
end
|
112
112
|
|
113
|
-
it
|
113
|
+
it "has 0.0 covered_strength" do
|
114
114
|
assert_equal 0.0, subject.covered_strength
|
115
115
|
end
|
116
116
|
|
117
|
-
it
|
117
|
+
it "has 0.0 covered_percent" do
|
118
118
|
assert_equal 0.0, subject.covered_percent
|
119
119
|
end
|
120
120
|
end
|
121
121
|
|
122
|
-
describe
|
122
|
+
describe "a file where everything is skipped and missed #563" do
|
123
123
|
COVERAGE_FOR_SKIPPED_RB_2 = [nil, nil, 0, nil].freeze
|
124
124
|
|
125
125
|
subject do
|
126
|
-
Coverband::Utils::SourceFile.new(source_fixture(
|
126
|
+
Coverband::Utils::SourceFile.new(source_fixture("skipped.rb"), COVERAGE_FOR_SKIPPED_RB_2)
|
127
127
|
end
|
128
128
|
|
129
|
-
it
|
129
|
+
it "has 0.0 covered_strength" do
|
130
130
|
assert_equal 0.0, subject.covered_strength
|
131
131
|
end
|
132
132
|
|
133
|
-
it
|
133
|
+
it "has 0.0 covered_percent" do
|
134
134
|
assert_equal 0.0, subject.covered_percent
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
|
-
describe
|
138
|
+
describe "a file where everything is skipped/irrelevamt but executed #563" do
|
139
139
|
COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB = [nil, nil, 1, 1, 0, nil, nil, nil].freeze
|
140
140
|
|
141
141
|
subject do
|
142
|
-
Coverband::Utils::SourceFile.new(source_fixture(
|
142
|
+
Coverband::Utils::SourceFile.new(source_fixture("skipped_and_executed.rb"), COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB)
|
143
143
|
end
|
144
144
|
|
145
|
-
it
|
145
|
+
it "has 0.0 covered_strength" do
|
146
146
|
assert_equal 0.0, subject.covered_strength
|
147
147
|
end
|
148
148
|
|
149
|
-
it
|
149
|
+
it "has 0.0 covered_percent" do
|
150
150
|
assert_equal 0.0, subject.covered_percent
|
151
151
|
end
|
152
152
|
end
|
153
|
-
|
154
|
-
describe 'correctly identifies gems' do
|
155
|
-
COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB = [nil, nil, 1, 1, 0, 1, 1, nil].freeze
|
156
|
-
|
157
|
-
describe 'the word gem in a path' do
|
158
|
-
subject do
|
159
|
-
Coverband::Utils::SourceFile.new('lib/rubocop/cop/gemspec/required_ruby_version.rb', COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB)
|
160
|
-
end
|
161
|
-
|
162
|
-
it 'allows the word gem in path' do
|
163
|
-
assert_equal nil, subject.gem?
|
164
|
-
end
|
165
|
-
end
|
166
|
-
|
167
|
-
describe 'a folder gem in the path' do
|
168
|
-
subject do
|
169
|
-
Coverband::Utils::SourceFile.new('/var/gems/rubocop-0.67.0/lib/rubocop/cop/gemspec/required_ruby_version.rb', COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB)
|
170
|
-
end
|
171
|
-
|
172
|
-
it 'allows the word gem in path' do
|
173
|
-
assert subject.gem?
|
174
|
-
end
|
175
|
-
end
|
176
|
-
end
|
177
|
-
|
178
|
-
describe 'correctly reports gem name' do
|
179
|
-
COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB = [nil, nil, 1, 1, 0, 1, 1, nil].freeze
|
180
|
-
|
181
|
-
describe 'the word gem in a path' do
|
182
|
-
subject do
|
183
|
-
Coverband::Utils::SourceFile.new('lib/rubocop/cop/gemspec/required_ruby_version.rb', COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB)
|
184
|
-
end
|
185
|
-
|
186
|
-
it 'allows the word gem in path' do
|
187
|
-
assert_equal nil, subject.gem_name
|
188
|
-
end
|
189
|
-
end
|
190
|
-
|
191
|
-
describe 'a folder gem in the path' do
|
192
|
-
subject do
|
193
|
-
Coverband::Utils::SourceFile.new('/var/gems/rubocop-0.67.0/lib/rubocop/cop/gemspec/required_ruby_version.rb', COVERAGE_FOR_SKIPPED_AND_EXECUTED_RB)
|
194
|
-
end
|
195
|
-
|
196
|
-
it 'allows the word gem in path' do
|
197
|
-
assert_equal 'rubocop-0.67.0', subject.gem_name
|
198
|
-
end
|
199
|
-
end
|
200
|
-
end
|
201
|
-
|
202
|
-
|
203
153
|
end
|
data/test/dog.rb
CHANGED
data/test/fake_app/basic_rack.rb
CHANGED
data/test/fixtures/sample.rb
CHANGED
data/test/fixtures/utf-8.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require File.expand_path(
|
3
|
+
require File.expand_path("../rails_test_helper", File.dirname(__FILE__))
|
4
4
|
|
5
5
|
class RailsFullStackTest < Minitest::Test
|
6
6
|
include Capybara::DSL
|
@@ -11,8 +11,8 @@ class RailsFullStackTest < Minitest::Test
|
|
11
11
|
rails_setup
|
12
12
|
# preload first coverage hit
|
13
13
|
Coverband.report_coverage
|
14
|
-
require
|
15
|
-
Rainbow(
|
14
|
+
require "rainbow"
|
15
|
+
Rainbow("this text is red").red
|
16
16
|
end
|
17
17
|
|
18
18
|
def teardown
|
@@ -24,30 +24,27 @@ class RailsFullStackTest < Minitest::Test
|
|
24
24
|
# We have to combine everything in one test
|
25
25
|
# because we can only initialize rails once per test
|
26
26
|
# run. Possibly fork test runs to avoid this problem in future?
|
27
|
-
unless ENV[
|
28
|
-
test
|
29
|
-
visit
|
27
|
+
unless ENV["COVERBAND_MEMORY_TEST"]
|
28
|
+
test "this is how we do it" do
|
29
|
+
visit "/dummy/show"
|
30
30
|
Coverband.report_coverage
|
31
|
-
assert_content(
|
32
|
-
visit
|
33
|
-
within page.find(
|
34
|
-
assert_selector(
|
31
|
+
assert_content("I am no dummy")
|
32
|
+
visit "/coverage"
|
33
|
+
within page.find("a", text: /dummy_controller.rb/).find(:xpath, "../..") do
|
34
|
+
assert_selector("td", text: "100.0 %")
|
35
35
|
end
|
36
36
|
|
37
|
-
# Test gems are reporting coverage
|
38
|
-
assert_content('Gems')
|
39
|
-
assert page.html.match('rainbow/wrapper.rb')
|
40
|
-
|
41
37
|
# Test eager load data stored separately
|
42
38
|
dummy_controller = "./test/rails#{Rails::VERSION::MAJOR}_dummy/app/controllers/dummy_controller.rb"
|
43
39
|
store.type = :eager_loading
|
44
40
|
eager_expected = [1, 1, 0, nil, nil]
|
45
|
-
results = store.coverage[dummy_controller][
|
41
|
+
results = store.coverage[dummy_controller]["data"]
|
46
42
|
assert_equal(eager_expected, results)
|
47
43
|
|
48
44
|
store.type = Coverband::RUNTIME_TYPE
|
49
45
|
runtime_expected = [0, 0, 1, nil, nil]
|
50
|
-
results = store.coverage[dummy_controller][
|
46
|
+
results = store.coverage[dummy_controller]["data"]
|
47
|
+
assert_equal(runtime_expected, results)
|
51
48
|
end
|
52
49
|
end
|
53
50
|
|
@@ -55,20 +52,20 @@ class RailsFullStackTest < Minitest::Test
|
|
55
52
|
# as we run it in single test mode via the benchmarks.
|
56
53
|
# Add new tests below this test
|
57
54
|
###
|
58
|
-
if ENV[
|
59
|
-
test
|
60
|
-
return unless ENV[
|
55
|
+
if ENV["COVERBAND_MEMORY_TEST"]
|
56
|
+
test "memory usage" do
|
57
|
+
return unless ENV["COVERBAND_MEMORY_TEST"]
|
61
58
|
|
62
59
|
# we don't want this to run during our standard test suite
|
63
60
|
# as the below profiler changes the runtime
|
64
61
|
# and shold only be included for isolated processes
|
65
62
|
begin
|
66
|
-
require
|
63
|
+
require "memory_profiler"
|
67
64
|
|
68
65
|
# warmup
|
69
66
|
3.times do
|
70
|
-
visit
|
71
|
-
assert_content(
|
67
|
+
visit "/dummy/show"
|
68
|
+
assert_content("I am no dummy")
|
72
69
|
Coverband.report_coverage
|
73
70
|
end
|
74
71
|
|
@@ -76,10 +73,10 @@ class RailsFullStackTest < Minitest::Test
|
|
76
73
|
capture = StringIO.new
|
77
74
|
$stdout = capture
|
78
75
|
|
79
|
-
MemoryProfiler.report
|
76
|
+
MemoryProfiler.report {
|
80
77
|
15.times do
|
81
|
-
visit
|
82
|
-
assert_content(
|
78
|
+
visit "/dummy/show"
|
79
|
+
assert_content("I am no dummy")
|
83
80
|
Coverband.report_coverage
|
84
81
|
###
|
85
82
|
# Set to nil not {} as it is easier to verify that no memory is retained when nil gets released
|
@@ -91,12 +88,12 @@ class RailsFullStackTest < Minitest::Test
|
|
91
88
|
# needed to test older versions to discover when we had the regression
|
92
89
|
# Coverband::Collectors::Coverage.instance.send(:add_previous_results, nil)
|
93
90
|
end
|
94
|
-
|
91
|
+
}.pretty_print
|
95
92
|
data = $stdout.string
|
96
93
|
$stdout = previous_out
|
97
94
|
if data.match(/retained objects by gem(.*)retained objects by file/m)[0]&.match(/coverband/)
|
98
95
|
puts data
|
99
|
-
raise
|
96
|
+
raise "leaking memory!!!"
|
100
97
|
end
|
101
98
|
ensure
|
102
99
|
$stdout = previous_out
|
@@ -1,8 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require File.expand_path(
|
4
|
-
require
|
5
|
-
require 'pundit'
|
3
|
+
require File.expand_path("../rails_test_helper", File.dirname(__FILE__))
|
4
|
+
require "rails"
|
6
5
|
|
7
6
|
class RailsRakeFullStackTest < Minitest::Test
|
8
7
|
def setup
|
@@ -11,31 +10,13 @@ class RailsRakeFullStackTest < Minitest::Test
|
|
11
10
|
Coverband.configure("./test/rails#{Rails::VERSION::MAJOR}_dummy/config/coverband.rb")
|
12
11
|
end
|
13
12
|
|
14
|
-
test 'rake tasks shows coverage properly within eager_loading' do
|
15
|
-
|
16
|
-
|
17
|
-
system("COVERBAND_CONFIG=./test/rails#{Rails::VERSION::MAJOR}_dummy/config/coverband.rb bundle exec rake -f test/rails#{Rails::VERSION::MAJOR}_dummy/Rakefile middleware")
|
18
|
-
store.instance_variable_set(:@redis_namespace, 'coverband_test')
|
19
|
-
store.type = :eager_loading
|
20
|
-
pundit_file = store.coverage.keys.grep(/pundit.rb/).first
|
21
|
-
refute_nil pundit_file
|
22
|
-
pundit_coverage = store.coverage[pundit_file]
|
23
|
-
refute_nil pundit_coverage
|
24
|
-
assert_includes pundit_coverage['data'], 1
|
25
|
-
|
26
|
-
store.type = Coverband::RUNTIME_TYPE
|
27
|
-
if ENV['SIMULATE_ONESHOT']
|
28
|
-
pundit_coverage = store.get_coverage_report[Coverband::RUNTIME_TYPE][pundit_file]
|
29
|
-
assert pundit_coverage['data'].compact.all? { |el| el == 0 }
|
30
|
-
else
|
31
|
-
pundit_coverage = store.coverage[pundit_file]
|
32
|
-
assert_nil pundit_coverage
|
33
|
-
end
|
34
|
-
end
|
13
|
+
# test 'rake tasks shows coverage properly within eager_loading' do
|
14
|
+
# this was testing gem data, which we no logner support and I dont know if this makes sense anymre
|
15
|
+
# end
|
35
16
|
|
36
17
|
test "ignored rake tasks don't add coverage" do
|
37
18
|
store.clear!
|
38
|
-
store.instance_variable_set(:@redis_namespace,
|
19
|
+
store.instance_variable_set(:@redis_namespace, "coverband_test")
|
39
20
|
store.send(:save_report, basic_coverage_full_path)
|
40
21
|
output = `COVERBAND_CONFIG=./test/rails#{Rails::VERSION::MAJOR}_dummy/config/coverband.rb bundle exec rake -f test/rails#{Rails::VERSION::MAJOR}_dummy/Rakefile coverband:clear`
|
41
22
|
assert_nil output.match(/Coverband: Reported coverage via thread/)
|
@@ -49,7 +30,7 @@ class RailsRakeFullStackTest < Minitest::Test
|
|
49
30
|
test "doesn't exit non-zero with error on missing redis" do
|
50
31
|
output = `COVERBAND_CONFIG=./test/rails#{Rails::VERSION::MAJOR}_dummy/config/coverband_missing_redis.rb bundle exec rake -f test/rails#{Rails::VERSION::MAJOR}_dummy/Rakefile -T`
|
51
32
|
assert_equal 0, $?.to_i
|
52
|
-
if ENV[
|
33
|
+
if ENV["COVERBAND_HASH_REDIS_STORE"]
|
53
34
|
assert output.match(/Redis is not available/)
|
54
35
|
else
|
55
36
|
assert output.match(/coverage failed to store/)
|