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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
|
# --------------------------------------------------------------------------
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the ""Software""), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
# --------------------------------------------------------------------------
import functools
from typing import Type
import pytest
import uuid
import json
from io import BytesIO
import pytest
import avro
from avro.errors import AvroTypeException
from azure.schemaregistry.aio import SchemaRegistryClient
from azure.schemaregistry.encoder.avroencoder.aio import AvroEncoder
from azure.schemaregistry.encoder.avroencoder import InvalidSchemaError, InvalidContentError
from devtools_testutils import AzureRecordedTestCase, EnvironmentVariableLoader
from devtools_testutils.aio import recorded_by_proxy_async
SchemaRegistryEnvironmentVariableLoader = functools.partial(
EnvironmentVariableLoader,
"schemaregistry",
schemaregistry_avro_fully_qualified_namespace="fake_resource_avro.servicebus.windows.net",
schemaregistry_group="fakegroup"
)
class TestAvroEncoderAsync(AzureRecordedTestCase):
def create_client(self, **kwargs):
fully_qualified_namespace = kwargs.pop("fully_qualified_namespace")
credential = self.get_credential(SchemaRegistryClient, is_async=True)
return self.create_client_from_credential(SchemaRegistryClient, credential, fully_qualified_namespace=fully_qualified_namespace, is_async=True)
@pytest.mark.asyncio
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_basic_sr_avro_encoder_with_auto_register_schemas(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
async with sr_client:
schema_str = """{"namespace":"example.avro","type":"record","name":"User","fields":[{"name":"name","type":"string"},{"name":"favorite_number","type":["int","null"]},{"name":"favorite_color","type":["string","null"]}]}"""
schema_str = "{\"type\": \"record\", \"name\": \"User\", \"namespace\": \"example.avro\", \"fields\": [{\"type\": \"string\", \"name\": \"name\"}, {\"type\": [\"int\", \"null\"], \"name\": \"favorite_number\"}, {\"type\": [\"string\", \"null\"], \"name\": \"favorite_color\"}]}"
schema = avro.schema.parse(schema_str)
dict_content = {"name": u"Ben", "favorite_number": 7, "favorite_color": u"red"}
encoded_message_content = await sr_avro_encoder.encode(dict_content, schema=schema_str)
content_type = encoded_message_content["content_type"]
encoded_content = encoded_message_content["content"]
# wrong data type
dict_content_bad = {"name": u"Ben", "favorite_number": 7, "favorite_color": 7}
with pytest.raises(InvalidContentError) as e:
encoded_message_content = await sr_avro_encoder.encode(dict_content_bad, schema=schema_str)
assert "schema_id" in e.value.details
assert content_type.split("+")[0] == 'avro/binary'
schema_properties = await sr_client.get_schema_properties(schemaregistry_group, schema.fullname, str(schema), "Avro")
schema_id = schema_properties.id
assert content_type.split("+")[1] == schema_id
encoded_content_dict = {"content": encoded_content, "content_type": content_type}
decoded_content = await sr_avro_encoder.decode(encoded_content_dict)
assert decoded_content["name"] == u"Ben"
assert decoded_content["favorite_number"] == 7
assert decoded_content["favorite_color"] == u"red"
# bad content type
mime_type, schema_id = encoded_content_dict["content_type"].split("+")
encoded_content_dict["content_type"] = "binary/fake+" + schema_id
with pytest.raises(InvalidContentError) as e:
decoded_content = await sr_avro_encoder.decode(encoded_content_dict)
encoded_content_dict["content_type"] = 'a+b+c'
with pytest.raises(InvalidContentError) as e:
decoded_content = await sr_avro_encoder.decode(encoded_content_dict)
# check that AvroEncoder won't work with message types that don't follow protocols
class BadExample:
def __init__(self, not_content):
self.not_content = not_content
with pytest.raises(TypeError) as e:
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_str, message_type=BadExample)
assert "subtype of the MessageType" in (str(e.value))
bad_ex = BadExample('fake')
with pytest.raises(TypeError) as e:
await sr_avro_encoder.decode(message=bad_ex)
assert "subtype of the MessageType" in (str(e.value))
# check that AvroEncoder will work with message types that follow protocols
class GoodExample:
def __init__(self, content, **kwargs):
self.content = content
self.content_type = None
self.extra = kwargs.pop('extra', None)
@classmethod
def from_message_content(cls, content: bytes, content_type: str, **kwargs):
ge = cls(content)
ge.content_type = content_type
return ge
def __message_content__(self):
return {"content": self.content, "content_type": self.content_type}
good_ex_obj = await sr_avro_encoder.encode(dict_content, schema=schema_str, message_type=GoodExample, extra='val')
decoded_content_obj = await sr_avro_encoder.decode(message=good_ex_obj)
assert decoded_content_obj["name"] == u"Ben"
assert decoded_content_obj["favorite_number"] == 7
assert decoded_content_obj["favorite_color"] == u"red"
# no group_name passed into constructor, check encode fails, but decode works
extra_sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder_no_group = AvroEncoder(client=extra_sr_client, auto_register=True)
decoded_content = await sr_avro_encoder_no_group.decode(encoded_message_content)
assert decoded_content["name"] == u"Ben"
assert decoded_content["favorite_number"] == 7
assert decoded_content["favorite_color"] == u"red"
with pytest.raises(TypeError):
encoded_message_content = await sr_avro_encoder_no_group.encode(dict_content, schema=schema_str)
await sr_avro_encoder_no_group.close()
await extra_sr_client.close()
@pytest.mark.asyncio
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_basic_sr_avro_encoder_without_auto_register_schemas(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
async with sr_client:
schema_str = """{"namespace":"example.avro","type":"record","name":"User","fields":[{"name":"name","type":"string"},{"name":"favorite_number","type":["int","null"]},{"name":"favorite_color","type":["string","null"]}]}"""
schema_str = "{\"type\": \"record\", \"name\": \"User\", \"namespace\": \"example.avro\", \"fields\": [{\"type\": \"string\", \"name\": \"name\"}, {\"type\": [\"int\", \"null\"], \"name\": \"favorite_number\"}, {\"type\": [\"string\", \"null\"], \"name\": \"favorite_color\"}]}"
schema = avro.schema.parse(schema_str)
dict_content = {"name": u"Ben", "favorite_number": 7, "favorite_color": u"red"}
encoded_message_content = await sr_avro_encoder.encode(dict_content, schema=schema_str)
content_type = encoded_message_content["content_type"]
encoded_content = encoded_message_content["content"]
assert content_type.split("+")[0] == 'avro/binary'
schema_properties = await sr_client.get_schema_properties(schemaregistry_group, schema.fullname, str(schema), "Avro")
schema_id = schema_properties.id
assert content_type.split("+")[1] == schema_id
encoded_content_dict = {"content": encoded_content, "content_type": content_type}
decoded_content = await sr_avro_encoder.decode(encoded_content_dict)
assert decoded_content["name"] == u"Ben"
assert decoded_content["favorite_number"] == 7
assert decoded_content["favorite_color"] == u"red"
@pytest.mark.asyncio
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_basic_sr_avro_encoder_decode_readers_schema(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
schema_str = """{"namespace":"example.avro","type":"record","name":"User","fields":[{"name":"name","type":"string"},{"name":"favorite_number","type":["int","null"]},{"name":"favorite_color","type":["string","null"]}]}"""
dict_content = {"name": u"Ben", "favorite_number": 7, "favorite_color": u"red"}
encoded_message_content = await sr_avro_encoder.encode(dict_content, schema=schema_str)
content_type = encoded_message_content["content_type"]
encoded_content = encoded_message_content["content"]
# readers_schema with removed field
readers_schema_remove_field = """{"namespace":"example.avro","type":"record","name":"User","fields":[{"name":"name","type":"string"},{"name":"favorite_number","type":["int","null"]}]}"""
encoded_content_dict = {"content": encoded_content, "content_type": content_type}
decoded_content = await sr_avro_encoder.decode(encoded_content_dict, readers_schema=readers_schema_remove_field)
assert decoded_content["name"] == u"Ben"
assert decoded_content["favorite_number"] == 7
# readers_schema with extra field with default
readers_schema_extra_field = """{"namespace":"example.avro","type":"record","name":"User","fields":[{"name":"name","type":"string"},{"name":"favorite_number","type":["int","null"]},{"name":"favorite_color","type":["string","null"]}, {"name":"favorite_city","type":["string","null"], "default": "Redmond"}]}"""
encoded_content_dict = {"content": encoded_content, "content_type": content_type}
decoded_content = await sr_avro_encoder.decode(encoded_content_dict, readers_schema=readers_schema_extra_field)
assert decoded_content["name"] == u"Ben"
assert decoded_content["favorite_number"] == 7
assert decoded_content["favorite_color"] == "red"
assert decoded_content["favorite_city"] == "Redmond"
# readers_schema with changed name results in error
readers_schema_change_name = """{"namespace":"fakeexample.avro","type":"record","name":"fake_user","fields":[{"name":"name","type":"string"},{"name":"favorite_number","type":["int","null"]},{"name":"favorite_color","type":["string","null"]}]}"""
with pytest.raises(InvalidSchemaError) as e:
decoded_content = await sr_avro_encoder.decode(encoded_content_dict, readers_schema=readers_schema_change_name)
assert "Incompatible schemas" in e.value.message
assert "schema_id" in e.value.details
assert "schema_definition" in e.value.details
# invalid readers_schema
invalid_schema = {
"name":"User",
"type":"record",
"namespace":"example.avro",
"fields":[{"name":"name","type":"string"}]
}
invalid_schema_string = "{}".format(invalid_schema)
with pytest.raises(InvalidSchemaError) as e:
decoded_content = await sr_avro_encoder.decode(encoded_content_dict, readers_schema=invalid_schema_string)
assert "Invalid schema" in e.value.message
assert "schema_id" in e.value.details
assert "schema_definition" in e.value.details
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_basic_sr_avro_encoder_with_request_options(self, **kwargs):
schemaregistry_avro_fully_qualified_namespace = kwargs.pop("schemaregistry_avro_fully_qualified_namespace")
schemaregistry_group = kwargs.pop("schemaregistry_group")
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
schema_str = """{"namespace":"example.avro","type":"record","name":"User","fields":[{"name":"name","type":"string"},{"name":"favorite_number","type":["int","null"]},{"name":"favorite_color","type":["string","null"]}]}"""
dict_content = {"name": u"Ben", "favorite_number": 7, "favorite_color": u"red"}
# if fake kwargs/incorrectly formatted request keyword passed in, should raise TypeError
with pytest.raises(TypeError) as e:
encoded_message_content = await sr_avro_encoder.encode(dict_content, schema=schema_str, request_options={"fake_kwarg": True, "files": (False)})
encoded_message_content = await sr_avro_encoder.encode(dict_content, schema=schema_str)
content_type = encoded_message_content["content_type"]
encoded_content = encoded_message_content["content"]
encoded_content_dict = {"content": encoded_content, "content_type": content_type}
with pytest.raises(TypeError) as e:
decoded_content = await sr_avro_encoder.decode(encoded_content_dict, request_options={"fake_kwarg": True, "files": (False)})
#################################################################
######################### PARSE SCHEMAS #########################
#################################################################
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_parse_invalid_json_string(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
invalid_schema = {
"name":"User",
"type":"record",
"namespace":"example.avro",
"fields":[{"name":"name","type":"string"}]
}
invalid_schema_string = "{}".format(invalid_schema)
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=invalid_schema_string)
######################### PRIMITIVES #########################
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_parse_primitive_types(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
primitive_string = "string"
with pytest.raises(InvalidSchemaError) as e:
await sr_avro_encoder.encode("hello", schema=primitive_string)
######################### type fixed #########################
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_parse_fixed_types(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
# avro bug: should give warning from IgnoredLogicalType error since precision < 0
#fixed_type_ignore_logical_type_error = """{"type": "fixed", "size": 4, "namespace":"example.avro", "name":"User", "precision": -1}"""
#await sr_avro_encoder.encode({}, schema=fixed_type_ignore_logical_type_error)
schema_no_size = """{"type": "fixed", "name":"User"}"""
with pytest.raises(InvalidSchemaError): # caught AvroException
await sr_avro_encoder.encode({}, schema=schema_no_size)
schema_no_name = """{"type": "fixed", "size": 3}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({}, schema=schema_no_name)
schema_wrong_name = """{"type": "fixed", "name": 1, "size": 3}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({}, schema=schema_wrong_name)
schema_wrong_namespace = """{"type": "fixed", "name": "User", "size": 3, "namespace": 1}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({}, schema=schema_wrong_namespace)
######################### type unspecified #########################
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_parse_invalid_type(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
schema_no_type = """{
"name": "User",
"namespace":"example.avro",
"fields":[{"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_no_type)
schema_wrong_type_type = """{
"name":"User",
"type":1,
"namespace":"example.avro",
"fields":[{"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_wrong_type_type)
######################### RECORD SCHEMA #########################
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_parse_record_name(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
schema_name_has_dot = """{
"namespace": "thrownaway",
"name":"User.avro",
"type":"record",
"fields":[{"name":"name","type":"string"}]
}"""
encoded_schema = await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_name_has_dot)
schema_id = encoded_schema["content_type"].split("+")[1]
registered_schema = await sr_client.get_schema(schema_id)
decoded_registered_schema = json.loads(registered_schema.definition)
assert decoded_registered_schema["name"] == "User.avro"
assert decoded_registered_schema["namespace"] == "thrownaway"
schema_name_no_namespace = """{
"name":"User",
"type":"record",
"fields":[{"name":"name","type":"string"}]
}"""
encoded_schema = await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_name_no_namespace)
schema_id = encoded_schema["content_type"].split("+")[1]
registered_schema = await sr_client.get_schema(schema_id)
decoded_registered_schema = json.loads(registered_schema.definition)
assert decoded_registered_schema["name"] == "User"
assert "namespace" not in decoded_registered_schema
schema_invalid_fullname = """{
"name":"abc",
"type":"record",
"namespace":"9example.avro",
"fields":[{"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_invalid_fullname)
schema_invalid_name_in_fullname = """{
"name":"1abc",
"type":"record",
"fields":[{"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_invalid_name_in_fullname)
schema_invalid_name_reserved_type = """{
"name":"long",
"type":"record",
"fields":[{"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_invalid_name_reserved_type)
schema_wrong_type_name = """{
"name":1,
"type":"record",
"namespace":"example.avro",
"fields":[{"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_wrong_type_name)
schema_no_name = """{
"namespace":"example.avro",
"type":"record",
"fields":[{"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_no_name)
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_parse_error_schema_as_record(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
schema_error_type = """{
"name":"User",
"namespace":"example.avro.error",
"type":"error",
"fields":[{"name":"name","type":"string"}]
}"""
encoded_message_content = await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_error_type)
schema_id = encoded_message_content["content_type"].split("+")[1]
registered_schema = await sr_client.get_schema(schema_id)
decoded_registered_schema = json.loads(registered_schema.definition)
assert decoded_registered_schema["type"] == "error"
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_parse_record_fields(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
schema_no_fields = """{
"name":"User",
"namespace":"example.avro",
"type":"record"
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_no_fields)
schema_wrong_type_fields = """{
"name":"User",
"namespace":"example.avro",
"type":"record"
"fields": "hello"
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_wrong_type_fields)
schema_wrong_field_item_type = """{
"name":"User",
"namespace":"example.avro",
"type":"record"
"fields": ["hello"]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_wrong_field_item_type)
schema_record_field_no_name= """{
"name":"User",
"namespace":"example.avro",
"type":"record",
"fields":[{"type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_record_field_no_name)
schema_record_field_wrong_type_name= """{
"name":"User",
"namespace":"example.avro",
"type":"record",
"fields":[{"name": 1, "type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_record_field_wrong_type_name)
schema_record_field_with_invalid_order = """{
"name":"User",
"namespace":"example.avro.order",
"type":"record",
"fields":[{"name":"name","type":"string","order":"fake_order"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_record_field_with_invalid_order)
schema_record_duplicate_fields = """{
"name":"User",
"namespace":"example.avro",
"type":"record",
"fields":[{"name":"name","type":"string"}, {"name":"name","type":"string"}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_record_duplicate_fields)
schema_field_type_invalid = """{
"name":"User",
"namespace":"example.avro",
"type":"record",
"fields":[{"name":"name","type":1}]
}"""
with pytest.raises(InvalidSchemaError):
await sr_avro_encoder.encode({"name": u"Ben"}, schema=schema_field_type_invalid)
#################################################################
#################### ENCODE AND DECODE ##########################
#################################################################
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_encode_primitive(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
null_type = """{"type": "null"}"""
encoded_message_content = await sr_avro_encoder.encode(None, schema=null_type)
assert len(encoded_message_content["content"]) == 0 # assert no content encoded
@SchemaRegistryEnvironmentVariableLoader()
@recorded_by_proxy_async
async def test_encode_record(self, schemaregistry_avro_fully_qualified_namespace, schemaregistry_group, **kwargs):
sr_client = self.create_client(fully_qualified_namespace=schemaregistry_avro_fully_qualified_namespace)
sr_avro_encoder = AvroEncoder(client=sr_client, group_name=schemaregistry_group, auto_register=True)
# add below to schema later if possible
# {"name":"example.innerrec","type":"record","fields":[{"name":"a","type":"int"}]},
# {"name":"innerenum","type":"enum","symbols":["FOO", "BAR"]},
# {"name":"innerarray","type":"array","items":"int"},
# {"name":"innermap","type":"map","values":"int"},
# {"name":"innerfixed","type":"fixed","size":74}
schema_record = """{
"name":"User",
"namespace":"example.avro.populatedrecord",
"type":"record",
"fields":[
{"name":"name","type":"string"},
{"name":"age","type":"int"},
{"name":"married","type":"boolean"},
{"name":"height","type":"float"},
{"name":"randb","type":"bytes"}
]
}"""
content = {
"name": u"Ben",
"age": 3,
"married": False,
"height": 13.5,
"randb": b"\u00FF"
}
encoded_message_content = await sr_avro_encoder.encode(content, schema=schema_record)
decoded_content = await sr_avro_encoder.decode(encoded_message_content)
assert decoded_content == content
|