cucumber-messages 13.0.1 → 13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d5ddca46fd45d4ac2df0ffb741967ce6bd7ea54b8206fa7e73ca5223c15698d
4
- data.tar.gz: c445cb77ec2b8ae74ce8983edbdfd87981fd9fc3a4c47a08d84c55814285d24f
3
+ metadata.gz: d7d179baf44d1d2267653dad69d58b831cdbaa1ee07cdcc48f626ef3c0d75f1e
4
+ data.tar.gz: f819ada49098e3e6248ad475e5fb2b4a15b2593801bcb7f036a8b3419dd64481
5
5
  SHA512:
6
- metadata.gz: 343d47e6ed010e2e4b3ce7a15419d3a65c8edaa1c0bdc19af6a42442018f82b0e07925ddda5f288b8b4db7565079f3a4c27c40da72ad7061355e1ab1243ba1b2
7
- data.tar.gz: 8d6b41fdced719587634791c6186bb5ee5f7e9582a31caadec6ba6e207756d45d02947021103aeb35be1ec419152a2496179fbfae90fd2c8e7d9b6e19709bfdc
6
+ metadata.gz: a883a5d58178d49b081490f6c9fe8586c1c6ed5bc6b73e45da38f705f0e843c8e0dbcfecf024831f0058c4fb0020c1221f114da76be055b6b864a6e31cac235c
7
+ data.tar.gz: 6aa18340f7a7172565a3d23bc6073a40065b33fb4d7a9199c284582a4b41bda0eef871040a91f936740ff04f09c76c44cdd8d66410a569171ca623eb0b8b3012
data/VERSION CHANGED
@@ -1 +1 @@
1
- 13.0.1
1
+ 13.1.0
@@ -365,6 +365,7 @@ module Cucumber
365
365
  optional :string, :media_type, 5
366
366
  optional ::Cucumber::Messages::Attachment::ContentEncoding, :content_encoding, 6
367
367
  optional :string, :file_name, 7
368
+ optional :string, :url, 8
368
369
  end
369
370
 
370
371
  class Pickle
@@ -6,6 +6,7 @@ module Cucumber
6
6
  def initialize(io)
7
7
  super() do |yielder|
8
8
  io.each_line do |json|
9
+ next if json.strip.empty?
9
10
  m = Cucumber::Messages::Envelope.from_json(json)
10
11
  yielder.yield(m)
11
12
  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}')
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.0.1
4
+ version: 13.1.0
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-08-07 00:00:00.000000000 Z
11
+ date: 2020-09-14 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.0.1
125
+ summary: cucumber-messages-13.1.0
126
126
  test_files:
127
127
  - spec/cucumber/messages/time_conversion_spec.rb
128
128
  - spec/cucumber/messages/ndjson_serialization_spec.rb