cucumber-messages 13.2.0 → 13.2.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: 6fbd2a2fcaa7e4afd1eb56bece2ee4907661049c0ed7ca5eade53335595b625a
|
4
|
+
data.tar.gz: 95fe3cf9d70ae3ac95a9eb00e6936c40eef40864fa034f87394f29ed8ae7f5e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a679068f177a07425a8311880185f66036f80eadb07de274d1c4c59e467e4142a852403602f281792755f268f30721142705ac9219b4b9d0c4794b43a1db7a7
|
7
|
+
data.tar.gz: dfd3d4af835c4f4cdbf72ac01facb0972a06ef7d401b1bb06c638967f914a84afbe13f2ff3e116a6248e88b23c16d80027c79e16642d2dad5aba37fadbde7f88
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
13.2.
|
1
|
+
13.2.1
|
@@ -5,9 +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
|
-
next if
|
10
|
-
|
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
|
11
15
|
yielder.yield(m)
|
12
16
|
end
|
13
17
|
end
|
@@ -95,6 +95,16 @@ module Cucumber
|
|
95
95
|
expect(incoming_messages.to_a).to(eq([Envelope.new]))
|
96
96
|
end
|
97
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
|
+
|
98
108
|
def write_outgoing_messages(messages, out)
|
99
109
|
messages.each do |message|
|
100
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: 13.2.
|
4
|
+
version: 13.2.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: 2020-11-
|
11
|
+
date: 2020-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: protobuf-cucumber
|
@@ -122,7 +122,7 @@ requirements: []
|
|
122
122
|
rubygems_version: 3.1.2
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
|
-
summary: cucumber-messages-13.2.
|
125
|
+
summary: cucumber-messages-13.2.1
|
126
126
|
test_files:
|
127
127
|
- spec/capture_warnings.rb
|
128
128
|
- spec/cucumber/messages/id_generator_spec.rb
|