From: Bartosz Golaszewski Date: Wed, 18 Dec 2019 13:26:33 +0000 (+0100) Subject: bindings: python: tests: add a test-case for reading multiple line events X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ec20df2a7662ea73771cab00a614d4c535671f0f;p=qemu-gpiodev%2Flibgpiod.git bindings: python: tests: add a test-case for reading multiple line events Extend the test coverage of Python bindings with tests of reading of multiple line events at once. Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/python/tests/gpiod_py_test.py b/bindings/python/tests/gpiod_py_test.py index 53d99d8..572aad8 100755 --- a/bindings/python/tests/gpiod_py_test.py +++ b/bindings/python/tests/gpiod_py_test.py @@ -12,6 +12,7 @@ import gpiod import gpiomockup import os import select +import time import threading import unittest @@ -833,6 +834,27 @@ class EventSingleLine(MockupTestCase): self.assertEqual(event.type, gpiod.LineEvent.RISING_EDGE) self.assertEqual(event.source.offset(), 4) + def test_single_line_read_multiple_events(self): + with gpiod.Chip(mockup.chip_name(0)) as chip: + line = chip.get_line(4) + line.request(consumer=default_consumer, + type=gpiod.LINE_REQ_EV_BOTH_EDGES) + mockup.chip_set_pull(0, 4, 1) + time.sleep(0.01) + mockup.chip_set_pull(0, 4, 0) + time.sleep(0.01) + mockup.chip_set_pull(0, 4, 1) + time.sleep(0.01) + self.assertTrue(line.event_wait(sec=1)) + events = line.event_read_multiple() + self.assertEqual(len(events), 3) + self.assertEqual(events[0].type, gpiod.LineEvent.RISING_EDGE) + self.assertEqual(events[1].type, gpiod.LineEvent.FALLING_EDGE) + self.assertEqual(events[2].type, gpiod.LineEvent.RISING_EDGE) + self.assertEqual(events[0].source.offset(), 4) + self.assertEqual(events[1].source.offset(), 4) + self.assertEqual(events[2].source.offset(), 4) + class EventBulk(MockupTestCase): chip_sizes = ( 8, )