blob: c716facdd6f3f9acc8638df39ef4b35848cc7868 [file] [log] [blame]
Josh Haberman181c7f22015-07-15 11:05:10 -07001#!/usr/bin/env ruby
2#
3# Protocol Buffers - Google's data interchange format
4# Copyright 2008 Google Inc. All rights reserved.
5# https://developers.google.com/protocol-buffers/
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions are
9# met:
10#
11# * Redistributions of source code must retain the above copyright
12# notice, this list of conditions and the following disclaimer.
13# * Redistributions in binary form must reproduce the above
14# copyright notice, this list of conditions and the following disclaimer
15# in the documentation and/or other materials provided with the
16# distribution.
17# * Neither the name of Google Inc. nor the names of its
18# contributors may be used to endorse or promote products derived from
19# this software without specific prior written permission.
20#
21# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33require 'conformance'
34
Josh Habermanc2c43a42015-07-17 16:29:10 -070035$test_count = 0
36$verbose = false
Josh Haberman181c7f22015-07-15 11:05:10 -070037
38def do_test(request)
39 test_message = Conformance::TestAllTypes.new
40 response = Conformance::ConformanceResponse.new
41
42 begin
43 case request.payload
44 when :protobuf_payload
45 begin
Josh Habermanc2c43a42015-07-17 16:29:10 -070046 test_message =
47 Conformance::TestAllTypes.decode(request.protobuf_payload)
Josh Haberman181c7f22015-07-15 11:05:10 -070048 rescue Google::Protobuf::ParseError => err
Josh Habermanc2c43a42015-07-17 16:29:10 -070049 response.parse_error = err.message.encode('utf-8')
Josh Haberman181c7f22015-07-15 11:05:10 -070050 return response
51 end
52
53 when :json_payload
Josh Haberman78da6662016-01-13 19:05:43 -080054 begin
55 test_message = Conformance::TestAllTypes.decode_json(request.json_payload)
56 rescue Google::Protobuf::ParseError => err
57 response.parse_error = err.message.encode('utf-8')
58 return response
59 end
Josh Haberman181c7f22015-07-15 11:05:10 -070060
61 when nil
Josh Habermanc2c43a42015-07-17 16:29:10 -070062 fail "Request didn't have payload"
Josh Haberman181c7f22015-07-15 11:05:10 -070063 end
64
65 case request.requested_output_format
66 when :UNSPECIFIED
Josh Habermanc2c43a42015-07-17 16:29:10 -070067 fail 'Unspecified output format'
Josh Haberman181c7f22015-07-15 11:05:10 -070068
69 when :PROTOBUF
Josh Habermanc2c43a42015-07-17 16:29:10 -070070 response.protobuf_payload = test_message.to_proto
Josh Haberman181c7f22015-07-15 11:05:10 -070071
72 when :JSON
Josh Habermanc2c43a42015-07-17 16:29:10 -070073 response.json_payload = test_message.to_json
Josh Haberman78da6662016-01-13 19:05:43 -080074
75 when nil
76 fail "Request didn't have requested output format"
Josh Haberman181c7f22015-07-15 11:05:10 -070077 end
Josh Habermanc2c43a42015-07-17 16:29:10 -070078 rescue StandardError => err
79 response.runtime_error = err.message.encode('utf-8')
Josh Haberman181c7f22015-07-15 11:05:10 -070080 end
81
Josh Habermanc2c43a42015-07-17 16:29:10 -070082 response
Josh Haberman181c7f22015-07-15 11:05:10 -070083end
84
Josh Habermanc2c43a42015-07-17 16:29:10 -070085# Returns true if the test ran successfully, false on legitimate EOF.
86# If EOF is encountered in an unexpected place, raises IOError.
Josh Haberman181c7f22015-07-15 11:05:10 -070087def do_test_io
88 length_bytes = STDIN.read(4)
89 return false if length_bytes.nil?
90
Josh Habermanc2c43a42015-07-17 16:29:10 -070091 length = length_bytes.unpack('V').first
Josh Haberman181c7f22015-07-15 11:05:10 -070092 serialized_request = STDIN.read(length)
Josh Habermanc2c43a42015-07-17 16:29:10 -070093 if serialized_request.nil? || serialized_request.length != length
94 fail IOError
Josh Haberman181c7f22015-07-15 11:05:10 -070095 end
96
97 request = Conformance::ConformanceRequest.decode(serialized_request)
98
99 response = do_test(request)
100
101 serialized_response = Conformance::ConformanceResponse.encode(response)
Josh Habermanc2c43a42015-07-17 16:29:10 -0700102 STDOUT.write([serialized_response.length].pack('V'))
Josh Haberman181c7f22015-07-15 11:05:10 -0700103 STDOUT.write(serialized_response)
104 STDOUT.flush
105
Josh Habermanc2c43a42015-07-17 16:29:10 -0700106 if $verbose
Josh Haberman78da6662016-01-13 19:05:43 -0800107 STDERR.puts("conformance_ruby: request=#{request.to_json}, " \
108 "response=#{response.to_json}\n")
Josh Habermanc2c43a42015-07-17 16:29:10 -0700109 end
Josh Haberman181c7f22015-07-15 11:05:10 -0700110
Josh Habermanc2c43a42015-07-17 16:29:10 -0700111 $test_count += 1
Josh Haberman181c7f22015-07-15 11:05:10 -0700112
Josh Habermanc2c43a42015-07-17 16:29:10 -0700113 true
Josh Haberman181c7f22015-07-15 11:05:10 -0700114end
115
Josh Habermanc2c43a42015-07-17 16:29:10 -0700116loop do
117 unless do_test_io
Josh Haberman78da6662016-01-13 19:05:43 -0800118 STDERR.puts('conformance_ruby: received EOF from test runner ' \
Josh Habermanc2c43a42015-07-17 16:29:10 -0700119 "after #{$test_count} tests, exiting")
120 break
Josh Haberman181c7f22015-07-15 11:05:10 -0700121 end
122end