aboutsummaryrefslogtreecommitdiff
path: root/ruby/tests
diff options
context:
space:
mode:
authorYilun Chong <yilunchong@google.com>2017-06-27 18:24:15 -0700
committerYilun Chong <yilunchong@google.com>2017-06-27 18:24:15 -0700
commit18a0c2c4d2894e820f96494f33d8ca3ea33dec3a (patch)
treeba6297a500f23a17ba2844f3daeae0f02561ac80 /ruby/tests
parent2ad74e1606728564cc777aa4917d7e2299317eda (diff)
downloadprotobuf-18a0c2c4d2894e820f96494f33d8ca3ea33dec3a.tar.gz
protobuf-18a0c2c4d2894e820f96494f33d8ca3ea33dec3a.tar.bz2
protobuf-18a0c2c4d2894e820f96494f33d8ca3ea33dec3a.zip
add proto2 supported for cpp,python,nodejs,ruby,php
Diffstat (limited to 'ruby/tests')
-rw-r--r--ruby/tests/generated_code_pb.rb74
-rw-r--r--ruby/tests/test_import_pb.rb13
2 files changed, 87 insertions, 0 deletions
diff --git a/ruby/tests/generated_code_pb.rb b/ruby/tests/generated_code_pb.rb
new file mode 100644
index 00000000..0358ada7
--- /dev/null
+++ b/ruby/tests/generated_code_pb.rb
@@ -0,0 +1,74 @@
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: tests/generated_code.proto
+
+require 'google/protobuf'
+
+Google::Protobuf::DescriptorPool.generated_pool.build do
+ add_message "a.b.c.TestMessage" do
+ optional :optional_int32, :int32, 1
+ optional :optional_int64, :int64, 2
+ optional :optional_uint32, :uint32, 3
+ optional :optional_uint64, :uint64, 4
+ optional :optional_bool, :bool, 5
+ optional :optional_double, :double, 6
+ optional :optional_float, :float, 7
+ optional :optional_string, :string, 8
+ optional :optional_bytes, :bytes, 9
+ optional :optional_enum, :enum, 10, "a.b.c.TestEnum"
+ optional :optional_msg, :message, 11, "a.b.c.TestMessage"
+ repeated :repeated_int32, :int32, 21
+ repeated :repeated_int64, :int64, 22
+ repeated :repeated_uint32, :uint32, 23
+ repeated :repeated_uint64, :uint64, 24
+ repeated :repeated_bool, :bool, 25
+ repeated :repeated_double, :double, 26
+ repeated :repeated_float, :float, 27
+ repeated :repeated_string, :string, 28
+ repeated :repeated_bytes, :bytes, 29
+ repeated :repeated_enum, :enum, 30, "a.b.c.TestEnum"
+ repeated :repeated_msg, :message, 31, "a.b.c.TestMessage"
+ map :map_int32_string, :int32, :string, 61
+ map :map_int64_string, :int64, :string, 62
+ map :map_uint32_string, :uint32, :string, 63
+ map :map_uint64_string, :uint64, :string, 64
+ map :map_bool_string, :bool, :string, 65
+ map :map_string_string, :string, :string, 66
+ map :map_string_msg, :string, :message, 67, "a.b.c.TestMessage"
+ map :map_string_enum, :string, :enum, 68, "a.b.c.TestEnum"
+ map :map_string_int32, :string, :int32, 69
+ map :map_string_bool, :string, :bool, 70
+ optional :nested_message, :message, 80, "a.b.c.TestMessage.NestedMessage"
+ oneof :my_oneof do
+ optional :oneof_int32, :int32, 41
+ optional :oneof_int64, :int64, 42
+ optional :oneof_uint32, :uint32, 43
+ optional :oneof_uint64, :uint64, 44
+ optional :oneof_bool, :bool, 45
+ optional :oneof_double, :double, 46
+ optional :oneof_float, :float, 47
+ optional :oneof_string, :string, 48
+ optional :oneof_bytes, :bytes, 49
+ optional :oneof_enum, :enum, 50, "a.b.c.TestEnum"
+ optional :oneof_msg, :message, 51, "a.b.c.TestMessage"
+ end
+ end
+ add_message "a.b.c.TestMessage.NestedMessage" do
+ optional :foo, :int32, 1
+ end
+ add_enum "a.b.c.TestEnum" do
+ value :Default, 0
+ value :A, 1
+ value :B, 2
+ value :C, 3
+ end
+end
+
+module A
+ module B
+ module C
+ TestMessage = Google::Protobuf::DescriptorPool.generated_pool.lookup("a.b.c.TestMessage").msgclass
+ TestMessage::NestedMessage = Google::Protobuf::DescriptorPool.generated_pool.lookup("a.b.c.TestMessage.NestedMessage").msgclass
+ TestEnum = Google::Protobuf::DescriptorPool.generated_pool.lookup("a.b.c.TestEnum").enummodule
+ end
+ end
+end
diff --git a/ruby/tests/test_import_pb.rb b/ruby/tests/test_import_pb.rb
new file mode 100644
index 00000000..83f04d60
--- /dev/null
+++ b/ruby/tests/test_import_pb.rb
@@ -0,0 +1,13 @@
+# Generated by the protocol buffer compiler. DO NOT EDIT!
+# source: tests/test_import.proto
+
+require 'google/protobuf'
+
+Google::Protobuf::DescriptorPool.generated_pool.build do
+ add_message "foo_bar.TestImportedMessage" do
+ end
+end
+
+module FooBar
+ TestImportedMessage = Google::Protobuf::DescriptorPool.generated_pool.lookup("foo_bar.TestImportedMessage").msgclass
+end