-
Notifications
You must be signed in to change notification settings - Fork 15.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nextgen Proto Pythonic API: Add any.py
PiperOrigin-RevId: 664995003
- Loading branch information
1 parent
ebd9838
commit dd95e5b
Showing
2 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Protocol Buffers - Google's data interchange format | ||
# Copyright 2008 Google Inc. All rights reserved. | ||
# | ||
# Use of this source code is governed by a BSD-style | ||
# license that can be found in the LICENSE file or at | ||
# https://developers.google.com/open-source/licenses/bsd | ||
|
||
"""Contains the Any helper APIs.""" | ||
|
||
from typing import Optional | ||
|
||
from google.protobuf import descriptor | ||
from google.protobuf.message import Message | ||
|
||
from google.protobuf.any_pb2 import Any | ||
|
||
|
||
def pack( | ||
msg: Message, | ||
type_url_prefix: Optional[str] = 'type.googleapis.com/', | ||
deterministic: Optional[bool] = None, | ||
) -> Any: | ||
any_msg = Any() | ||
any_msg.Pack( | ||
msg=msg, type_url_prefix=type_url_prefix, deterministic=deterministic | ||
) | ||
return any_msg | ||
|
||
|
||
def unpack(any_msg: Any, msg: Message) -> bool: | ||
return any_msg.Unpack(msg=msg) | ||
|
||
|
||
def type_name(any_msg: Any) -> str: | ||
return any_msg.TypeName() | ||
|
||
|
||
def is_type(any_msg: Any, des: descriptor.Descriptor) -> bool: | ||
return any_msg.Is(des) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# -*- coding: utf-8 -*- | ||
# Protocol Buffers - Google's data interchange format | ||
# Copyright 2008 Google Inc. All rights reserved. | ||
# | ||
# Use of this source code is governed by a BSD-style | ||
# license that can be found in the LICENSE file or at | ||
# https://developers.google.com/open-source/licenses/bsd | ||
|
||
"""Tests proto Any APIs.""" | ||
|
||
import unittest | ||
|
||
from google.protobuf import any | ||
|
||
from google.protobuf import any_pb2 | ||
from google.protobuf import unittest_pb2 | ||
|
||
|
||
class AnyTest(unittest.TestCase): | ||
|
||
def test_pack_unpack(self): | ||
all_types = unittest_pb2.TestAllTypes() | ||
any_msg = any.pack(all_types) | ||
all_descriptor = all_types.DESCRIPTOR | ||
self.assertEqual( | ||
any_msg.type_url, 'type.googleapis.com/%s' % all_descriptor.full_name | ||
) | ||
unpacked_message = unittest_pb2.TestAllTypes() | ||
self.assertTrue(any.unpack(any_msg, unpacked_message)) | ||
|
||
def test_type_name(self): | ||
all_types = unittest_pb2.TestAllTypes() | ||
any_msg = any.pack(all_types) | ||
self.assertEqual(any.type_name(any_msg), 'protobuf_unittest.TestAllTypes') | ||
|
||
def test_is_type(self): | ||
all_types = unittest_pb2.TestAllTypes() | ||
any_msg = any.pack(all_types) | ||
all_descriptor = all_types.DESCRIPTOR | ||
self.assertTrue(any.is_type(any_msg, all_descriptor)) | ||
|
||
empty_any = any_pb2.Any() | ||
self.assertFalse(any.is_type(empty_any, all_descriptor)) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |