Metadata-Version: 2.1
Name: robot-kafka-library
Version: 0.0.4
Summary: robotframework exetension lib for test kafka
Home-page: https://github.com/tarathep/robot-kafka-library
Author: tarathep
Author-email: bokie.tarathep@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: kafka-python

# robot-kafka-library
### robot framework extension test kafka message queue system

https://pypi.org/project/robot-kafka-library/

## How to Use
> pip install robot-kafka-library

Import into project file : example.robot

```
Library    RobotKafkaLibrary.Producer
Library    RobotKafkaLibrary.Consumer

*** Test Cases ***
Test producer topic test publish message1
    ${RESULT} =     Publish  {broker-ip}:{port}   {topic}   {message}
    log    ${RESULT}
    Log to console   ${RESULT}

Test consumer topic test subscribe message1
    ${MSG} =     Subscribe  {broker-ip}:{port}   {topic}   {option-timeout}
    log    ${MSG}
    Log to console   ${MSG}
 ```

## Example Result
 ![alt text](https://raw.githubusercontent.com/tarathep/robot-kafka-library/master/capture.jpg)



