cucumber-messages 13.0.1 → 14.0.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d72085d7cb48f631fd458b59ff369badf20132bf9064b7d2304a48c367724ea
|
4
|
+
data.tar.gz: ddd1d08b8fa9927b240f255a153e3110d3256988882746adbccaf34c3536d0d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e47d90a13d38574b82c6df4b7e22ac29063aa8b7dae4e48eafdaba907ccaef1ef18381f4d779b84430fc5b0046e49c999901baf394382c796fb395a9702567e2
|
7
|
+
data.tar.gz: b8eecf47cc0e6b4f76fba0344c697017cfc2e0ff0e67903f8b12806429509b3d9e820b82f66b8a24acfa36bc5a0564bc08472baa6a746b99aaa241eeceeb7894
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
14.0.1
|
data/lib/cucumber/messages.pb.rb
CHANGED
@@ -5,8 +5,13 @@ module Cucumber
|
|
5
5
|
class NdjsonToMessageEnumerator < Enumerator
|
6
6
|
def initialize(io)
|
7
7
|
super() do |yielder|
|
8
|
-
io.each_line do |
|
9
|
-
|
8
|
+
io.each_line do |line|
|
9
|
+
next if line.strip.empty?
|
10
|
+
begin
|
11
|
+
m = Cucumber::Messages::Envelope.from_json(line)
|
12
|
+
rescue => e
|
13
|
+
raise "Not JSON: #{line.strip}"
|
14
|
+
end
|
10
15
|
yielder.yield(m)
|
11
16
|
end
|
12
17
|
end
|
@@ -69,6 +69,22 @@ module Cucumber
|
|
69
69
|
expect(incoming_messages.to_a).to(eq(outgoing_messages))
|
70
70
|
end
|
71
71
|
|
72
|
+
it "ignores empty lines" do
|
73
|
+
outgoing_messages = [
|
74
|
+
Envelope.new(source: Source.new(data: 'Feature: Hello')),
|
75
|
+
Envelope.new(attachment: Attachment.new(binary: [1,2,3,4].pack('C*')))
|
76
|
+
]
|
77
|
+
|
78
|
+
io = StringIO.new
|
79
|
+
write_outgoing_messages(outgoing_messages, io)
|
80
|
+
io.write("\n\n")
|
81
|
+
|
82
|
+
io.rewind
|
83
|
+
incoming_messages = NdjsonToMessageEnumerator.new(io)
|
84
|
+
|
85
|
+
expect(incoming_messages.to_a).to(eq(outgoing_messages))
|
86
|
+
end
|
87
|
+
|
72
88
|
it "ignores missing fields" do
|
73
89
|
io = StringIO.new
|
74
90
|
io.puts('{"unused": 99}')
|
@@ -79,6 +95,16 @@ module Cucumber
|
|
79
95
|
expect(incoming_messages.to_a).to(eq([Envelope.new]))
|
80
96
|
end
|
81
97
|
|
98
|
+
it "includes offending line in error message" do
|
99
|
+
io = StringIO.new
|
100
|
+
io.puts('BLA BLA')
|
101
|
+
|
102
|
+
io.rewind
|
103
|
+
incoming_messages = NdjsonToMessageEnumerator.new(io)
|
104
|
+
|
105
|
+
expect { incoming_messages.to_a }.to(raise_error('Not JSON: BLA BLA'))
|
106
|
+
end
|
107
|
+
|
82
108
|
def write_outgoing_messages(messages, out)
|
83
109
|
messages.each do |message|
|
84
110
|
message.write_ndjson_to(out)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber-messages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 14.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: protobuf-cucumber
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
version: '13.0'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 13.0.
|
42
|
+
version: 13.0.3
|
43
43
|
type: :development
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -49,27 +49,27 @@ dependencies:
|
|
49
49
|
version: '13.0'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 13.0.
|
52
|
+
version: 13.0.3
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
57
|
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: '3.
|
59
|
+
version: '3.10'
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 3.
|
62
|
+
version: 3.10.0
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '3.
|
69
|
+
version: '3.10'
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: 3.
|
72
|
+
version: 3.10.0
|
73
73
|
description: Protocol Buffer messages for Cucumber's inter-process communication
|
74
74
|
email: cukes@googlegroups.com
|
75
75
|
executables: []
|
@@ -122,11 +122,11 @@ requirements: []
|
|
122
122
|
rubygems_version: 3.1.2
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
|
-
summary: cucumber-messages-
|
125
|
+
summary: cucumber-messages-14.0.1
|
126
126
|
test_files:
|
127
|
-
- spec/
|
127
|
+
- spec/capture_warnings.rb
|
128
|
+
- spec/cucumber/messages/id_generator_spec.rb
|
128
129
|
- spec/cucumber/messages/ndjson_serialization_spec.rb
|
129
|
-
- spec/cucumber/messages/version_spec.rb
|
130
130
|
- spec/cucumber/messages/protobuf_serialization_spec.rb
|
131
|
-
- spec/cucumber/messages/
|
132
|
-
- spec/
|
131
|
+
- spec/cucumber/messages/time_conversion_spec.rb
|
132
|
+
- spec/cucumber/messages/version_spec.rb
|