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)
commitcdf5ef94c454b8ebab432cc9172250379545ec8a
treedd780a5d8956f316372f338f36842cf1b0148519
parente9e56da405aa099d6868f68bdec576f857ff89d6
bindings: python: fix gpiod_Chip_find_lines() for nonexistent lines

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