X-Git-Url: http://git.scottworley.com/tl-append/blobdiff_plain/b3d5ed960aa9a43df2b48894867ec3481cee77fc..71a7e5c5f2fa792715f1c4c9491ad8cc7e718388:/tl-append-test.c diff --git a/tl-append-test.c b/tl-append-test.c index be2adcb..2a5d233 100644 --- a/tl-append-test.c +++ b/tl-append-test.c @@ -1,8 +1,21 @@ #define _POSIX_C_SOURCE 2 +#include #include #include #include +typedef struct expectation { + const char *message; +} ex_t; + +const ex_t END = {NULL}; +static int is_end(ex_t exp) { return exp.message == END.message; } +static ex_t expectation(const char *message) { + ex_t exp; + exp.message = message; + return exp; +} + static void die(const char *message) { fputs(message, stderr); fputc('\n', stderr); @@ -14,29 +27,62 @@ static void die_err(const char *message) { exit(1); } -static void write_and_read_line() { - char buf[10]; +static void remove_logfile() { + if (remove("tl.log") != 0) { + if (errno != ENOENT) { + die_err("Error removing log file"); + } + } +} +static ex_t write_to_tl_append(const char *content) { FILE *p = popen("./tl-append", "w"); if (p == NULL) die_err("Couldn't run tl-append"); - if (fputs("foo\n", p) == EOF) + if (fputs(content, p) == EOF) die("Couldn't write to pipe"); int status = pclose(p); if (status < 0) die_err("Error closing pipe"); if (status != 0) die("tl-append exited abnormally"); + return expectation(content); +} + +static void verify_log_contents(ex_t exps[]) { FILE *f = fopen("tl.log", "r"); if (f == NULL) die_err("Error opening log file"); - if (fgets(buf, sizeof(buf), f) == NULL) - die("Error reading log file"); - if (strncmp("foo\n", buf, sizeof(buf)) != 0) - die("Wrong contents in log file"); + for (size_t i = 0; !is_end(exps[i]); i++) { + size_t len = strlen(exps[i].message); + char *buf = (char *)malloc(len + 2); + if (fgets(buf, len + 1, f) == NULL) + die("Error reading log file"); + if (ferror(f)) + die("Error reading log file"); + if (strncmp(exps[i].message, buf, len + 1) != 0) + die("Wrong contents in log file"); + free(buf); + } if (fclose(f) != 0) die_err("Error closing log file"); } -int main() { write_and_read_line(); } +static void write_and_read_line() { + remove_logfile(); + ex_t e = write_to_tl_append("foo\n"); + verify_log_contents((ex_t[]){e, END}); +} + +static void write_and_read_two_lines() { + remove_logfile(); + ex_t e1 = write_to_tl_append("foo\n"); + ex_t e2 = write_to_tl_append("bar\n"); + verify_log_contents((ex_t[]){e1, e2, END}); +} + +int main() { + write_and_read_line(); + write_and_read_two_lines(); +}