diff options
author | DR695H <dr695h@att.com> | 2019-07-17 18:50:55 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-07-18 17:15:03 -0400 |
commit | eb594307f4350b686263cae2355dcbb910ec9403 (patch) | |
tree | e93b6db4b50e3e28f8f73138a6e5e1dff65a4c68 /robotframework-onap/ONAPLibrary/VESProtobuf.py | |
parent | 217b2cc0a54142e9e746b01c2d10e09554511c87 (diff) |
cleanup how message factory is used
apparantly if you use binary protobuf you cant recall the same instance
variable
Issue-ID: TEST-175
Change-Id: I413c04dec5f94363a54d5e9e00e135d95620abd3
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/VESProtobuf.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/VESProtobuf.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/robotframework-onap/ONAPLibrary/VESProtobuf.py b/robotframework-onap/ONAPLibrary/VESProtobuf.py index d747a0d..b5a36bc 100644 --- a/robotframework-onap/ONAPLibrary/VESProtobuf.py +++ b/robotframework-onap/ONAPLibrary/VESProtobuf.py @@ -27,6 +27,7 @@ class VESProtobuf(object): def __init__(self): super(VESProtobuf, self).__init__() + self.message_descriptors = VESProtobuf.get_message_definitions() @staticmethod def create_ves_event(): @@ -109,12 +110,12 @@ class VESProtobuf(object): @staticmethod def get_message_definitions(): - return message_factory.GetMessages((VESProtobuf.create_ves_event(),)) + messages = message_factory.GetMessages((VESProtobuf.create_ves_event(),)) + message_factory._FACTORY = message_factory.MessageFactory() + return messages - @staticmethod - def binary_to_json(binary_message): - defs = VESProtobuf.get_message_definitions() - ves = defs['VesEvent']() + def binary_to_json(self, binary_message): + ves = self.message_descriptors['VesEvent']() ves.MergeFromString(binary_message) json = MessageToJson(ves) return json |