bindings: python: add a test case for line_event's __repr__
authorBartosz Golaszewski <bartekgola@gmail.com>
Wed, 6 Jun 2018 10:49:00 +0000 (12:49 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Thu, 7 Jun 2018 07:25:48 +0000 (09:25 +0200)
Check if an event's representation string is generated correctly.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/examples/gpiod_tests.py

index 91ea9612bdf98d87aab848aef61e0b0057869a44..36c13b65d208f09a40cb15f870d2437d61fb7dad 100755 (executable)
@@ -357,6 +357,21 @@ def line_event_poll_fd():
 
 add_test('Monitor multiple lines using their file descriptors', line_event_poll_fd)
 
+def line_event_repr():
+    with gpiod.Chip('gpiochip0') as chip:
+        line = chip.get_line(1)
+
+        print('requesting line for events')
+        line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_EV_BOTH_EDGES)
+
+        print('generating a line event')
+        fire_line_event('gpiochip0', 1, True)
+        assert line.event_wait(sec=1), 'Expected a line event to occur'
+
+        print('event received: {}'.format(line.event_read()))
+
+add_test('Line event string repr', line_event_repr)
+
 print('API version is {}'.format(gpiod.version_string()))
 
 for name, func in test_cases: