83 lines
2.7 KiB
C++
83 lines
2.7 KiB
C++
|
/* Arduino SdFat Library
|
||
|
* Copyright (C) 2011 by William Greiman
|
||
|
*
|
||
|
* This file is part of the Arduino SdFat Library
|
||
|
*
|
||
|
* This Library is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This Library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with the Arduino SdFat Library. If not, see
|
||
|
* <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
#include <SdFatTestSuite.h>
|
||
|
static uint16_t failCount;
|
||
|
static uint16_t testCount;
|
||
|
static Print* testOut = &Serial;
|
||
|
//------------------------------------------------------------------------------
|
||
|
static size_t strlenPGM(PGM_P str) {
|
||
|
PGM_P end = str;
|
||
|
while (pgm_read_byte(end++)) {}
|
||
|
return end - str;
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
void testBegin() {
|
||
|
Serial.begin(9600);
|
||
|
while (!Serial) {} // wait for leonardo
|
||
|
testOut = &Serial;
|
||
|
SerialPrintln_P(PSTR("Type any character to begin."));
|
||
|
while (Serial.read() <= 0) {}
|
||
|
delay(200); // Catch Due reset problem
|
||
|
|
||
|
print_P(testOut, PSTR("FreeRam: "));
|
||
|
testOut->println(FreeRam());
|
||
|
testOut->println();
|
||
|
failCount = 0;
|
||
|
testCount = 0;
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
void testEnd() {
|
||
|
testOut->println();
|
||
|
println_P(testOut, PSTR("Compiled: " __DATE__ " " __TIME__));
|
||
|
print_P(testOut, PSTR("FreeRam: "));
|
||
|
testOut->println(FreeRam());
|
||
|
print_P(testOut, PSTR("Test count: "));
|
||
|
testOut->println(testCount);
|
||
|
print_P(testOut, PSTR("Fail count: "));
|
||
|
testOut->println(failCount);
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
static void testResult(bool b, uint8_t n) {
|
||
|
while (n++ < 60) testOut->write(' ');
|
||
|
if (b) {
|
||
|
println_P(testOut, PSTR("..ok"));
|
||
|
} else {
|
||
|
println_P(testOut, PSTR("FAIL"));
|
||
|
failCount++;
|
||
|
}
|
||
|
testCount++;
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
void testVerify_P(char* result, PGM_P expect) {
|
||
|
testOut->write('"');
|
||
|
testOut->print(result);
|
||
|
testOut->print("\",\"");
|
||
|
print_P(testOut, expect);
|
||
|
testOut->write('"');
|
||
|
uint8_t n = strlen(result) + strlenPGM(expect) + 5;
|
||
|
testResult(!strcmp_P(result, expect), n);
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
void testVerify_P(bool b, PGM_P msg) {
|
||
|
print_P(testOut, msg);
|
||
|
uint8_t n = strlenPGM(msg);
|
||
|
testResult(b, n);
|
||
|
}
|