-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime_test.c
214 lines (180 loc) · 7.4 KB
/
time_test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#include "time.h"
#include "test.h"
#include <stdio.h>
struct timer_state {
float get_elapsed_time_ratio;
struct duration get_remaining_time;
};
static int expect_timer(const char* file, int line, const char* label, struct timer* timer, struct timer_state expected);
#define EXPECT_TIMER(label, timer, expected) EXPECT_PASS(expect_timer(__FILE__, __LINE__, label, timer, expected))
static int expect_moment_from_duration(const char* file, int line, struct duration duration, enum time_precision precision, struct moment expected);
#define EXPECT_MOMENT_FROM_DURATION(duration, precision, expected) EXPECT_PASS(expect_moment_from_duration(__FILE__, __LINE__, duration, precision, expected))
int test_time(void)
{
{
printf("## timer (duration: 00:00:01:00)\n");
struct timer timer = {
.duration = { .msecs = 1000 },
};
static const struct test {
const char* label;
struct duration delta;
struct timer_state expected;
} tests[] = {
(struct test) {
.label = "initial",
.delta = (struct duration) { .msecs = 0 },
.expected = (struct timer_state) {
.get_elapsed_time_ratio = 0,
.get_remaining_time = { .msecs = 1000 },
},
},
(struct test) {
.label = "tick 200 msecs",
.delta = (struct duration) { .msecs = 200 },
.expected = (struct timer_state) {
.get_elapsed_time_ratio = 0.2f,
.get_remaining_time = { .msecs = 800 },
},
},
(struct test) {
.label = "tick 400 msecs",
.delta = (struct duration) { .msecs = 400 },
.expected = (struct timer_state) {
.get_elapsed_time_ratio = 0.6f,
.get_remaining_time = { .msecs = 400 },
},
},
(struct test) {
.label = "tick 600 msecs",
.delta = (struct duration) { .msecs = 600 },
.expected = (struct timer_state) {
.get_elapsed_time_ratio = 1,
.get_remaining_time = { .msecs = 0 },
},
},
};
static const size_t test_len = sizeof(tests) / sizeof(struct test);
for (size_t i = 0; i < test_len; i++) {
const struct test test = tests[i];
tick_timer(&timer, test.delta);
EXPECT_TIMER(test.label, &timer, test.expected);
}
reset_timer(&timer);
EXPECT_TIMER(
"reset",
&timer,
((struct timer_state) {
.get_elapsed_time_ratio = 0,
.get_remaining_time = { .msecs = 1000 },
})
);
}
{
printf("## moment from duration\n");
{
printf("- 02:45:20:500\n");
const struct duration duration = duration_from_moment((struct moment) {
.hours = 2,
.mins = 45,
.secs = 20,
.msecs = 500,
});
EXPECT_MOMENT_FROM_DURATION(duration, time_hour, ((struct moment) { .hours = 3 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_min, ((struct moment) { .hours = 2, .mins = 46 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_sec, ((struct moment) { .hours = 2, .mins = 45, .secs = 21 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_msec, ((struct moment) { .hours = 2, .mins = 45, .secs = 20, .msecs = 500 }));
}
{
printf("- 01:00:00:000\n");
const struct duration duration = duration_from_moment((struct moment) {
.hours = 1,
});
EXPECT_MOMENT_FROM_DURATION(duration, time_hour, ((struct moment) { .hours = 1 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_min, ((struct moment) { .hours = 1 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_sec, ((struct moment) { .hours = 1 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_msec, ((struct moment) { .hours = 1 }));
}
{
printf("- 00:59:59:999\n");
const struct duration duration = duration_from_moment((struct moment) {
.mins = 59,
.secs = 59,
.msecs = 999,
});
EXPECT_MOMENT_FROM_DURATION(duration, time_hour, ((struct moment) { .hours = 1 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_min, ((struct moment) { .mins = 59 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_sec, ((struct moment) { .mins = 59, .secs = 59 }));
EXPECT_MOMENT_FROM_DURATION(duration, time_msec, ((struct moment) { .mins = 59, .secs = 59, .msecs = 999 }));
}
}
return EXIT_SUCCESS;
}
static int expect_timer(
const char* const file, const int line,
const char* const label,
struct timer* const timer, const struct timer_state expected
)
{
const struct timer_state actual = {
.get_elapsed_time_ratio = get_elapsed_time_ratio(timer),
.get_remaining_time = get_remaining_time(timer),
};
char actual_label[1 << 8] = { 0 };
(void)snprintf(
actual_label, sizeof(actual_label),
"get_elapsed_time_ratio: %f, get_remaining_time: %ld msecs",
actual.get_elapsed_time_ratio, actual.get_remaining_time.msecs
);
char expected_label[1 << 8] = { 0 };
(void)snprintf(
expected_label, sizeof(expected_label),
"get_elapsed_time_ratio: %f, get_remaining_time: %ld msecs",
expected.get_elapsed_time_ratio, expected.get_remaining_time.msecs
);
const bool passes = actual.get_elapsed_time_ratio == expected.get_elapsed_time_ratio
&& actual.get_remaining_time.msecs == expected.get_remaining_time.msecs;
report_status(file, line, passes, label, actual_label, expected_label);
return passes ? EXIT_SUCCESS : EXIT_FAILURE;
}
static const char* time_precision_to_str(const enum time_precision precision)
{
switch (precision) {
case time_hour:
return "hour";
case time_min:
return "min";
case time_sec:
return "sec";
case time_msec:
return "msec";
}
}
static int expect_moment_from_duration(
const char* const file, const int line,
const struct duration duration, const enum time_precision precision,
const struct moment expected
)
{
const struct moment actual = moment_from_duration(duration, precision);
char label[1 << 5] = { 0 };
(void)snprintf(label, sizeof(label), "%ld msecs in %s", duration.msecs, time_precision_to_str(precision));
char actual_label[1 << 8] = { 0 };
(void)snprintf(
actual_label, sizeof(actual_label),
"hours: %d, mins: %d, secs: %d, msecs: %d",
actual.hours, actual.mins, actual.secs, actual.msecs
);
char expected_label[1 << 8] = { 0 };
(void)snprintf(
expected_label, sizeof(expected_label),
"hours: %d, mins: %d, secs: %d, msecs: %d",
expected.hours, expected.mins, expected.secs, expected.msecs
);
const bool passes = actual.hours == expected.hours
&& actual.mins == expected.mins
&& actual.secs == expected.secs
&& actual.msecs == expected.msecs;
report_status(file, line, passes, label, actual_label, expected_label);
return passes ? EXIT_SUCCESS : EXIT_FAILURE;
}