]> git.scottworley.com Git - tl-append/blobdiff - tl-append-test.c
A space for test & implementation to share code
[tl-append] / tl-append-test.c
index 2a5d233d6b6ebaeb22bc358ea6fc30611a1a8f93..6d037cb1cb57ad307ca53ca307fc603b67f0a40c 100644 (file)
@@ -3,32 +3,29 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
+
+#include "common.h"
 
 typedef struct expectation {
 
 typedef struct expectation {
+  time_t a, b;
   const char *message;
 } ex_t;
 
   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) {
+const ex_t END = {((time_t)-1), ((time_t)-1), NULL};
+static int is_end(ex_t exp) {
+  return exp.a == END.a && exp.b == END.b && exp.message == END.message;
+}
+static ex_t expectation(time_t a, time_t b, const char *message) {
   ex_t exp;
   ex_t exp;
+  exp.a = a;
+  exp.b = b;
   exp.message = message;
   return exp;
 }
 
   exp.message = message;
   return exp;
 }
 
-static void die(const char *message) {
-  fputs(message, stderr);
-  fputc('\n', stderr);
-  exit(1);
-}
-
-static void die_err(const char *message) {
-  perror(message);
-  exit(1);
-}
-
 static void remove_logfile() {
 static void remove_logfile() {
-  if (remove("tl.log") != 0) {
+  if (remove(FILENAME) != 0) {
     if (errno != ENOENT) {
       die_err("Error removing log file");
     }
     if (errno != ENOENT) {
       die_err("Error removing log file");
     }
@@ -39,19 +36,21 @@ 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");
   FILE *p = popen("./tl-append", "w");
   if (p == NULL)
     die_err("Couldn't run tl-append");
+  time_t start = time(NULL);
   if (fputs(content, p) == EOF)
     die("Couldn't write to pipe");
   int status = pclose(p);
   if (fputs(content, p) == EOF)
     die("Couldn't write to pipe");
   int status = pclose(p);
+  time_t end = time(NULL);
   if (status < 0)
     die_err("Error closing pipe");
   if (status != 0)
     die("tl-append exited abnormally");
   if (status < 0)
     die_err("Error closing pipe");
   if (status != 0)
     die("tl-append exited abnormally");
-  return expectation(content);
+  return expectation(start, end, content);
 }
 
 static void verify_log_contents(ex_t exps[]) {
 
 }
 
 static void verify_log_contents(ex_t exps[]) {
 
-  FILE *f = fopen("tl.log", "r");
+  FILE *f = fopen(FILENAME, "r");
   if (f == NULL)
     die_err("Error opening log file");
   for (size_t i = 0; !is_end(exps[i]); i++) {
   if (f == NULL)
     die_err("Error opening log file");
   for (size_t i = 0; !is_end(exps[i]); i++) {