simplecov 0.15.1 → 0.18.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (147) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +74 -1
  3. data/CODE_OF_CONDUCT.md +76 -0
  4. data/CONTRIBUTING.md +12 -9
  5. data/ISSUE_TEMPLATE.md +23 -0
  6. data/{MIT-LICENSE → LICENSE} +0 -0
  7. data/README.md +205 -104
  8. data/doc/alternate-formatters.md +20 -0
  9. data/lib/simplecov.rb +246 -52
  10. data/lib/simplecov/combine.rb +30 -0
  11. data/lib/simplecov/combine/branches_combiner.rb +32 -0
  12. data/lib/simplecov/combine/files_combiner.rb +25 -0
  13. data/lib/simplecov/combine/lines_combiner.rb +43 -0
  14. data/lib/simplecov/combine/results_combiner.rb +60 -0
  15. data/lib/simplecov/command_guesser.rb +8 -3
  16. data/lib/simplecov/configuration.rb +79 -8
  17. data/lib/simplecov/defaults.rb +12 -81
  18. data/lib/simplecov/exit_codes.rb +2 -0
  19. data/lib/simplecov/file_list.rb +32 -3
  20. data/lib/simplecov/filter.rb +5 -2
  21. data/lib/simplecov/formatter.rb +2 -0
  22. data/lib/simplecov/formatter/multi_formatter.rb +4 -2
  23. data/lib/simplecov/formatter/simple_formatter.rb +6 -4
  24. data/lib/simplecov/last_run.rb +4 -0
  25. data/lib/simplecov/lines_classifier.rb +21 -5
  26. data/lib/simplecov/load_global_config.rb +2 -0
  27. data/lib/simplecov/no_defaults.rb +2 -0
  28. data/lib/simplecov/profiles.rb +11 -7
  29. data/lib/simplecov/profiles/bundler_filter.rb +5 -0
  30. data/lib/simplecov/profiles/hidden_filter.rb +5 -0
  31. data/lib/simplecov/profiles/rails.rb +18 -0
  32. data/lib/simplecov/profiles/root_filter.rb +10 -0
  33. data/lib/simplecov/profiles/test_frameworks.rb +8 -0
  34. data/lib/simplecov/result.rb +23 -4
  35. data/lib/simplecov/result_adapter.rb +30 -0
  36. data/lib/simplecov/result_merger.rb +14 -11
  37. data/lib/simplecov/simulate_coverage.rb +29 -0
  38. data/lib/simplecov/source_file.rb +222 -110
  39. data/lib/simplecov/source_file/branch.rb +106 -0
  40. data/lib/simplecov/source_file/line.rb +72 -0
  41. data/lib/simplecov/useless_results_remover.rb +16 -0
  42. data/lib/simplecov/version.rb +3 -1
  43. metadata +44 -162
  44. data/.gitignore +0 -31
  45. data/.rspec +0 -3
  46. data/.rubocop.yml +0 -88
  47. data/.travis.yml +0 -29
  48. data/.yardopts +0 -1
  49. data/Gemfile +0 -38
  50. data/Rakefile +0 -39
  51. data/cucumber.yml +0 -13
  52. data/features/config_autoload.feature +0 -46
  53. data/features/config_command_name.feature +0 -45
  54. data/features/config_coverage_dir.feature +0 -33
  55. data/features/config_deactivate_merging.feature +0 -42
  56. data/features/config_formatters.feature +0 -77
  57. data/features/config_merge_timeout.feature +0 -39
  58. data/features/config_nocov_token.feature +0 -79
  59. data/features/config_profiles.feature +0 -44
  60. data/features/config_project_name.feature +0 -27
  61. data/features/config_styles.feature +0 -121
  62. data/features/config_tracked_files.feature +0 -29
  63. data/features/config_tracked_files_relevant_lines.feature +0 -31
  64. data/features/cucumber_basic.feature +0 -29
  65. data/features/maximum_coverage_drop.feature +0 -89
  66. data/features/merging_test_unit_and_rspec.feature +0 -44
  67. data/features/minimum_coverage.feature +0 -59
  68. data/features/refuse_coverage_drop.feature +0 -95
  69. data/features/rspec_basic.feature +0 -32
  70. data/features/rspec_fails_on_initialization.feature +0 -14
  71. data/features/rspec_groups_and_filters_basic.feature +0 -29
  72. data/features/rspec_groups_and_filters_complex.feature +0 -37
  73. data/features/rspec_groups_using_filter_class.feature +0 -41
  74. data/features/rspec_without_simplecov.feature +0 -20
  75. data/features/skipping_code_blocks_manually.feature +0 -70
  76. data/features/step_definitions/html_steps.rb +0 -44
  77. data/features/step_definitions/simplecov_steps.rb +0 -68
  78. data/features/step_definitions/transformers.rb +0 -13
  79. data/features/step_definitions/web_steps.rb +0 -64
  80. data/features/support/aruba_freedom_patch.rb +0 -53
  81. data/features/support/env.rb +0 -50
  82. data/features/test_unit_basic.feature +0 -34
  83. data/features/test_unit_groups_and_filters_basic.feature +0 -29
  84. data/features/test_unit_groups_and_filters_complex.feature +0 -35
  85. data/features/test_unit_groups_using_filter_class.feature +0 -40
  86. data/features/test_unit_without_simplecov.feature +0 -20
  87. data/features/unicode_compatiblity.feature +0 -67
  88. data/lib/simplecov/jruby_fix.rb +0 -42
  89. data/lib/simplecov/railtie.rb +0 -7
  90. data/lib/simplecov/railties/tasks.rake +0 -11
  91. data/lib/simplecov/raw_coverage.rb +0 -39
  92. data/simplecov.gemspec +0 -27
  93. data/spec/1_8_fallbacks_spec.rb +0 -31
  94. data/spec/command_guesser_spec.rb +0 -48
  95. data/spec/config_loader_spec.rb +0 -14
  96. data/spec/configuration_spec.rb +0 -35
  97. data/spec/defaults_spec.rb +0 -41
  98. data/spec/deleted_source_spec.rb +0 -12
  99. data/spec/faked_project/Gemfile +0 -6
  100. data/spec/faked_project/Rakefile +0 -8
  101. data/spec/faked_project/cucumber.yml +0 -13
  102. data/spec/faked_project/features/step_definitions/my_steps.rb +0 -22
  103. data/spec/faked_project/features/support/env.rb +0 -12
  104. data/spec/faked_project/features/test_stuff.feature +0 -6
  105. data/spec/faked_project/lib/faked_project.rb +0 -11
  106. data/spec/faked_project/lib/faked_project/framework_specific.rb +0 -18
  107. data/spec/faked_project/lib/faked_project/meta_magic.rb +0 -24
  108. data/spec/faked_project/lib/faked_project/some_class.rb +0 -28
  109. data/spec/faked_project/lib/faked_project/untested_class.rb +0 -11
  110. data/spec/faked_project/spec/faked_spec.rb +0 -11
  111. data/spec/faked_project/spec/forking_spec.rb +0 -8
  112. data/spec/faked_project/spec/meta_magic_spec.rb +0 -15
  113. data/spec/faked_project/spec/some_class_spec.rb +0 -13
  114. data/spec/faked_project/spec/spec_helper.rb +0 -11
  115. data/spec/faked_project/test/faked_test.rb +0 -11
  116. data/spec/faked_project/test/meta_magic_test.rb +0 -13
  117. data/spec/faked_project/test/some_class_test.rb +0 -15
  118. data/spec/faked_project/test/test_helper.rb +0 -12
  119. data/spec/file_list_spec.rb +0 -50
  120. data/spec/filters_spec.rb +0 -202
  121. data/spec/fixtures/app/controllers/sample_controller.rb +0 -10
  122. data/spec/fixtures/app/models/user.rb +0 -10
  123. data/spec/fixtures/deleted_source_sample.rb +0 -15
  124. data/spec/fixtures/frameworks/rspec_bad.rb +0 -9
  125. data/spec/fixtures/frameworks/rspec_good.rb +0 -9
  126. data/spec/fixtures/frameworks/testunit_bad.rb +0 -9
  127. data/spec/fixtures/frameworks/testunit_good.rb +0 -9
  128. data/spec/fixtures/iso-8859.rb +0 -3
  129. data/spec/fixtures/never.rb +0 -2
  130. data/spec/fixtures/resultset1.rb +0 -4
  131. data/spec/fixtures/resultset2.rb +0 -4
  132. data/spec/fixtures/sample.rb +0 -16
  133. data/spec/fixtures/skipped.rb +0 -4
  134. data/spec/fixtures/skipped_and_executed.rb +0 -8
  135. data/spec/fixtures/utf-8.rb +0 -3
  136. data/spec/helper.rb +0 -26
  137. data/spec/last_run_spec.rb +0 -48
  138. data/spec/lines_classifier_spec.rb +0 -103
  139. data/spec/multi_formatter_spec.rb +0 -20
  140. data/spec/raw_coverage_spec.rb +0 -92
  141. data/spec/result_merger_spec.rb +0 -171
  142. data/spec/result_spec.rb +0 -209
  143. data/spec/return_codes_spec.rb +0 -34
  144. data/spec/simplecov_spec.rb +0 -109
  145. data/spec/source_file_line_spec.rb +0 -155
  146. data/spec/source_file_spec.rb +0 -145
  147. data/spec/support/fail_rspec_on_ruby_warning.rb +0 -75
