covered 0.16.3 → 0.16.6
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 +4 -4
- checksums.yaml.gz.sig +3 -3
- data/bake/covered/debug.rb +32 -0
- data/lib/covered/files.rb +1 -1
- data/lib/covered/minitest.rb +1 -1
- data/lib/covered/source.rb +23 -12
- data/lib/covered/sus.rb +48 -0
- data/lib/covered/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +32 -29
- metadata.gz.sig +0 -0
- data/lib/covered/coveralls.rb +0 -108
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab80834ad5a14e4853e865768e7cc51eb38497904e62818e81ce3633ac9f43d2
|
4
|
+
data.tar.gz: ce3a3757b0c08e8f6b09f8d0c3f7273a623ba293f9b56b81b4b5cff7662bf857
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c46120d01cc5a48d365f9e3d9dadb39b9f4825b42aee8f667e3a1a3298439f114f5cb29d34cdcf282bb89f2a9982f756892dfd808e406971876e36cfe5028c12
|
7
|
+
data.tar.gz: 58564662a71b2419a3ed02766614c0b26479702e8cb2d17e1efc0beb5b423b7444eb1b779f7ebc8f79fdf158e7f6ab4ce655af8bf75649fce2459d8f74e97c83
|
checksums.yaml.gz.sig
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
\��=��F��wj&���9i�Bkv�{R�)���J�{}ߦ$9�~�c|���K�%��C��L��˦�,�TI���b?VU�(l��RU+�n���v�1p)�F�u�������x�sc��&��+c�"�p�x^���5f,_�q�x�˃����~�2s����vt"מ��E�υ5���sjo�m�4����2��������H��
|
2
|
+
Y��gȮ���JM9��(qm�lZ`�Sb#��MI�vҏ��
|
3
|
+
��K�[d<U� ZDo㥝� ������
|
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
def initialize(context)
|
3
|
+
super
|
4
|
+
|
5
|
+
require_relative '../../lib/covered'
|
6
|
+
end
|
7
|
+
|
8
|
+
# Debug the coverage of a file. Show which lines should be executable.
|
9
|
+
#
|
10
|
+
# @parameter paths [Array(String)] The paths to parse.
|
11
|
+
# @parameter execute [Boolean] Whether to execute the code.
|
12
|
+
def parse(paths: [], execute: false)
|
13
|
+
files = output = Covered::Files.new
|
14
|
+
output = Covered::Source.new(output)
|
15
|
+
|
16
|
+
paths.each do |path|
|
17
|
+
output.mark(path, 0, 0)
|
18
|
+
end
|
19
|
+
|
20
|
+
if execute
|
21
|
+
capture = Covered::Capture.new(output)
|
22
|
+
capture.enable
|
23
|
+
paths.each do |path|
|
24
|
+
load path
|
25
|
+
end
|
26
|
+
capture.disable
|
27
|
+
|
28
|
+
files.paths = files.paths.slice(*paths)
|
29
|
+
end
|
30
|
+
|
31
|
+
Covered::Summary.new.call(output, $stderr)
|
32
|
+
end
|
data/lib/covered/files.rb
CHANGED
data/lib/covered/minitest.rb
CHANGED
data/lib/covered/source.rb
CHANGED
@@ -79,7 +79,7 @@ module Covered
|
|
79
79
|
ivasgn: true,
|
80
80
|
cvasgn: true,
|
81
81
|
gvasgn: true,
|
82
|
-
match_pattern: true
|
82
|
+
match_pattern: true,
|
83
83
|
}
|
84
84
|
|
85
85
|
def executable?(node)
|
@@ -88,31 +88,42 @@ module Covered
|
|
88
88
|
|
89
89
|
IGNORE = {
|
90
90
|
arg: true,
|
91
|
-
# Ruby doesn't appear to execute rescue lines.
|
92
|
-
rescue: true
|
93
91
|
}
|
94
92
|
|
95
93
|
def ignore?(node)
|
96
94
|
node.nil? || IGNORE[node.type]
|
97
95
|
end
|
98
96
|
|
97
|
+
IGNORE_CHILDREN = {
|
98
|
+
hash: true,
|
99
|
+
array: true,
|
100
|
+
}
|
101
|
+
|
102
|
+
def ignore_children?(node)
|
103
|
+
IGNORE_CHILDREN[node.type]
|
104
|
+
end
|
105
|
+
|
99
106
|
def expand(node, coverage, level = 0)
|
100
107
|
if node.is_a? Parser::AST::Node
|
101
108
|
if ignore?(node)
|
102
109
|
# coverage.annotate(node.location.line, "ignoring #{node.type}")
|
103
|
-
|
104
|
-
if
|
105
|
-
|
106
|
-
coverage.counts[node.location.line] ||= 0
|
107
|
-
elsif node.location
|
108
|
-
# coverage.annotate(node.location.line, "not executable #{node.type}") rescue nil
|
110
|
+
elsif node.type == :begin
|
111
|
+
if last_child = node.children&.last
|
112
|
+
coverage.counts[last_child.location.line] ||= 0
|
109
113
|
end
|
110
114
|
|
111
|
-
|
115
|
+
expand(node.children, coverage, level + 1)
|
116
|
+
elsif node.type == :send
|
117
|
+
coverage.counts[node.location.selector.line] ||= 0
|
118
|
+
elsif executable?(node)
|
119
|
+
# coverage.annotate(node.location.line, "executable #{node.type}")
|
120
|
+
coverage.counts[node.location.line] ||= 0
|
121
|
+
else
|
122
|
+
if ignore_children?(node)
|
112
123
|
# coverage.annotate(node.location.line, "ignoring #{node.type} children")
|
124
|
+
else
|
125
|
+
expand(node.children, coverage, level + 1)
|
113
126
|
end
|
114
|
-
|
115
|
-
expand(node.children, coverage, level + 1)
|
116
127
|
end
|
117
128
|
elsif node.is_a? Array
|
118
129
|
node.each do |child|
|
data/lib/covered/sus.rb
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# Copyright, 2019, 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
|
+
module Sus
|
23
|
+
def initialize(...)
|
24
|
+
super
|
25
|
+
|
26
|
+
# Defer loading the coverage configuration unless we are actually running with coverage enabled to avoid performance cost/overhead.
|
27
|
+
if ENV['COVERAGE']
|
28
|
+
require_relative 'config'
|
29
|
+
|
30
|
+
@covered = Covered::Config.load(root: self.root)
|
31
|
+
if @covered.record?
|
32
|
+
@covered.enable
|
33
|
+
end
|
34
|
+
else
|
35
|
+
@covered = nil
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def after_tests(assertions)
|
40
|
+
super(assertions)
|
41
|
+
|
42
|
+
if @covered&.record?
|
43
|
+
@covered.disable
|
44
|
+
@covered.call(self.output.io)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/lib/covered/version.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: covered
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
|
+
- Adam Daniels
|
8
9
|
- Cyril Roelandt
|
9
10
|
- Shannon Skipper
|
10
11
|
- chocolateboy
|
@@ -13,33 +14,34 @@ bindir: bin
|
|
13
14
|
cert_chain:
|
14
15
|
- |
|
15
16
|
-----BEGIN CERTIFICATE-----
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
17
|
+
MIIE2DCCA0CgAwIBAgIBATANBgkqhkiG9w0BAQsFADBhMRgwFgYDVQQDDA9zYW11
|
18
|
+
ZWwud2lsbGlhbXMxHTAbBgoJkiaJk/IsZAEZFg1vcmlvbnRyYW5zZmVyMRIwEAYK
|
19
|
+
CZImiZPyLGQBGRYCY28xEjAQBgoJkiaJk/IsZAEZFgJuejAeFw0yMjA4MDYwNDUz
|
20
|
+
MjRaFw0zMjA4MDMwNDUzMjRaMGExGDAWBgNVBAMMD3NhbXVlbC53aWxsaWFtczEd
|
21
|
+
MBsGCgmSJomT8ixkARkWDW9yaW9udHJhbnNmZXIxEjAQBgoJkiaJk/IsZAEZFgJj
|
22
|
+
bzESMBAGCgmSJomT8ixkARkWAm56MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIB
|
23
|
+
igKCAYEAomvSopQXQ24+9DBB6I6jxRI2auu3VVb4nOjmmHq7XWM4u3HL+pni63X2
|
24
|
+
9qZdoq9xt7H+RPbwL28LDpDNflYQXoOhoVhQ37Pjn9YDjl8/4/9xa9+NUpl9XDIW
|
25
|
+
sGkaOY0eqsQm1pEWkHJr3zn/fxoKPZPfaJOglovdxf7dgsHz67Xgd/ka+Wo1YqoE
|
26
|
+
e5AUKRwUuvaUaumAKgPH+4E4oiLXI4T1Ff5Q7xxv6yXvHuYtlMHhYfgNn8iiW8WN
|
27
|
+
XibYXPNP7NtieSQqwR/xM6IRSoyXKuS+ZNGDPUUGk8RoiV/xvVN4LrVm9upSc0ss
|
28
|
+
RZ6qwOQmXCo/lLcDUxJAgG95cPw//sI00tZan75VgsGzSWAOdjQpFM0l4dxvKwHn
|
29
|
+
tUeT3ZsAgt0JnGqNm2Bkz81kG4A2hSyFZTFA8vZGhp+hz+8Q573tAR89y9YJBdYM
|
30
|
+
zp0FM4zwMNEUwgfRzv1tEVVUEXmoFCyhzonUUw4nE4CFu/sE3ffhjKcXcY//qiSW
|
31
|
+
xm4erY3XAgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
|
32
|
+
BBYEFO9t7XWuFf2SKLmuijgqR4sGDlRsMC4GA1UdEQQnMCWBI3NhbXVlbC53aWxs
|
33
|
+
aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWBI3NhbXVlbC53aWxs
|
34
|
+
aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEBCwUAA4IBgQB5sxkE
|
35
|
+
cBsSYwK6fYpM+hA5B5yZY2+L0Z+27jF1pWGgbhPH8/FjjBLVn+VFok3CDpRqwXCl
|
36
|
+
xCO40JEkKdznNy2avOMra6PFiQyOE74kCtv7P+Fdc+FhgqI5lMon6tt9rNeXmnW/
|
37
|
+
c1NaMRdxy999hmRGzUSFjozcCwxpy/LwabxtdXwXgSay4mQ32EDjqR1TixS1+smp
|
38
|
+
8C/NCWgpIfzpHGJsjvmH2wAfKtTTqB9CVKLCWEnCHyCaRVuKkrKjqhYCdmMBqCws
|
39
|
+
JkxfQWC+jBVeG9ZtPhQgZpfhvh+6hMhraUYRQ6XGyvBqEUe+yo6DKIT3MtGE2+CP
|
40
|
+
eX9i9ZWBydWb8/rvmwmX2kkcBbX0hZS1rcR593hGc61JR6lvkGYQ2MYskBveyaxt
|
41
|
+
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
42
|
+
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
41
43
|
-----END CERTIFICATE-----
|
42
|
-
date: 2022-
|
44
|
+
date: 2022-08-27 00:00:00.000000000 Z
|
43
45
|
dependencies:
|
44
46
|
- !ruby/object:Gem::Dependency
|
45
47
|
name: async-rest
|
@@ -159,13 +161,13 @@ executables: []
|
|
159
161
|
extensions: []
|
160
162
|
extra_rdoc_files: []
|
161
163
|
files:
|
164
|
+
- bake/covered/debug.rb
|
162
165
|
- bake/covered/validate.rb
|
163
166
|
- lib/covered.rb
|
164
167
|
- lib/covered/cache.rb
|
165
168
|
- lib/covered/capture.rb
|
166
169
|
- lib/covered/config.rb
|
167
170
|
- lib/covered/coverage.rb
|
168
|
-
- lib/covered/coveralls.rb
|
169
171
|
- lib/covered/files.rb
|
170
172
|
- lib/covered/markdown_summary.rb
|
171
173
|
- lib/covered/minitest.rb
|
@@ -175,6 +177,7 @@ files:
|
|
175
177
|
- lib/covered/source.rb
|
176
178
|
- lib/covered/statistics.rb
|
177
179
|
- lib/covered/summary.rb
|
180
|
+
- lib/covered/sus.rb
|
178
181
|
- lib/covered/version.rb
|
179
182
|
- lib/covered/wrapper.rb
|
180
183
|
homepage: https://github.com/ioquatix/covered
|
@@ -197,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
197
200
|
- !ruby/object:Gem::Version
|
198
201
|
version: '0'
|
199
202
|
requirements: []
|
200
|
-
rubygems_version: 3.
|
203
|
+
rubygems_version: 3.3.7
|
201
204
|
signing_key:
|
202
205
|
specification_version: 4
|
203
206
|
summary: A modern approach to code coverage.
|
metadata.gz.sig
CHANGED
Binary file
|
data/lib/covered/coveralls.rb
DELETED
@@ -1,108 +0,0 @@
|
|
1
|
-
# Copyright, 2019, 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 'async'
|
22
|
-
require 'async/rest/representation'
|
23
|
-
|
24
|
-
require 'securerandom'
|
25
|
-
|
26
|
-
module Covered
|
27
|
-
class Coveralls
|
28
|
-
class Wrapper < Async::REST::Wrapper::JSON
|
29
|
-
def prepare_request(payload, headers)
|
30
|
-
headers['accept'] ||= @content_type
|
31
|
-
boundary = SecureRandom.hex(32)
|
32
|
-
|
33
|
-
# This is a pretty messed up API. Don't change anything below. It's fragile.
|
34
|
-
if payload
|
35
|
-
headers['content-type'] = "multipart/form-data, boundary=#{boundary}"
|
36
|
-
|
37
|
-
Async::HTTP::Body::Buffered.new([
|
38
|
-
"--#{boundary}\r\n",
|
39
|
-
"Content-Disposition: form-data; name=\"json_file\"; filename=\"body.json\"\r\n",
|
40
|
-
"Content-Type: text/plain\r\n\r\n",
|
41
|
-
::JSON.dump(payload),
|
42
|
-
"\r\n--#{boundary}--\r\n",
|
43
|
-
])
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
URL = "https://coveralls.io/api/v1/jobs"
|
49
|
-
|
50
|
-
def initialize(token: nil, service: nil, job_id: nil)
|
51
|
-
@token = token
|
52
|
-
@service = service
|
53
|
-
@job_id = job_id
|
54
|
-
end
|
55
|
-
|
56
|
-
def detect_service
|
57
|
-
if token = ENV.fetch('COVERALLS_REPO_TOKEN', @token)
|
58
|
-
return {"repo_token" => token}
|
59
|
-
elsif @service && @job_id
|
60
|
-
return {"service_name" => @service, "service_job_id" => @job_id}
|
61
|
-
elsif job_id = ENV['TRAVIS_JOB_ID']
|
62
|
-
return {"service_name" => "travis-ci", "service_job_id" => job_id}
|
63
|
-
elsif token = ENV['GITHUB_TOKEN']
|
64
|
-
return {"service_name" => "github", "repo_token" => token}
|
65
|
-
else
|
66
|
-
warn "#{self.class} can't detect service! Please specify COVERALLS_REPO_TOKEN."
|
67
|
-
end
|
68
|
-
|
69
|
-
return nil
|
70
|
-
end
|
71
|
-
|
72
|
-
def call(wrapper, output = $stderr)
|
73
|
-
if body = detect_service
|
74
|
-
output.puts "Submitting data using #{body.inspect}..."
|
75
|
-
|
76
|
-
source_files = []
|
77
|
-
|
78
|
-
wrapper.each do |coverage|
|
79
|
-
path = wrapper.relative_path(coverage.path)
|
80
|
-
|
81
|
-
source_files << {
|
82
|
-
name: path,
|
83
|
-
source_digest: Digest::MD5.hexdigest(coverage.read),
|
84
|
-
coverage: coverage.to_a,
|
85
|
-
}
|
86
|
-
end
|
87
|
-
|
88
|
-
body[:source_files] = source_files
|
89
|
-
|
90
|
-
Async do
|
91
|
-
representation = Async::REST::Representation.new(
|
92
|
-
Async::REST::Resource.for(URL),
|
93
|
-
wrapper: Wrapper.new
|
94
|
-
)
|
95
|
-
|
96
|
-
begin
|
97
|
-
response = representation.post(body)
|
98
|
-
|
99
|
-
output.puts "Got response: #{response.read}"
|
100
|
-
|
101
|
-
ensure
|
102
|
-
representation.close
|
103
|
-
end
|
104
|
-
end
|
105
|
-
end
|
106
|
-
end
|
107
|
-
end
|
108
|
-
end
|