2023-11-06 13:59:19 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
9unit
|
2023-11-07 14:48:41 -05:00
|
|
|
Copyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
|
2023-11-06 13:59:19 -05:00
|
|
|
|
|
|
|
This program 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 program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Tracks information about the tests being run.
|
2023-11-06 18:23:18 -05:00
|
|
|
typedef struct TestState TestState;
|
|
|
|
|
|
|
|
// Defines a log entry in a TestState struct
|
|
|
|
typedef struct TestLogEntry TestLogEntry;
|
|
|
|
|
|
|
|
// The following structures will typically be maintained by the
|
|
|
|
// testing framework. You shouldn't need to concern yourself with
|
|
|
|
// them.
|
|
|
|
struct TestState
|
2023-11-06 13:59:19 -05:00
|
|
|
{
|
|
|
|
int run; // number of tests run
|
2023-11-06 15:20:09 -05:00
|
|
|
int passed; // number of successful tests
|
|
|
|
int failed; // number of failed tests
|
2023-11-07 18:44:53 -05:00
|
|
|
int pending; // number of pending tests
|
2023-11-06 18:23:18 -05:00
|
|
|
TestLogEntry *first_log; // the first log entry
|
|
|
|
TestLogEntry *last_log; //the last log entry
|
2023-11-07 18:44:53 -05:00
|
|
|
void *ptr; // used for passing data between tests
|
2023-11-06 18:23:18 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct TestLogEntry
|
|
|
|
{
|
|
|
|
char *text; // the entry text
|
|
|
|
TestLogEntry *next; // points to the next entry
|
|
|
|
};
|
2023-11-06 13:59:19 -05:00
|
|
|
|
2023-11-06 15:20:09 -05:00
|
|
|
// Possible results of running a single test
|
2023-11-06 13:59:19 -05:00
|
|
|
typedef enum TestResult
|
|
|
|
{
|
2023-11-06 18:23:18 -05:00
|
|
|
test_success, // the test succeeded
|
|
|
|
test_failure, // the test failed
|
2023-11-07 18:44:53 -05:00
|
|
|
test_pending // the test is pending
|
2023-11-06 13:59:19 -05:00
|
|
|
} TestResult;
|
|
|
|
|
2023-11-06 15:20:09 -05:00
|
|
|
// Runs a single test
|
2023-11-06 18:23:18 -05:00
|
|
|
extern void run_test(
|
2023-11-06 15:20:09 -05:00
|
|
|
TestState *, // the TestState data
|
2023-11-06 18:23:18 -05:00
|
|
|
TestResult (*)(TestState *) // the test to run
|
2023-11-06 15:20:09 -05:00
|
|
|
);
|
|
|
|
|
2023-11-06 15:30:06 -05:00
|
|
|
// Runs multiple tests, displaying a summary at the end
|
2023-11-06 18:23:18 -05:00
|
|
|
extern void run_tests(
|
|
|
|
// runs the tests and updates a provided TestState
|
2023-11-06 15:20:09 -05:00
|
|
|
void (*)(TestState *)
|
|
|
|
);
|
2023-11-06 14:46:01 -05:00
|
|
|
|
2023-11-06 23:33:22 -05:00
|
|
|
// Adds an entry to the log that is displayed after the tests have
|
|
|
|
// completed
|
2023-11-07 18:44:53 -05:00
|
|
|
extern void append_test_log(
|
2023-11-06 23:33:22 -05:00
|
|
|
TestState *, // the current state
|
|
|
|
const char * // the message to append
|
|
|
|
);
|
|
|
|
|
2023-11-06 13:59:19 -05:00
|
|
|
//jl
|