@@ -1,7 +0,0 @@
1
- module SimpleCov
2
- class Railtie < ::Rails::Railtie
3
- rake_tasks do
4
- load "simplecov/railties/tasks.rake"
5
- end
6
- end
7
- end
@@ -1,11 +0,0 @@
1
- require "rake/testtask"
2
- Rake::TestTask.new do |t|
3
- t.name = "simplecov"
4
- t.loader = :direct # uses require() which skips PWD in Ruby 1.9
5
- t.libs.push "test", "spec", Dir.pwd
6
- t.test_files = FileList["{test,spec}/**/*_{test,spec}.rb"]
7
- t.ruby_opts.push "-r", "simplecov", "-e", "SimpleCov.start(:rails)".inspect
8
- end
9
-
10
- require "rake/clean"
11
- CLOBBER.include "coverage"
@@ -1,39 +0,0 @@
1
- module SimpleCov
2
- module RawCoverage
3
- module_function
4
-
5
- # Merges multiple Coverage.result hashes
6
- def merge_results(*results)
7
- results.reduce({}) do |result, merged|
8
- merge_resultsets(result, merged)
9
- end
10
- end
11
-
12
- # Merges two Coverage.result hashes
13
- def merge_resultsets(result1, result2)
14
- (result1.keys | result2.keys).each_with_object({}) do |filename, merged|
15
- file1 = result1[filename]
16
- file2 = result2[filename]
17
- merged[filename] = merge_file_coverage(file1, file2)
18
- end
19
- end
20
-
21
- def merge_file_coverage(file1, file2)
22
- return (file1 || file2).dup unless file1 && file2
23
-
24
- file1.map.with_index do |count1, index|
25
- count2 = file2[index]
26
- merge_line_coverage(count1, count2)
27
- end
28
- end
29
-
30
- def merge_line_coverage(count1, count2)
31
- sum = count1.to_i + count2.to_i
32
- if sum.zero? && (count1.nil? || count2.nil?)
33
- nil
34
- else
35
- sum
36
- end
37
- end
38
- end
39
- end
data/simplecov.gemspec DELETED
@@ -1,27 +0,0 @@
1
- $LOAD_PATH.push File.expand_path("../lib", __FILE__)
2
- require "simplecov/version"
3
-
4
- Gem::Specification.new do |gem|
5
- gem.name = "simplecov"
6
- gem.version = SimpleCov::VERSION
7
- gem.platform = Gem::Platform::RUBY
8
- gem.authors = ["Christoph Olszowka"]
9
- gem.email = ["christoph at olszowka de"]
10
- gem.homepage = "http://github.com/colszowka/simplecov"
11
- gem.description = %(Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites)
12
- gem.summary = gem.description
13
- gem.license = "MIT"
14
-
15
- gem.required_ruby_version = ">= 1.8.7"
16
-
17
- gem.add_dependency "json", ">= 1.8", "< 3"
18
- gem.add_dependency "simplecov-html", "~> 0.10.0"
19
- gem.add_dependency "docile", "~> 1.1.0"
20
-
21
- gem.add_development_dependency "bundler", "~> 1.9"
22
-
23
- gem.files = `git ls-files`.split("\n")
24
- gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25
- gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
26
- gem.require_paths = ["lib"]
27
- end
@@ -1,31 +0,0 @@
1
- require "helper"
2
-
3
- # Tests that verify that on 1.8 versions of ruby, simplecov simply
4
- # does not launch and does not cause errors on the way
5
- #
6
- # TODO: This should be expanded upon all methods that could potentially
7
- # be called in a test/spec-helper simplecov config block
8
- #
9
- if RUBY_VERSION.start_with? "1.8"
10
- describe "Ruby 1.8 fallback" do
11
- it "return false when calling SimpleCov.start" do
12
- expect(SimpleCov.start).to be false
13
- end
14
-
15
- it "return false when calling SimpleCov.start with a block" do
16
- expect(SimpleCov.start { raise "Shouldn't reach this!" }).to be false
17
- end
18
-
19
- it "return false when calling SimpleCov.configure with a block" do
20
- expect(SimpleCov.configure { raise "Shouldn't reach this!" }).to be false
21
- end
22
-
23
- it "allow to define a profile" do
24
- expect do
25
- SimpleCov.profiles.define "testprofile" do
26
- add_filter "/config/"
27
- end
28
- end.not_to raise_error
29
- end
30
- end
31
- end
@@ -1,48 +0,0 @@
1
- require "helper"
2
-
3
- if SimpleCov.usable?
4
- describe SimpleCov::CommandGuesser do
5
- subject { SimpleCov::CommandGuesser }
6
- it 'correctly guesses "Unit Tests" for unit tests' do
7
- subject.original_run_command = "/some/path/test/units/foo_bar_test.rb"
8
- expect(subject.guess).to eq("Unit Tests")
9
- subject.original_run_command = "test/units/foo.rb"
10
- expect(subject.guess).to eq("Unit Tests")
11
- subject.original_run_command = "test/foo.rb"
12
- expect(subject.guess).to eq("Unit Tests")
13
- subject.original_run_command = "test/{models,helpers,unit}/**/*_test.rb"
14
- expect(subject.guess).to eq("Unit Tests")
15
- end
16
-
17
- it 'correctly guesses "Functional Tests" for functional tests' do
18
- subject.original_run_command = "/some/path/test/functional/foo_bar_controller_test.rb"
19
- expect(subject.guess).to eq("Functional Tests")
20
- subject.original_run_command = "test/{controllers,mailers,functional}/**/*_test.rb"
21
- expect(subject.guess).to eq("Functional Tests")
22
- end
23
-
24
- it 'correctly guesses "Integration Tests" for integration tests' do
25
- subject.original_run_command = "/some/path/test/integration/foo_bar_controller_test.rb"
26
- expect(subject.guess).to eq("Integration Tests")
27
- subject.original_run_command = "test/integration/**/*_test.rb"
28
- expect(subject.guess).to eq("Integration Tests")
29
- end
30
-
31
- it 'correctly guesses "Cucumber Features" for cucumber features' do
32
- subject.original_run_command = "features"
33
- expect(subject.guess).to eq("Cucumber Features")
34
- subject.original_run_command = "cucumber"
35
- expect(subject.guess).to eq("Cucumber Features")
36
- end
37
-
38
- it 'correctly guesses "RSpec" for RSpec' do
39
- subject.original_run_command = "/some/path/spec/foo.rb"
40
- expect(subject.guess).to eq("RSpec")
41
- end
42
-
43
- it "defaults to RSpec because RSpec constant is defined" do
44
- subject.original_run_command = "some_arbitrary_command with arguments"
45
- expect(subject.guess).to eq("RSpec")
46
- end
47
- end
48
- end
@@ -1,14 +0,0 @@
1
- require "helper"
2
-
3
- describe "loading config" do
4
- context "without ENV[HOME]" do
5
- it "shouldn't raise any errors" do
6
- home = ENV.delete("HOME")
7
- begin
8
- expect { load "simplecov/load_global_config.rb" }.not_to raise_error
9
- ensure
10
- ENV["HOME"] = home
11
- end
12
- end
13
- end
14
- end
@@ -1,35 +0,0 @@
1
- require "helper"
2
-
3
- describe SimpleCov::Configuration do
4
- let(:config_class) do
5
- Class.new do
6
- include SimpleCov::Configuration
7
- end
8
- end
9
- let(:config) { config_class.new }
10
-
11
- describe "#tracked_files" do
12
- context "when configured" do
13
- let(:glob) { "{app,lib}/**/*.rb" }
14
- before { config.track_files(glob) }
15
-
16
- it "returns the configured glob" do
17
- expect(config.tracked_files).to eq glob
18
- end
19
-
20
- context "and configured again with nil" do
21
- before { config.track_files(nil) }
22
-
23
- it "returns nil" do
24
- expect(config.tracked_files).to be_nil
25
- end
26
- end
27
- end
28
-
29
- context "when unconfigured" do
30
- it "returns nil" do
31
- expect(config.tracked_files).to be_nil
32
- end
33
- end
34
- end
35
- end
@@ -1,41 +0,0 @@
1
- require "helper"
2
-
3
- if SimpleCov.usable?
4
- describe SimpleCov do
5
- skip "requires the default configuration" if ENV["SIMPLECOV_NO_DEFAULTS"]
6
-
7
- context "profiles" do
8
- let(:config_class) do
9
- Class.new do
10
- include SimpleCov::Configuration
11
-
12
- def load_profile(name)
13
- configure(&SimpleCov.profiles[name.to_sym])
14
- end
15
- end
16
- end
17
-
18
- let(:config) { config_class.new }
19
-
20
- def filtered?(config, filename)
21
- path = File.join(SimpleCov.root, filename)
22
- file = SimpleCov::SourceFile.new(path, [nil, 1, 1, 1, nil, nil, 1, 0, nil, nil])
23
- config.filters.any? { |filter| filter.matches?(file) }
24
- end
25
-
26
- it "provides a sensible test_frameworks profile" do
27
- config.load_profile(:test_frameworks)
28
- expect(filtered?(config, "foo.rb")).not_to be
29
- expect(filtered?(config, "test/foo.rb")).to be
30
- expect(filtered?(config, "spec/bar.rb")).to be
31
- end
32
-
33
- it "provides a sensible rails profile" do
34
- config.load_profile(:rails)
35
- expect(filtered?(config, "app/models/user.rb")).not_to be
36
- expect(filtered?(config, "db/schema.rb")).to be
37
- expect(filtered?(config, "config/environment.rb")).to be
38
- end
39
- end
40
- end
41
- end
@@ -1,12 +0,0 @@
1
- require "helper"
2
-
3
- # Test to verify correct handling of deleted files
4
- # See https://github.com/colszowka/simplecov/issues/9
5
- describe "A source file which is subsequently deleted" do
6
- it "does not cause an error" do
7
- Dir.chdir(File.join(File.dirname(__FILE__), "fixtures")) do
8
- `ruby deleted_source_sample.rb`
9
- expect($?.exitstatus).to be_zero
10
- end
11
- end
12
- end
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "simplecov", :path => "../../../"
4
- gem "rake"
5
- gem "rspec", ">= 2.6.0"
6
- gem "cucumber"
@@ -1,8 +0,0 @@
1
- require "bundler"
2
-
3
- require "rake/testtask"
4
- Rake::TestTask.new(:test) do |test|
5
- test.libs << "lib" << "test"
6
- test.test_files = FileList["test/**/*_test.rb"].sort
7
- test.verbose = true
8
- end
@@ -1,13 +0,0 @@
1
- <%
2
- rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
3
- rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
4
- std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip"
5
- interp_opts = if defined?(RUBY_ENGINE)
6
- " --tags ~@exclude-#{RUBY_ENGINE}"
7
- else
8
- ''
9
- end
10
- %>
11
- default: <%= std_opts %><%= interp_opts %> features
12
- wip: --tags @wip:30 --wip features<%= interp_opts %>
13
- rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip<%= interp_opts %>
@@ -1,22 +0,0 @@
1
- Given /^I want to keep stuff simple$/ do
2
- expect(1).to eq(1)
3
- end
4
-
5
- When /^I write my cukes for the fake project$/ do
6
- expect(1).to eq(1)
7
- end
8
-
9
- Then /^I make all necessary tests in a single step$/ do
10
- expect(FakedProject.foo).to eq("bar")
11
-
12
- expect(FrameworkSpecific.cucumber).to eq("Only tested in Cucumber")
13
-
14
- expect(FakedProject.a_class_method).to eq("this is a mixed-in class method")
15
-
16
- expect(FakedProject.new.an_instance_method).to eq("this is a mixed-in instance method")
17
- expect(FakedProject.new.dynamic).to eq("A dynamically defined instance method")
18
-
19
- something = SomeClass.new("foo")
20
- expect(something.reverse).to eq("oof")
21
- expect(something.compare_with("foo")).to be true
22
- end
@@ -1,12 +0,0 @@
1
- require "bundler/setup"
2
-
3
- # We're injecting simplecov_config via aruba in cucumber here
4
- # depending on what the test case is...
5
- begin
6
- require File.join(File.dirname(__FILE__), "simplecov_config")
7
- rescue LoadError
8
- $stderr.puts "No SimpleCov config file found!"
9
- end
10
-
11
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "/../../lib"))
12
- require "faked_project"
@@ -1,6 +0,0 @@
1
- Feature: Foo
2
-
3
- Scenario: Test stuff
4
- Given I want to keep stuff simple
5
- When I write my cukes for the fake project
6
- Then I make all necessary tests in a single step
@@ -1,11 +0,0 @@
1
- class FakedProject
2
- def self.foo
3
- "bar"
4
- end
5
- end
6
-
7
- Dir[File.join(File.dirname(__FILE__), "faked_project/*.rb")].reject { |f| /untested/.match(f) }.each do |file|
8
- require file # Require all source files in project dynamically so we can inject some stuff depending on test situation
9
- end
10
-
11
- FakedProject.send :include, MetaMagic
@@ -1,18 +0,0 @@
1
- # A pile of methods that only get tested in their frameworks
2
- # and thus make this file only 100% covered when all framework test
3
- # results are merged
4
- module FrameworkSpecific
5
- class << self
6
- def cucumber
7
- "Only tested in Cucumber"
8
- end
9
-
10
- def rspec
11
- "Only tested in RSpec"
12
- end
13
-
14
- def test_unit
15
- "Only tested in Test/Unit"
16
- end
17
- end
18
- end
@@ -1,24 +0,0 @@
1
- module MetaMagic
2
- module ClassMethods
3
- def a_class_method
4
- "this is a mixed-in class method"
5
- end
6
- end
7
-
8
- module InstanceMethods
9
- def an_instance_method
10
- "this is a mixed-in instance method"
11
- end
12
- end
13
-
14
- def self.included(base)
15
- base.send :extend, ClassMethods
16
- base.send :include, InstanceMethods
17
-
18
- base.class_eval do
19
- define_method :dynamic do
20
- "A dynamically defined instance method"
21
- end
22
- end
23
- end
24
- end
@@ -1,28 +0,0 @@
1
- class SomeClass
2
- attr_reader :label
3
- attr_accessor :some_attr
4
-
5
- def initialize(label)
6
- @label = label
7
- end
8
-
9
- def reverse
10
- label.reverse
11
- end
12
-
13
- def compare_with(item)
14
- if item == label
15
- return true
16
- else
17
- raise "Item does not match label"
18
- end
19
- rescue
20
- false
21
- end
22
-
23
- private
24
-
25
- def uncovered
26
- "private method"
27
- end
28
- end