Paul Zinselmeyer
25a5ca3e2d
- Add Assignment-7 to flake.nix - Implement basic framework of app - Implement proxy subcommand (mostly) - Implement basics of intermediary subcommand
73 lines
2 KiB
C
73 lines
2 KiB
C
#include "mini_test.h"
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <time.h>
|
|
|
|
#define RESET_COLOR "\x1b[0m"
|
|
#define RED_COLOR "\x1b[31m"
|
|
#define GREEN_COLOR "\x1b[32m"
|
|
#define ORANGE_COLOR "\x1b[33m"
|
|
#define BEGIN_FAT_TEXT "\033[1m"
|
|
#define END_FAT_TEXT "\033[0m"
|
|
|
|
static int total_tests = 0;
|
|
static int passed_tests = 0;
|
|
static char *group;
|
|
|
|
void start_tests(char *group_name) {
|
|
group = group_name;
|
|
total_tests = 0;
|
|
passed_tests = 0;
|
|
printf("Starting tests " BEGIN_FAT_TEXT "%s" END_FAT_TEXT "...\n", group);
|
|
}
|
|
|
|
void end_tests() {
|
|
if (passed_tests == total_tests) {
|
|
printf(GREEN_COLOR "[%d/%d] Tests passed" RESET_COLOR "\n", passed_tests, total_tests);
|
|
} else if (passed_tests == 0) {
|
|
printf(RED_COLOR "[%d/%d] Tests passed" RESET_COLOR "\n", passed_tests, total_tests);
|
|
} else {
|
|
printf(ORANGE_COLOR "[%d/%d] Tests passed" RESET_COLOR "\n", passed_tests, total_tests);
|
|
}
|
|
}
|
|
|
|
void run_test(const char *test_name, bool (*test_fn)(void)) {
|
|
total_tests++;
|
|
printf("\tTesting %s... ", test_name);
|
|
clock_t start, end;
|
|
start = clock();
|
|
bool result = test_fn();
|
|
end = clock();
|
|
double time_passed = ((double)(end - start)) / CLOCKS_PER_SEC;
|
|
if (result) {
|
|
printf(GREEN_COLOR "[✓] %.4fs" RESET_COLOR "\n", time_passed);
|
|
passed_tests++;
|
|
} else {
|
|
printf(RED_COLOR "" RESET_COLOR "\n");
|
|
}
|
|
}
|
|
|
|
bool assert_true(bool condition, const char *message, ...) {
|
|
if (!condition) {
|
|
printf(RED_COLOR "[X] Assertion failed: " RESET_COLOR);
|
|
va_list args;
|
|
va_start(args, message);
|
|
vprintf(message, args);
|
|
va_end(args);
|
|
printf(" ");
|
|
}
|
|
return condition;
|
|
}
|
|
|
|
bool assert_false(bool condition, const char *message, ...) {
|
|
if (condition) {
|
|
printf(RED_COLOR "[X] Assertion failed: " RESET_COLOR);
|
|
va_list args;
|
|
va_start(args, message);
|
|
vprintf(message, args);
|
|
va_end(args);
|
|
printf(" ");
|
|
}
|
|
return !condition;
|
|
}
|