mirror of
https://github.com/undera/pylgbst.git
synced 2020-11-18 19:37:26 -08:00
* Cosmetics * Harmonograph demo * Cleanup * Original * Original * Cosmetics * Original file * Fixes * cosmetics * separate classes * Cosmetics * Cosmetics * fix tests * Remove plotter tests * Add bluegiga * Rename it * Progress * Fix tests * Cosmetics * Found a way for pygatt! * Playing with gatt * Fix hung subscribe * rename class * add test * skeleton for autodetect * safer order * Fix tests * Fix test * Add dbus install * another try * 2 * 3 * 34 * 6 * 7 * Isolate some tests * 8 * back to roots * Try more * 9 * Help * rep * site-packs * Fix? * Py3 come on * dbus * busss * dev null! * Fix test * Cleanup * Fix tests * Fix after review * add package * FIx package paths * Cosmetics * Update * More doc
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
import sys
|
|
import unittest
|
|
|
|
import dbus
|
|
from gatt import DeviceManager
|
|
|
|
from pylgbst.comms_gatt import CustomDevice
|
|
from tests import log, str2hex
|
|
|
|
|
|
class MockBus(object):
|
|
def __init__(self, *args, **kwargs):
|
|
# super(MockBus, self).__init__(*args, **kwargs)
|
|
pass
|
|
|
|
def get_object(self, bus_name, object_path, introspect=True, follow_name_owner_changes=False, **kwargs):
|
|
return None
|
|
|
|
|
|
dbus.SystemBus = lambda: MockBus()
|
|
|
|
|
|
class DeviceManagerMock(DeviceManager, object):
|
|
def update_devices(self):
|
|
pass
|
|
|
|
|
|
class TestGatt(unittest.TestCase):
|
|
def test_one(self):
|
|
log.debug("")
|
|
manager = DeviceManagerMock("hci0")
|
|
obj = CustomDevice("AA", manager)
|
|
|
|
def callback(handle, value):
|
|
log.debug("%s: %s", type(value), str2hex(value))
|
|
if sys.version_info[0] == 2:
|
|
self.assertEquals("0f0004020126000000001000000010", str2hex(value))
|
|
|
|
obj.set_notific_handler(callback)
|
|
arr = "dbus.Array([dbus.Byte(15), dbus.Byte(0), dbus.Byte(4), dbus.Byte(2), dbus.Byte(1), dbus.Byte(38), " \
|
|
"dbus.Byte(0), dbus.Byte(0), dbus.Byte(0), dbus.Byte(0), dbus.Byte(16), dbus.Byte(0), dbus.Byte(0), " \
|
|
"dbus.Byte(0), dbus.Byte(16)], signature=dbus.Signature('y'), variant_level=1)"
|
|
obj.characteristic_value_updated(None, arr if sys.version_info[0] == 2 else bytes(arr, 'ascii'))
|