seperate the tests
This commit is contained in:
parent
5dc3587ccb
commit
d86cd5b72e
8
main.py
8
main.py
|
@ -41,14 +41,6 @@ def on_message(client, userdata, msg):
|
|||
res.ParseFromString(bcode)
|
||||
store_coord(payload['dev_id'], res.loc.x, res.loc.y)
|
||||
|
||||
# Test protobuf here
|
||||
# code = bytearray('CgoNAAAAABUAAAAA', "utf-8")
|
||||
# print(code)
|
||||
# bcode = base64.b64decode(code)
|
||||
# res = message_pb2.CollarResponse()
|
||||
# res.ParseFromString(bcode)
|
||||
# print("Coord {x: " + str(res.loc.x) + ", y: " + str(res.loc.y) + "}")
|
||||
|
||||
client = mqtt.Client()
|
||||
client.on_connect = on_connect
|
||||
client.on_message = on_message
|
||||
|
|
16
tests.py
Normal file
16
tests.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
import paho.mqtt.client as mqtt
|
||||
import json
|
||||
import base64
|
||||
import message_pb2
|
||||
import sqlite3
|
||||
|
||||
# Test protobuf here
|
||||
code = bytearray('CgoNAAAAABUAAAAA', "utf-8")
|
||||
print(code)
|
||||
bcode = base64.b64decode(code)
|
||||
res = message_pb2.CollarResponse()
|
||||
res.ParseFromString(bcode)
|
||||
|
||||
assert res.loc.x == 0
|
||||
assert res.loc.y == 0
|
||||
print("Coord {x: " + str(res.loc.x) + ", y: " + str(res.loc.y) + "}")
|
Loading…
Reference in New Issue
Block a user