summaryrefslogtreecommitdiffstats
path: root/test/test_lifescan.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-11-16tests: simplify and cleanup.Diego Elio Pettenò1-9/+5
* Remove the __main__ blocks as the tests should not be executable by themselves. * Use absltest everywhere instead of a mixture of unittest/absltest (via parameterized). * Only modify import path once. * Cleanup pylint warnings, by disabling those that are not useful, and fixing those that are.
2018-01-01test_lifescan: rename from test_otultraeasy, and cleanup.Diego Elio Pettenò1-12/+1
This test was actually only testing the CRC CCITT implementation now that otultraeasy uses construct.
2018-01-01otultraeasy: rewrite using construct for parsing.Diego Elio Pettenò1-17/+0
This removes the wholly complicated _Packet() object and replace it with more readable construct. Unfortunately this appears to reduce performance because of the serial stream buffering, needed to calculate the checksum. It's unfortunate, but it at least avoids a significant amount of custom code.
2017-12-28tests: fix OneTouch tests to use Python's own mock, and leverage absl-py.Diego Elio Pettenò1-5/+5
Since I've increased the minimum Python version to 3.4, mock is now available within Python. And since I already used absl-py parameterized for test_common, make use of it to avoid boilerplate.
2017-01-16LifeScan devices: move lifescan_common to the support directory.Diego Elio Pettenò1-3/+3
This makes it easier to figure out which files represent drivers, and which ones are per-vendor support modules.
2016-03-02Move the InvalidChecksum exception to the base exceptions module.Diego Elio Pettenò1-1/+1
Most glucometers have *some* sort of checksum, so there is no reason to implement this on a per-driver basis.
2016-02-13otultraeasy: move the crc function to lifescan_common.Diego Elio Pettenò1-2/+2
The same CRC-CCITT function is used in Verio 2015 devices, so prepare to reuse it by moving it to the common module.
2014-01-29Initial support for OneTouch Ultra Easy glucometers.Diego Elio Pettenò1-0/+60
The driver is fully functional but requires proper documentation and testing.