google-protobuf 3.11.4-universal-darwin → 3.12.2-universal-darwin
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.
Potentially problematic release.
This version of google-protobuf might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/defs.c +96 -8
- data/ext/google/protobuf_c/encode_decode.c +16 -14
- data/ext/google/protobuf_c/extconf.rb +0 -0
- data/ext/google/protobuf_c/map.c +20 -46
- data/ext/google/protobuf_c/message.c +20 -11
- data/ext/google/protobuf_c/protobuf.h +1 -0
- data/ext/google/protobuf_c/storage.c +72 -23
- data/ext/google/protobuf_c/upb.c +1810 -1282
- data/ext/google/protobuf_c/upb.h +1031 -1339
- data/lib/google/2.3/protobuf_c.bundle +0 -0
- data/lib/google/2.4/protobuf_c.bundle +0 -0
- data/lib/google/2.5/protobuf_c.bundle +0 -0
- data/lib/google/2.6/protobuf_c.bundle +0 -0
- data/lib/google/2.7/protobuf_c.bundle +0 -0
- data/lib/google/protobuf/well_known_types.rb +0 -0
- data/tests/basic.rb +66 -48
- data/tests/generated_code_test.rb +0 -0
- data/tests/stress.rb +0 -0
- metadata +20 -10
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
data/tests/basic.rb
CHANGED
@@ -32,11 +32,11 @@ module BasicTest
|
|
32
32
|
include CommonTests
|
33
33
|
|
34
34
|
def test_has_field
|
35
|
-
m =
|
36
|
-
assert !m.
|
37
|
-
m.
|
38
|
-
assert m.
|
39
|
-
assert
|
35
|
+
m = TestSingularFields.new
|
36
|
+
assert !m.has_singular_msg?
|
37
|
+
m.singular_msg = TestMessage2.new
|
38
|
+
assert m.has_singular_msg?
|
39
|
+
assert TestSingularFields.descriptor.lookup('singular_msg').has?(m)
|
40
40
|
|
41
41
|
m = OneofMessage.new
|
42
42
|
assert !m.has_my_oneof?
|
@@ -45,32 +45,31 @@ module BasicTest
|
|
45
45
|
assert_raise NoMethodError do
|
46
46
|
m.has_a?
|
47
47
|
end
|
48
|
-
|
49
|
-
OneofMessage.descriptor.lookup('a').has?(m)
|
50
|
-
end
|
48
|
+
assert_true OneofMessage.descriptor.lookup('a').has?(m)
|
51
49
|
|
52
|
-
m =
|
50
|
+
m = TestSingularFields.new
|
53
51
|
assert_raise NoMethodError do
|
54
|
-
m.
|
52
|
+
m.has_singular_int32?
|
55
53
|
end
|
56
54
|
assert_raise ArgumentError do
|
57
|
-
|
55
|
+
TestSingularFields.descriptor.lookup('singular_int32').has?(m)
|
58
56
|
end
|
59
57
|
|
60
58
|
assert_raise NoMethodError do
|
61
|
-
m.
|
59
|
+
m.has_singular_string?
|
62
60
|
end
|
63
61
|
assert_raise ArgumentError do
|
64
|
-
|
62
|
+
TestSingularFields.descriptor.lookup('singular_string').has?(m)
|
65
63
|
end
|
66
64
|
|
67
65
|
assert_raise NoMethodError do
|
68
|
-
m.
|
66
|
+
m.has_singular_bool?
|
69
67
|
end
|
70
68
|
assert_raise ArgumentError do
|
71
|
-
|
69
|
+
TestSingularFields.descriptor.lookup('singular_bool').has?(m)
|
72
70
|
end
|
73
71
|
|
72
|
+
m = TestMessage.new
|
74
73
|
assert_raise NoMethodError do
|
75
74
|
m.has_repeated_msg?
|
76
75
|
end
|
@@ -79,40 +78,59 @@ module BasicTest
|
|
79
78
|
end
|
80
79
|
end
|
81
80
|
|
81
|
+
def test_no_presence
|
82
|
+
m = TestSingularFields.new
|
83
|
+
|
84
|
+
# Explicitly setting to zero does not cause anything to be serialized.
|
85
|
+
m.singular_int32 = 0
|
86
|
+
assert_equal "", TestSingularFields.encode(m)
|
87
|
+
|
88
|
+
# Explicitly setting to a non-zero value *does* cause serialization.
|
89
|
+
m.singular_int32 = 1
|
90
|
+
assert_not_equal "", TestSingularFields.encode(m)
|
91
|
+
|
92
|
+
m.singular_int32 = 0
|
93
|
+
assert_equal "", TestSingularFields.encode(m)
|
94
|
+
end
|
95
|
+
|
82
96
|
def test_set_clear_defaults
|
83
|
-
m =
|
97
|
+
m = TestSingularFields.new
|
98
|
+
|
99
|
+
m.singular_int32 = -42
|
100
|
+
assert_equal -42, m.singular_int32
|
101
|
+
m.clear_singular_int32
|
102
|
+
assert_equal 0, m.singular_int32
|
103
|
+
|
104
|
+
m.singular_int32 = 50
|
105
|
+
assert_equal 50, m.singular_int32
|
106
|
+
TestSingularFields.descriptor.lookup('singular_int32').clear(m)
|
107
|
+
assert_equal 0, m.singular_int32
|
108
|
+
|
109
|
+
m.singular_string = "foo bar"
|
110
|
+
assert_equal "foo bar", m.singular_string
|
111
|
+
m.clear_singular_string
|
112
|
+
assert_equal "", m.singular_string
|
113
|
+
|
114
|
+
m.singular_string = "foo"
|
115
|
+
assert_equal "foo", m.singular_string
|
116
|
+
TestSingularFields.descriptor.lookup('singular_string').clear(m)
|
117
|
+
assert_equal "", m.singular_string
|
118
|
+
|
119
|
+
m.singular_msg = TestMessage2.new(:foo => 42)
|
120
|
+
assert_equal TestMessage2.new(:foo => 42), m.singular_msg
|
121
|
+
assert m.has_singular_msg?
|
122
|
+
m.clear_singular_msg
|
123
|
+
assert_equal nil, m.singular_msg
|
124
|
+
assert !m.has_singular_msg?
|
125
|
+
|
126
|
+
m.singular_msg = TestMessage2.new(:foo => 42)
|
127
|
+
assert_equal TestMessage2.new(:foo => 42), m.singular_msg
|
128
|
+
TestSingularFields.descriptor.lookup('singular_msg').clear(m)
|
129
|
+
assert_equal nil, m.singular_msg
|
130
|
+
end
|
84
131
|
|
85
|
-
|
86
|
-
|
87
|
-
m.clear_optional_int32
|
88
|
-
assert_equal 0, m.optional_int32
|
89
|
-
|
90
|
-
m.optional_int32 = 50
|
91
|
-
assert_equal 50, m.optional_int32
|
92
|
-
TestMessage.descriptor.lookup('optional_int32').clear(m)
|
93
|
-
assert_equal 0, m.optional_int32
|
94
|
-
|
95
|
-
m.optional_string = "foo bar"
|
96
|
-
assert_equal "foo bar", m.optional_string
|
97
|
-
m.clear_optional_string
|
98
|
-
assert_equal "", m.optional_string
|
99
|
-
|
100
|
-
m.optional_string = "foo"
|
101
|
-
assert_equal "foo", m.optional_string
|
102
|
-
TestMessage.descriptor.lookup('optional_string').clear(m)
|
103
|
-
assert_equal "", m.optional_string
|
104
|
-
|
105
|
-
m.optional_msg = TestMessage2.new(:foo => 42)
|
106
|
-
assert_equal TestMessage2.new(:foo => 42), m.optional_msg
|
107
|
-
assert m.has_optional_msg?
|
108
|
-
m.clear_optional_msg
|
109
|
-
assert_equal nil, m.optional_msg
|
110
|
-
assert !m.has_optional_msg?
|
111
|
-
|
112
|
-
m.optional_msg = TestMessage2.new(:foo => 42)
|
113
|
-
assert_equal TestMessage2.new(:foo => 42), m.optional_msg
|
114
|
-
TestMessage.descriptor.lookup('optional_msg').clear(m)
|
115
|
-
assert_equal nil, m.optional_msg
|
132
|
+
def test_clear_repeated_fields
|
133
|
+
m = TestMessage.new
|
116
134
|
|
117
135
|
m.repeated_int32.push(1)
|
118
136
|
assert_equal [1], m.repeated_int32
|
@@ -128,6 +146,7 @@ module BasicTest
|
|
128
146
|
m.a = "foo"
|
129
147
|
assert_equal "foo", m.a
|
130
148
|
assert m.has_my_oneof?
|
149
|
+
assert_equal :a, m.my_oneof
|
131
150
|
m.clear_a
|
132
151
|
assert !m.has_my_oneof?
|
133
152
|
|
@@ -143,7 +162,6 @@ module BasicTest
|
|
143
162
|
assert !m.has_my_oneof?
|
144
163
|
end
|
145
164
|
|
146
|
-
|
147
165
|
def test_initialization_map_errors
|
148
166
|
e = assert_raise ArgumentError do
|
149
167
|
TestMessage.new(:hello => "world")
|
File without changes
|
data/tests/stress.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,43 +1,49 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.12.2
|
5
5
|
platform: universal-darwin
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler-dock
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 1.0.1
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2.0'
|
20
23
|
type: :development
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.0.1
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: '2.0'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: rake-compiler
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
37
|
- - "~>"
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
39
|
+
version: 1.1.0
|
34
40
|
type: :development
|
35
41
|
prerelease: false
|
36
42
|
version_requirements: !ruby/object:Gem::Requirement
|
37
43
|
requirements:
|
38
44
|
- - "~>"
|
39
45
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
46
|
+
version: 1.1.0
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: test-unit
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,6 +100,7 @@ files:
|
|
94
100
|
- lib/google/2.4/protobuf_c.bundle
|
95
101
|
- lib/google/2.5/protobuf_c.bundle
|
96
102
|
- lib/google/2.6/protobuf_c.bundle
|
103
|
+
- lib/google/2.7/protobuf_c.bundle
|
97
104
|
- lib/google/protobuf.rb
|
98
105
|
- lib/google/protobuf/any_pb.rb
|
99
106
|
- lib/google/protobuf/api_pb.rb
|
@@ -115,7 +122,7 @@ homepage: https://developers.google.com/protocol-buffers
|
|
115
122
|
licenses:
|
116
123
|
- BSD-3-Clause
|
117
124
|
metadata:
|
118
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.
|
125
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.12.2/ruby
|
119
126
|
post_install_message:
|
120
127
|
rdoc_options: []
|
121
128
|
require_paths:
|
@@ -125,13 +132,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
125
132
|
- - ">="
|
126
133
|
- !ruby/object:Gem::Version
|
127
134
|
version: '2.3'
|
135
|
+
- - "<"
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: 2.8.dev
|
128
138
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
129
139
|
requirements:
|
130
140
|
- - ">="
|
131
141
|
- !ruby/object:Gem::Version
|
132
142
|
version: '0'
|
133
143
|
requirements: []
|
134
|
-
rubygems_version: 3.1.
|
144
|
+
rubygems_version: 3.1.3
|
135
145
|
signing_key:
|
136
146
|
specification_version: 4
|
137
147
|
summary: Protocol Buffers
|