File size: 8,379 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from datetime import datetime
from datetime import timezone
from enum import Enum
import pytest
from google.protobuf import timestamp_pb2
import proto
from proto.datetime_helpers import DatetimeWithNanoseconds
def test_repeated_composite_init():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[Foo(bar=42)])
assert len(baz.foos) == 1
assert baz.foos == baz.foos
assert baz.foos[0].bar == 42
assert isinstance(baz.foos[0], Foo)
def test_repeated_composite_equality():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[Foo(bar=42)])
assert baz.foos == baz.foos
def test_repeated_composite_init_struct():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[{"bar": 42}])
assert len(baz.foos) == 1
assert baz.foos[0].bar == 42
def test_repeated_composite_falsy_behavior():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz()
assert not baz.foos
assert len(baz.foos) == 0
def test_repeated_composite_marshaled():
class Foo(proto.Message):
timestamps = proto.RepeatedField(
proto.MESSAGE,
message=timestamp_pb2.Timestamp,
number=1,
)
foo = Foo(
timestamps=[DatetimeWithNanoseconds(2012, 4, 21, 15, tzinfo=timezone.utc)]
)
foo.timestamps.append(timestamp_pb2.Timestamp(seconds=86400 * 365))
foo.timestamps.append(DatetimeWithNanoseconds(2017, 10, 14, tzinfo=timezone.utc))
assert all([isinstance(i, DatetimeWithNanoseconds) for i in foo.timestamps])
assert all([isinstance(i, timestamp_pb2.Timestamp) for i in Foo.pb(foo).timestamps])
assert foo.timestamps[0].year == 2012
assert foo.timestamps[0].month == 4
assert foo.timestamps[0].hour == 15
assert foo.timestamps[1].year == 1971
assert foo.timestamps[1].month == 1
assert foo.timestamps[1].hour == 0
assert foo.timestamps[2].year == 2017
assert foo.timestamps[2].month == 10
assert foo.timestamps[2].hour == 0
def test_repeated_composite_enum():
class Foo(proto.Message):
class Bar(proto.Enum):
BAZ = 0
bars = proto.RepeatedField(Bar, number=1)
foo = Foo(bars=[Foo.Bar.BAZ])
assert isinstance(foo.bars[0], Enum)
def test_repeated_composite_outer_write():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz()
baz.foos = [Foo(bar=96), Foo(bar=48)]
assert len(baz.foos) == 2
assert baz.foos[0].bar == 96
assert baz.foos[1].bar == 48
def test_repeated_composite_append():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz()
baz.foos.append(Foo(bar=96))
baz.foos.append({"bar": 72})
assert len(baz.foos) == 2
assert baz.foos[0].bar == 96
assert baz.foos[1].bar == 72
def test_repeated_composite_insert():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz()
baz.foos.insert(0, {"bar": 72})
baz.foos.insert(0, Foo(bar=96))
assert len(baz.foos) == 2
assert baz.foos[0].bar == 96
assert baz.foos[1].bar == 72
def test_repeated_composite_iadd():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz()
baz.foos += [Foo(bar=96), Foo(bar=48)]
assert len(baz.foos) == 2
assert baz.foos[0].bar == 96
assert baz.foos[1].bar == 48
def test_repeated_composite_set_index():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[{"bar": 96}, {"bar": 48}])
baz.foos[1] = Foo(bar=55)
assert baz.foos[0].bar == 96
assert baz.foos[1].bar == 55
assert len(baz.foos) == 2
def test_repeated_composite_set_index_error():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[])
with pytest.raises(IndexError):
baz.foos[0] = Foo(bar=55)
def test_repeated_composite_set_slice_less():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[{"bar": 96}, {"bar": 48}, {"bar": 24}])
baz.foos[:2] = [{"bar": 12}]
assert baz.foos[0].bar == 12
assert baz.foos[1].bar == 24
assert len(baz.foos) == 2
def test_repeated_composite_set_slice_more():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[{"bar": 12}])
baz.foos[:2] = [{"bar": 96}, {"bar": 48}, {"bar": 24}]
assert baz.foos[0].bar == 96
assert baz.foos[1].bar == 48
assert baz.foos[2].bar == 24
assert len(baz.foos) == 3
def test_repeated_composite_set_slice_not_iterable():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[])
with pytest.raises(TypeError):
baz.foos[:1] = None
def test_repeated_composite_set_extended_slice():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[{"bar": 96}, {"bar": 48}])
baz.foos[::-1] = [{"bar": 96}, {"bar": 48}]
assert baz.foos[0].bar == 48
assert baz.foos[1].bar == 96
assert len(baz.foos) == 2
def test_repeated_composite_set_extended_slice_wrong_length():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[{"bar": 96}])
with pytest.raises(ValueError):
baz.foos[::-1] = []
def test_repeated_composite_set_wrong_key_type():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz(foos=[])
with pytest.raises(TypeError):
baz.foos[None] = Foo(bar=55)
def test_repeated_composite_set_wrong_value_type():
class Foo(proto.Message):
bar = proto.Field(proto.INT32, number=1)
class NotFoo(proto.Message):
eggs = proto.Field(proto.INT32, number=1)
class Baz(proto.Message):
foos = proto.RepeatedField(proto.MESSAGE, message=Foo, number=1)
baz = Baz()
with pytest.raises(TypeError):
baz.foos.append(NotFoo(eggs=42))
|