covered 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/Gemfile +6 -0
- data/README.md +59 -0
- data/Rakefile +6 -0
- data/covered.gemspec +30 -0
- data/lib/covered.rb +26 -0
- data/lib/covered/ast.rb +25 -0
- data/lib/covered/capture.rb +56 -0
- data/lib/covered/eval.rb +78 -0
- data/lib/covered/files.rb +83 -0
- data/lib/covered/report.rb +82 -0
- data/lib/covered/rspec.rb +37 -0
- data/lib/covered/source.rb +56 -0
- data/lib/covered/version.rb +23 -0
- metadata +129 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 025c9e0620ca9bbb2115fc1dcaca9f36c4d827fb047ee303645bf80d4fc3db0e
|
4
|
+
data.tar.gz: 4fd5fd8b45eaf3a90e43b9813c2e86d24a9e3081233e5f1bd24a6bda8b005ce2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8c3f947a44f456b9278ff554487a0262d29e02d8aa0719d6ac57810b4d780c82cf3d0bffd70ddc47daffeccf64cec3a736c244449791501b93a33c14b9439305
|
7
|
+
data.tar.gz: 1b7a1c9456e8529d3b248dd1d50f0bf6a9448522951acbcc021a0fa55de17dc14ed3aa214411c9a1a9144f27c30954a131f0b3b92d82fa34e76db4af2a474e08
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
# Covered
|
2
|
+
|
3
|
+
Covered uses modern Ruby features to generate comprehensive coverage, including support for templates which are compiled into Ruby.
|
4
|
+
|
5
|
+
[](hhttps://travis-ci.com/ioquatix/covered)
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
gem 'covered'
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install covered
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
For `rspec`, simply include the following from your `spec_helper.rb`
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
require 'covered/rspec'
|
27
|
+
```
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
|
31
|
+
1. Fork it
|
32
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
33
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
34
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
35
|
+
5. Create new Pull Request
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
Released under the MIT license.
|
40
|
+
|
41
|
+
Copyright, 2015, by [Samuel G. D. Williams](http://www.codeotaku.com/samuel-williams).
|
42
|
+
|
43
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
44
|
+
of this software and associated documentation files (the "Software"), to deal
|
45
|
+
in the Software without restriction, including without limitation the rights
|
46
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
47
|
+
copies of the Software, and to permit persons to whom the Software is
|
48
|
+
furnished to do so, subject to the following conditions:
|
49
|
+
|
50
|
+
The above copyright notice and this permission notice shall be included in
|
51
|
+
all copies or substantial portions of the Software.
|
52
|
+
|
53
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
54
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
55
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
56
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
57
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
58
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
59
|
+
THE SOFTWARE.
|
data/Rakefile
ADDED
data/covered.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
|
2
|
+
require_relative "lib/covered/version"
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = "covered"
|
6
|
+
spec.version = Covered::VERSION
|
7
|
+
spec.authors = ["Samuel Williams"]
|
8
|
+
spec.email = ["samuel.williams@oriontransfer.co.nz"]
|
9
|
+
|
10
|
+
spec.summary = "A modern approach to code coverage."
|
11
|
+
spec.homepage = "https://github.com/ioquatix/covered"
|
12
|
+
|
13
|
+
# Specify which files should be added to the gem when it is released.
|
14
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
15
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
16
|
+
end
|
17
|
+
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.required_ruby_version = '~> 2.6'
|
22
|
+
|
23
|
+
spec.add_dependency "rainbow"
|
24
|
+
|
25
|
+
spec.add_development_dependency "trenni", "~> 3.6"
|
26
|
+
|
27
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
28
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
29
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
30
|
+
end
|
data/lib/covered.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require_relative "covered/version"
|
22
|
+
|
23
|
+
require_relative "covered/report"
|
24
|
+
require_relative "covered/files"
|
25
|
+
require_relative "covered/source"
|
26
|
+
require_relative "covered/capture"
|
data/lib/covered/ast.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
class RubyVM::AST::Node
|
22
|
+
def executable?
|
23
|
+
self.type =~ /NODE_(CALL|IVAR|LVAR|IASGN)/
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require 'rainbow'
|
22
|
+
|
23
|
+
module Covered
|
24
|
+
class Capture
|
25
|
+
def initialize(output)
|
26
|
+
@paths = {}
|
27
|
+
|
28
|
+
@line_trace = TracePoint.new(:line) do |trace_point|
|
29
|
+
if path = trace_point.path
|
30
|
+
# if path =~ /\.xnode$/
|
31
|
+
# binding.pry
|
32
|
+
# end
|
33
|
+
#
|
34
|
+
output.mark(path, trace_point.lineno)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
#
|
38
|
+
# @call_trace = TracePoint.new(:c_call) do |trace_point|
|
39
|
+
# if trace_point.method_id == :eval
|
40
|
+
# end
|
41
|
+
# end
|
42
|
+
end
|
43
|
+
|
44
|
+
attr :paths
|
45
|
+
|
46
|
+
def enable
|
47
|
+
# @call_trace.enable
|
48
|
+
@line_trace.enable
|
49
|
+
end
|
50
|
+
|
51
|
+
def disable
|
52
|
+
@line_trace.disable
|
53
|
+
# @call_trace.disable
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
data/lib/covered/eval.rb
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
module Kernel
|
22
|
+
class << self
|
23
|
+
alias_method :original_eval, :eval
|
24
|
+
|
25
|
+
def eval(*args)
|
26
|
+
if source = $source
|
27
|
+
source.map(*args)
|
28
|
+
end
|
29
|
+
|
30
|
+
original_eval(*args)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
alias_method :original_eval, :eval
|
37
|
+
|
38
|
+
def eval(*args)
|
39
|
+
if source = $source
|
40
|
+
source.map(*args)
|
41
|
+
end
|
42
|
+
|
43
|
+
original_eval(*args)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
class Binding
|
48
|
+
alias_method :original_eval, :eval
|
49
|
+
|
50
|
+
def eval(*args)
|
51
|
+
if source = $source
|
52
|
+
source.map(*args)
|
53
|
+
end
|
54
|
+
|
55
|
+
original_eval(*args)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
# class BasicObject
|
60
|
+
# alias_method :original_instance_eval, :instance_eval
|
61
|
+
#
|
62
|
+
# def instance_eval(*args, &block)
|
63
|
+
# puts args.inspect
|
64
|
+
# original_instance_eval(*args, &block)
|
65
|
+
# end
|
66
|
+
# end
|
67
|
+
#
|
68
|
+
# class Module
|
69
|
+
# alias_method :original_module_eval, :module_eval
|
70
|
+
#
|
71
|
+
# def module_eval(*args, &block)
|
72
|
+
# puts args.inspect
|
73
|
+
# original_module_eval(*args, &block)
|
74
|
+
# end
|
75
|
+
#
|
76
|
+
# remove_method :class_eval
|
77
|
+
# alias_method :class_eval, :module_eval
|
78
|
+
# end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
module Covered
|
22
|
+
class Files
|
23
|
+
def initialize
|
24
|
+
@paths = {}
|
25
|
+
@map = {}
|
26
|
+
end
|
27
|
+
|
28
|
+
attr :paths
|
29
|
+
|
30
|
+
def mark(path, lineno)
|
31
|
+
file = @paths[path] ||= []
|
32
|
+
|
33
|
+
if file[lineno]
|
34
|
+
file[lineno] += 1
|
35
|
+
else
|
36
|
+
file[lineno] = 1
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def each(&block)
|
41
|
+
@paths.each(&block)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
class Ignore
|
46
|
+
def initialize(pattern, output)
|
47
|
+
@pattern = pattern
|
48
|
+
@output = output
|
49
|
+
end
|
50
|
+
|
51
|
+
def mark(path, lineno)
|
52
|
+
@output.mark(path, lineno) unless @pattern.match? path
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
class Group
|
57
|
+
def initialize(patterns, output)
|
58
|
+
@patterns = patterns
|
59
|
+
@output = output
|
60
|
+
end
|
61
|
+
|
62
|
+
def mark(path, lineno)
|
63
|
+
@patterns.each do |pattern, output|
|
64
|
+
return output.mark(path, lineno) if pattern.match? path
|
65
|
+
end
|
66
|
+
|
67
|
+
@output.mark(path, lineno) if @output
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
class Relative
|
72
|
+
def initialize(root, output)
|
73
|
+
@root = root
|
74
|
+
@output = output
|
75
|
+
end
|
76
|
+
|
77
|
+
def mark(path, lineno)
|
78
|
+
if path.start_with? @root
|
79
|
+
@output.mark(path, lineno)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require 'rainbow'
|
22
|
+
|
23
|
+
require_relative 'ast'
|
24
|
+
|
25
|
+
module Covered
|
26
|
+
class Report
|
27
|
+
def initialize(source)
|
28
|
+
@source = source
|
29
|
+
end
|
30
|
+
|
31
|
+
def expand(node, lines)
|
32
|
+
# puts "#{node.first_lineno}: #{node.inspect}"
|
33
|
+
|
34
|
+
lines[node.first_lineno] ||= 0 if node.executable?
|
35
|
+
|
36
|
+
node.children.each do |child|
|
37
|
+
next if child.nil?
|
38
|
+
|
39
|
+
expand(child, lines)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# A coverage array gives, for each line, the number of line execution by the interpreter. A nil value means coverage is disabled for this line (lines like else and end).
|
44
|
+
def print_summary(output = $stdout)
|
45
|
+
@source.each do |path, ast, counts|
|
46
|
+
expand(ast, counts)
|
47
|
+
|
48
|
+
line_offset = 1
|
49
|
+
output.puts Rainbow(path).bold.underline
|
50
|
+
|
51
|
+
File.open(path, "r") do |file|
|
52
|
+
file.each_line do |line|
|
53
|
+
count = counts[line_offset]
|
54
|
+
|
55
|
+
output.write("#{line_offset}".rjust(4))
|
56
|
+
output.write(" #{count}|".rjust(4))
|
57
|
+
|
58
|
+
if count == nil
|
59
|
+
output.write Rainbow(line).faint
|
60
|
+
elsif count == 0
|
61
|
+
output.write Rainbow(line).red
|
62
|
+
else
|
63
|
+
output.write Rainbow(line).green
|
64
|
+
end
|
65
|
+
|
66
|
+
# If there was no newline at end of file, we add one:
|
67
|
+
unless line.end_with? $/
|
68
|
+
output.puts
|
69
|
+
end
|
70
|
+
|
71
|
+
line_offset += 1
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
covered = counts.compact
|
76
|
+
hits = covered.reject(&:zero?)
|
77
|
+
percentage = Rational(hits.count, covered.count) * 100
|
78
|
+
output.puts "** #{hits.count}/#{covered.count} lines executed; #{percentage.to_f.round(2)}% covered."
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require_relative '../covered'
|
22
|
+
|
23
|
+
files = Covered::Files.new
|
24
|
+
root = Dir.pwd
|
25
|
+
output = Covered::Relative.new(root, files)
|
26
|
+
$source = output = Covered::Source.new(output)
|
27
|
+
output = Covered::Ignore.new(/spec/, output)
|
28
|
+
|
29
|
+
report = Covered::Report.new(files)
|
30
|
+
capture = Covered::Capture.new(output)
|
31
|
+
|
32
|
+
capture.enable
|
33
|
+
#
|
34
|
+
# at_exit do
|
35
|
+
# capture.disable
|
36
|
+
# report.print_summary
|
37
|
+
# end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
module Covered
|
22
|
+
class Source
|
23
|
+
def initialize(files)
|
24
|
+
@files = files
|
25
|
+
@paths = {}
|
26
|
+
|
27
|
+
@mutex = Mutex.new
|
28
|
+
end
|
29
|
+
|
30
|
+
# [String -> Source]
|
31
|
+
attr :paths
|
32
|
+
|
33
|
+
def map(string, binding = nil, filename = nil, lineno = 1)
|
34
|
+
return unless filename
|
35
|
+
|
36
|
+
# TODO replace with Concurrent::Map
|
37
|
+
@mutex.synchronize do
|
38
|
+
@paths[filename] = string
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def mark(path, lineno)
|
43
|
+
@files.mark(path, lineno)
|
44
|
+
end
|
45
|
+
|
46
|
+
def each(&block)
|
47
|
+
@files.each do |path, lines|
|
48
|
+
if source = @paths[path]
|
49
|
+
yield path, RubyVM::AST.parse(source), lines
|
50
|
+
else
|
51
|
+
yield path, RubyVM::AST.parse_file(path), lines
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
module Covered
|
22
|
+
VERSION = "0.1.0"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: covered
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Samuel Williams
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-07-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rainbow
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: trenni
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.6'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.6'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.16'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.16'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- samuel.williams@oriontransfer.co.nz
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- Gemfile
|
94
|
+
- README.md
|
95
|
+
- Rakefile
|
96
|
+
- covered.gemspec
|
97
|
+
- lib/covered.rb
|
98
|
+
- lib/covered/ast.rb
|
99
|
+
- lib/covered/capture.rb
|
100
|
+
- lib/covered/eval.rb
|
101
|
+
- lib/covered/files.rb
|
102
|
+
- lib/covered/report.rb
|
103
|
+
- lib/covered/rspec.rb
|
104
|
+
- lib/covered/source.rb
|
105
|
+
- lib/covered/version.rb
|
106
|
+
homepage: https://github.com/ioquatix/covered
|
107
|
+
licenses: []
|
108
|
+
metadata: {}
|
109
|
+
post_install_message:
|
110
|
+
rdoc_options: []
|
111
|
+
require_paths:
|
112
|
+
- lib
|
113
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '2.6'
|
118
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
requirements: []
|
124
|
+
rubyforge_project:
|
125
|
+
rubygems_version: 2.7.6
|
126
|
+
signing_key:
|
127
|
+
specification_version: 4
|
128
|
+
summary: A modern approach to code coverage.
|
129
|
+
test_files: []
|