I've inherited some python code that writes a new '/etc/udev/rules.d' mapping file and then makes a subprocess call to udev to have it refresh its devices list:
call(['/sbin/udevadm', 'trigger', '--action=change'])
The trigger call is necessary as we need the mapping to update without wanting to unplug and plug back in the device being mapped. My problem is the 'call' line was removed at one point, causing non-obvious side-effects in other parts of the program and so was not caught.
My usual way of fixing something like this is to throw a unit-test on this method (which writes the mapping file and calls trigger) to enforce the expected behaviour, but this behaviour seems outside of the realm of unit-testing. It's a system call, not to mention udevadm trigger requires sudo access. I can't figure out how/what to mock out in this instance.
I considered using the pyudev library as I saw that it can mock certain behaviour of udev, but it doesn't look like it can mock the trigger behaviour (or even access it for that matter).
Short of throwing a big "#DO NOT DELETE THIS LINE EVER!" above the "call" line, is there anything I can do here to prevent this from being removed in the future? "DO NOT DELETE" lines are easily ignored say a year from now when no one has a clue why it's there.
