bindings: python: fix gpiod_Chip_find_lines() for nonexistent lines
authorBartosz Golaszewski <bartekgola@gmail.com>
Mon, 30 Jul 2018 13:05:53 +0000 (15:05 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Tue, 31 Jul 2018 12:30:46 +0000 (14:30 +0200)
Currently if we call gpiod_Chip_find_lines() with some names that
cannot be looked up, we end up getting an exception from the LineBulk
object's constructor (because None is not a Line and LineBulk can only
hold Line objects).

Fix the behavior of gpiod_Chip_find_lines() for nonexistent lines by
raising an explicit exception if the underlying gpiod_Chip_find_line()
call returns None. Also: add a relevant test case.

Fixes: 96c524c4951c ("bindings: implement python bindings")
Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/examples/gpiod_tests.py
bindings/python/gpiodmodule.c

index 6a30a4c9415a2f23bd4f3f8c365e099335c54167..910613a71f3f8d7b9b2c15dcf8dc7bd287433d10 100755 (executable)
@@ -215,6 +215,20 @@ def find_lines():
 
 add_test('Find multiple lines by name', find_lines)
 
+def find_lines_one_bad():
+    chip = gpiod.Chip('gpiochip0')
+
+    print('looking up lines by names')
+    try:
+        lines = chip.find_lines(['gpio-mockup-A-3', 'nonexistent', 'gpio-mockup-A-7'])
+    except TypeError as ex:
+        print('Error as expected')
+        return
+
+    assert False, 'TypeError expected'
+
+add_test('Find multiple lines but one line name is non-existent', find_lines_one_bad)
+
 def create_line_bulk_from_lines():
     chip = gpiod.Chip('gpio-mockup-A')
     line1 = chip.get_line(2)
index 3978490d2b6d28d6ed802b39da53a76058b7678f..a6092e3ba92cd08f8107c0086f981eeba2b5024e 100644 (file)
@@ -1646,9 +1646,12 @@ gpiod_Chip_find_lines(gpiod_ChipObject *self, PyObject *args)
 
                line = gpiod_Chip_find_line(self, arg);
                Py_DECREF(arg);
-               if (!line) {
+               if (!line || (PyObject *)line == Py_None) {
                        Py_DECREF(iter);
                        Py_DECREF(lines);
+                       if ((PyObject *)line == Py_None)
+                               PyErr_SetString(PyExc_TypeError,
+                                               "Unable to find all lines from the list");
                        return NULL;
                }