]> git.scottworley.com Git - tl-append/blame - tl-append-test.c
Write timestamps
[tl-append] / tl-append-test.c
CommitLineData
b3d5ed96 1#define _POSIX_C_SOURCE 2
bab98a3a
SW
2#define _XOPEN_SOURCE
3#include <assert.h>
4#include <ctype.h>
27dfbfeb 5#include <errno.h>
b3d5ed96
SW
6#include <stdio.h>
7#include <stdlib.h>
8#include <string.h>
853b83c4 9#include <time.h>
b3d5ed96 10
d522116b
SW
11#include "common.h"
12
2998af81
SW
13const size_t TIMESTAMP_LEN = 19;
14
71a7e5c5 15typedef struct expectation {
853b83c4 16 time_t a, b;
eaaa0046 17 const char *message;
71a7e5c5 18} ex_t;
eaaa0046 19
853b83c4
SW
20const ex_t END = {((time_t)-1), ((time_t)-1), NULL};
21static int is_end(ex_t exp) {
22 return exp.a == END.a && exp.b == END.b && exp.message == END.message;
23}
24static ex_t expectation(time_t a, time_t b, const char *message) {
71a7e5c5 25 ex_t exp;
853b83c4
SW
26 exp.a = a;
27 exp.b = b;
eaaa0046
SW
28 exp.message = message;
29 return exp;
30}
31
27dfbfeb 32static void remove_logfile() {
d522116b 33 if (remove(FILENAME) != 0) {
27dfbfeb
SW
34 if (errno != ENOENT) {
35 die_err("Error removing log file");
36 }
37 }
38}
39
71a7e5c5 40static ex_t write_to_tl_append(const char *content) {
b3d5ed96
SW
41 FILE *p = popen("./tl-append", "w");
42 if (p == NULL)
43 die_err("Couldn't run tl-append");
d753115a 44 time_t start = time(NULL);
aacfb261 45 if (fputs(content, p) == EOF)
b3d5ed96
SW
46 die("Couldn't write to pipe");
47 int status = pclose(p);
d753115a 48 time_t end = time(NULL);
b3d5ed96
SW
49 if (status < 0)
50 die_err("Error closing pipe");
51 if (status != 0)
52 die("tl-append exited abnormally");
d753115a 53 return expectation(start, end, content);
aacfb261
SW
54}
55
2998af81
SW
56static void verify_timestamp(const ex_t *ex, const char *line) {
57 struct tm tm;
58
59 /* localtime_r to set tm's timezone */
60 time_t now_time = time(NULL);
61 if (localtime_r(&now_time, &tm) == NULL)
62 die_err("Can't unpack current time?");
63
64 const char *strptime_result = strptime(line, "%Y %m %d %H %M %S", &tm);
65 if (strptime_result == NULL || strptime_result != &line[TIMESTAMP_LEN])
66 die("Wrong contents in log file: Couldn't parse timestamp");
67 time_t t = mktime(&tm);
68 int t_in_range = ex->a <= t && t <= ex->b;
69 if (!t_in_range)
70 die("Wrong contents in log file: Wrong time");
71}
72
83acbf7e 73static void verify_line(const ex_t *ex, const char *line) {
2998af81
SW
74 size_t line_len = strlen(line);
75 if (line_len < TIMESTAMP_LEN + 1)
76 die("Wrong contents in log file: Line too short");
77 verify_timestamp(ex, line);
78 if (line[TIMESTAMP_LEN] != ' ')
79 die("Wrong contents in log file: Bad format");
80 if (strncmp(ex->message, &line[TIMESTAMP_LEN + 1], strlen(ex->message) + 1) !=
81 0)
83acbf7e
SW
82 die("Wrong contents in log file");
83}
84
71a7e5c5 85static void verify_log_contents(ex_t exps[]) {
b3d5ed96 86
d522116b 87 FILE *f = fopen(FILENAME, "r");
b3d5ed96
SW
88 if (f == NULL)
89 die_err("Error opening log file");
71a7e5c5 90 for (size_t i = 0; !is_end(exps[i]); i++) {
2998af81 91 size_t len = TIMESTAMP_LEN + 1 + strlen(exps[i].message);
71a7e5c5
SW
92 char *buf = (char *)malloc(len + 2);
93 if (fgets(buf, len + 1, f) == NULL)
94 die("Error reading log file");
95 if (ferror(f))
96 die("Error reading log file");
83acbf7e 97 verify_line(&exps[i], buf);
71a7e5c5
SW
98 free(buf);
99 }
b3d5ed96
SW
100 if (fclose(f) != 0)
101 die_err("Error closing log file");
102}
103
bab98a3a
SW
104static void test_encode_time() {
105 /* localtime_r to set tm's timezone */
106 time_t now_time = time(NULL);
107 struct tm tm;
108 if (localtime_r(&now_time, &tm) == NULL)
109 die_err("Can't unpack current time?");
110
111 const char *strptime_result = strptime("2011-12-13 14:15:16", "%F %T", &tm);
112 if (strptime_result == NULL || *strptime_result != '\0')
113 die("Couldn't parse time?");
114 time_t tt = mktime(&tm);
115 if (tt == (time_t)-1)
116 die_err("Can't pack time?");
117
118 const char *encoded = encode_time(tt);
119 /* Loose check to allow for daylight savings time changes between the current
120 * time and the target time. :( */
121 assert(encoded[0] == '2');
122 assert(encoded[1] == '0');
123 assert(encoded[2] == '1');
124 assert(encoded[3] == '1');
125 assert(encoded[4] == ' ');
126 assert(encoded[5] == '1');
127 assert(encoded[6] == '2');
128 assert(encoded[7] == ' ');
129 assert(encoded[8] == '1');
130 assert(encoded[9] == '3');
131 assert(encoded[10] == ' ');
132 assert(encoded[11] == '1');
133 assert(isdigit(encoded[12]));
134 assert(encoded[13] == ' ');
135 assert(isdigit(encoded[14]));
136 assert(isdigit(encoded[15]));
137 assert(encoded[16] == ' ');
138 assert(encoded[17] == '1');
139 assert(encoded[18] == '6');
140 assert(encoded[19] == '\0');
141}
142
aacfb261 143static void write_and_read_line() {
27dfbfeb 144 remove_logfile();
71a7e5c5
SW
145 ex_t e = write_to_tl_append("foo\n");
146 verify_log_contents((ex_t[]){e, END});
aacfb261
SW
147}
148
27dfbfeb
SW
149static void write_and_read_two_lines() {
150 remove_logfile();
71a7e5c5
SW
151 ex_t e1 = write_to_tl_append("foo\n");
152 ex_t e2 = write_to_tl_append("bar\n");
153 verify_log_contents((ex_t[]){e1, e2, END});
27dfbfeb
SW
154}
155
156int main() {
bab98a3a 157 test_encode_time();
27dfbfeb
SW
158 write_and_read_line();
159 write_and_read_two_lines();
160}