// // FILE: unit_test_001.cpp // AUTHOR: Rob Tillaart // VERSION: 0.1.0 // DATE: 2021-03-16 // PURPOSE: unit tests for the TCA9548 I2C multiplexer // https://github.com/RobTillaart/TCA9548 // https://github.com/Arduino-CI/arduino_ci/blob/master/REFERENCE.md // // supported assertions // ---------------------------- // assertEqual(expected, actual); // a == b // assertNotEqual(unwanted, actual); // a != b // assertComparativeEquivalent(expected, actual); // abs(a - b) == 0 or (!(a > b) && !(a < b)) // assertComparativeNotEquivalent(unwanted, actual); // abs(a - b) > 0 or ((a > b) || (a < b)) // assertLess(upperBound, actual); // a < b // assertMore(lowerBound, actual); // a > b // assertLessOrEqual(upperBound, actual); // a <= b // assertMoreOrEqual(lowerBound, actual); // a >= b // assertTrue(actual); // assertFalse(actual); // assertNull(actual); // // special cases for floats // assertEqualFloat(expected, actual, epsilon); // fabs(a - b) <= epsilon // assertNotEqualFloat(unwanted, actual, epsilon); // fabs(a - b) >= epsilon // assertInfinity(actual); // isinf(a) // assertNotInfinity(actual); // !isinf(a) // assertNAN(arg); // isnan(a) // assertNotNAN(arg); // !isnan(a) /* most unit tests will test for fail as there is no sensor connected and there is no mockup. It appears that Wire.write does not fail without sensor... */ #include #include "Arduino.h" #include "TCA9548.h" int expect; // TODO needed as there seems a problem with 8 bit comparisons (char?) uint32_t start, stop; unittest_setup() { fprintf(stderr, "TCA9548_LIB_VERSION: %s\n", (char *) TCA9548_LIB_VERSION); } unittest_teardown() { } unittest(test_begin) { TCA9548 tca(0x70); bool b = tca.begin(); assertEqual(b, true); assertTrue(tca.isConnected()); } unittest(test_enable) { TCA9548 tca(0x70); bool b = tca.begin(); assertEqual(b, true); uint8_t mask = 0x00; for (int chan = 0; chan < 8; chan++) { tca.enableChannel(chan); assertTrue(tca.isEnabled(chan)); } assertEqual(0xFF, tca.getChannelMask()); tca.setChannelMask(0x00); assertEqual(0x00, tca.getChannelMask()); } unittest(test_select) { TCA9548 tca(0x70); bool b = tca.begin(); assertEqual(b, true); uint8_t mask = 0x00; for (int chan = 0; chan < 8; chan++) { tca.selectChannel(chan); assertTrue(tca.isEnabled(chan)); } assertEqual(0x80, tca.getChannelMask()); tca.setChannelMask(0x00); assertEqual(0x00, tca.getChannelMask()); } unittest_main() // --------