Socket
Socket
Sign inDemoInstall

grpc-robot

Package Overview
Dependencies
8
Maintainers
2
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grpc-robot

Package for sending/recieving messages to/from a gRPC server.


Maintainers
2

Readme

Robot gRPC package

This package allows sending/receiving messages in a gRPC event stream.

Supported devices

This gRPC ROBOT library is intended to support different Protocol Buffer definitions. Precondition is that python files generated from Protocol Buffer files are available in a pip package which must be installed before the library is used.

Supported devicePip packagePip package versionLibrary Name
dmidevice-management-interface0.9.1grpc_robot.Dmi
0.9.2grpc_robot.Dmi
0.9.3grpc_robot.Dmi
0.9.4grpc_robot.Dmi
0.9.5grpc_robot.Dmi
0.9.6grpc_robot.Dmi
0.9.8grpc_robot.Dmi
0.9.9grpc_robot.Dmi
0.10.1grpc_robot.Dmi
0.10.2grpc_robot.Dmi
0.12.0grpc_robot.Dmi
1.0.0grpc_robot.Dmi
1.2.1grpc_robot.Dmi
1.4.0grpc_robot.Dmi
1.13.0grpc_robot.Dmi
1.13.1grpc_robot.Dmi
1.16.0grpc_robot.Dmi
volthavoltha-protos4.0.13grpc_robot.Voltha
4.2.0grpc_robot.Voltha

Tools

The package also offers some keywords for convenience to work with Robot Framework.

List of keywords:

The list of keywords may can be extended by request if required.

Installation

pip install robot-grpc

How to use robot-grpc in Robot Framework

The library has a named parameter version to indicate the ProtoBuf file set to be used.

Import Library    grpc_robot.Dmi
Import Library    grpc_robot.Voltha
Import Library    grpc_robot.Collections
Import Library    grpc_robot.DmiTools
Import Library    grpc_robot.VolthaTools

How to update the grpc-robot to support newer DMI versions (e.g. 1.4.0)

  1. Create a new version folder “dmi_1_4_0” in “/grpc-robot/grpc_robot/services/dmi”
  2. Place an init.py and a dmi.json file in this folder:
    • In most cases the init.py file can be copied from the last dmi version's folder and updated to the dmi version from which the new version shall derive.
    • The dmi.json file must be created. Please check chapter "How to create the dmi.json file"
  3. If the new DMI version introduces new RPCs or the types of the parameter and/or the return have been changed for some RPC the according keyword files from the last DMI version must be edited and placed into the new folder. It is not neccessary to update the keyword files if the content of the RPC have changed. For each RPC which shall be supported by the grpc-robot a keyword must be defined in the files.
  4. Update the README.md file with the new version.
  5. Update the documentation string of class GrpcDmiRobot in file "/grpc-robot/grpc_robot/dmi_robot.py" and/or "/grpc-robot/grpc_robot/voltha_robot.py".
  6. Update the tests if required.
  7. Update the VERSION file for the library version.
  8. Create the new package and upload it to pypi.org
    • cd /robot-grpc
    • rm dist/*; python3 setup.py sdist bdist_wheel
    • PYTHONPATH=/robot-grpc source MAKEDOC
    • rm dist/*; python3 setup.py sdist bdist_wheel
    • pip uninstall -y grpc-robot; pip install dist/*.tar.gz
    • twine upload dist/*

How to create the dmi.json file

The json file is the conversion of the ProtoBuf files content into json format which is used by the library.

  1. Clone or update the repository https://github.com/opencord/device-management-interface.git. Make sure the VERSION file shows the desired DMI version. If not checkout the version of interest.

  2. In the command line interface run the command:

    • grpc_robot.protop -i -o dmi

    e.g. grpc_robot.protop -i ~/repositories/device-management-interface/protos/dmi -o /robot-grpc/grpc_robot/services/ dmi 1.4.0

NOTE: If an error "parsy.ParseError: expected one of ..." occurs: most-likely it is a block-comment (/* ... */) in the *.proto file. Simply remove that block-comment and retry.

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc