-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtap.h
830 lines (784 loc) · 16.4 KB
/
tap.h
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
/**
* @file tap.h
* @author Stephen Belanger
* @date Apr 13, 2022
* @brief C and C++ API for TAP testing
*
* @todo TODO directives
* @todo YAML blocks?
*/
#ifndef _INCLUDE_TAP_H_
#define _INCLUDE_TAP_H_
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
/**
* @brief This is the TAP document every function will interact with
*/
typedef struct tap_s {
FILE* out; /**< FILE where TAP document will be written */
int plan_count; /**< Number of expected checks */
int count; /**< Number of checks made so far */
int failures; /**< Number of failures so far */
int skip_count; /**< Number of future checks to skip */
int skipped; /**< Number of checks skipped so far */
int indent; /**< Indentation level for sub-tests */
const char* skip_reason; /**< Reason to report for future skipped checks */
void* data; /**< Free pointer slot to pass data into sub-tests */
} tap_t;
/**
* @brief Sub-test function signature
*
* @param t TAP document
*/
typedef void (*tap_test_fn)(tap_t* t);
/**
* @private
* @brief Print indentation level for sub-tests
* @note Internal use only!
*
* @param t TAP document
*/
static inline void _tap_print_indent(tap_t* t) {
for (int i = 0; i < t->indent; i++) {
fprintf(t->out, " ");
}
}
/**
* @private
* @brief This is separated to prevent sub-tests from re-printing TAP version.
* @note Internal use only!
*
* @param t TAP document
*/
static inline tap_t _tap_init(FILE* out, int indent) {
return (tap_t){
out, // out
0, // plan_count
0, // count
0, // failures
0, // skip_count
0, // skipped
indent,
NULL, // skip_reason
NULL // data
};
}
/**
* @brief Creates a TAP document writing to the given FILE.
*
* ```c
* tap_t t = tap(stdout);
* // or...
* tap_t t = tap(fopen("out.tap", "w"));
* ```
*
* ```tap
* TAP version 13
* ```
*
* @param out FILE to which the TAP document will be written
* @return tap_t
*/
static inline tap_t tap(FILE* out) {
fprintf(out, "TAP version 13\n");
return _tap_init(out, 0);
}
/**
* @brief Enable given pragma key
*
* ```c
* tap_on(&t, "strict");
* ```
*
* ```tap
* pragma +strict
* ```
*
* @param t TAP document
* @param pragma Key to enable
*/
static inline void tap_on(tap_t* t, const char* pragma) {
_tap_print_indent(t);
fprintf(t->out, "pragma +%s\n", pragma);
}
/**
* @brief Disable given pragma key
*
* ```c
* tap_off(&t, "strict");
* ```
*
* ```tap
* pragma -strict
* ```
*
* @param t TAP document
* @param pragma Key to disable
*/
static inline void tap_off(tap_t* t, const char* pragma) {
_tap_print_indent(t);
fprintf(t->out, "pragma -%s\n", pragma);
}
/**
* @brief Bail out of the test
*
* ```c
* tap_bail_out(&t, "Oh no!");
* ```
*
* ```tap
* Bail out! Oh No!
* ```
*
* @param t TAP document
* @param reason Reason to record to TAP document for bailing out
*/
static inline void tap_bail_out(tap_t* t, const char* reason) {
fprintf(t->out, "Bail out! %s\n", reason);
exit(1);
}
/**
* @brief Inform the TAP document to expect a set number of test completions
* when ended.
*
* Setting the plan multiple times is invalid. If not specified it will
* be set automatically from the total test count when the test is ended.
*
* ```c
* tap_plan(&t, 123);
* ```
*
* ```tap
* 1..123
* ```
*
* @param t TAP document
* @param n number of expected checks
*/
static inline void tap_plan(tap_t* t, int n) {
if (t->plan_count != 0) {
tap_bail_out(t, "setting the plan multiple times is invalid");
return;
}
t->plan_count = n;
_tap_print_indent(t);
fprintf(t->out, "1..%d\n", n);
}
/**
* @brief Add a comment line to the tap document. Useful for separating groups
* of tests too small to warrant splitting out to a fully separate test block.
*
* ```c
* tap_comment(&t, "my section");
* ```
*
* ```tap
* # my section
* ```
*
* @param t TAP document
* @param comment Comment to write to the TAP document
*/
static inline void tap_comment(tap_t* t, const char* comment) {
_tap_print_indent(t);
fprintf(t->out, "# %s\n", comment);
}
/**
* @brief Skips the next n tests.
*
* ```c
* tap_skip_n(&t, 1, "unimplemented");
* tap_pass(&t, "not done yet");
* // or...
* tap_skip_n(&t, 2);
* tap_pass(&t, "just skipping");
* tap_pass(&t, "also skipping");
* ```
*
* ```tap
* ok 1 - not done yet # SKIP unimplemented
* ok 2 - just skipping # SKIP
* ok 3 - also skipping # SKIP
* ```
*
* @param t TAP document
* @param n Number of checks to skip
* @param reason Optional reason for skipping
*/
static inline void tap_skip_n(tap_t* t, int n, const char* reason) {
if (t->skip_count > 0) {
tap_bail_out(t, "only one skip task may be active");
return;
}
t->skip_count = n;
t->skip_reason = reason;
}
/**
* @brief Skips the next test.
*
* ```c
* tap_skip(&t, "unimplemented");
* tap_pass(&t, "not done yet");
* // or...
* tap_skip(&t);
* tap_pass(&t, "just skipping");
* ```
*
* ```tap
* ok 1 - not done yet # SKIP unimplemented
* ok 2 - just skipping # SKIP
* ```
*
* @param t TAP document
* @param reason Optional reason for skipping
*/
static inline void tap_skip(tap_t* t, const char* reason, ...) {
tap_skip_n(t, 1, reason);
}
/**
* @internal
* Hack to make reason optional
*/
#define tap_skip(t, ...) \
tap_skip(t, ##__VA_ARGS__, NULL)
/**
* @brief Check if a given value is truthy.
*
* All other check types are sugar around this one.
*
* ```c
* tap_ok(&t, true, "it's true");
* // or...
* tap_ok(&t, false);
* ```
*
* ```tap
* ok 1 - it's true
* not ok 2
* ```
*
* @param t TAP document
* @param pass Mark if the checked value is truthy
* @param description Optional description of what was checked
*/
static inline void tap_ok(tap_t* t, bool pass, const char* description, ...) {
const char* skip_reason = t->skip_reason;
int skip_count = t->skip_count;
if (t->skip_count) {
t->skip_count--;
t->skipped++;
if (!t->skip_count) {
t->skip_reason = NULL;
}
} else {
t->count++;
if (!pass) {
t->failures++;
}
}
// Status information
_tap_print_indent(t);
if (!pass) fprintf(t->out, "not ");
fprintf(t->out, "ok %d", t->count);
// Optional message
if (description != NULL && strlen(description)) {
fprintf(t->out, " - %s", description);
}
// Directive
if (skip_reason != NULL && strlen(skip_reason)) {
fprintf(t->out, " # SKIP %s", skip_reason);
} else if (skip_count > 0) {
fprintf(t->out, " # SKIP");
}
fprintf(t->out, "\n");
}
/**
* @internal
* Hack to make descriptions optional
*/
#define tap_ok(t, value, ...) \
tap_ok(t, value, ##__VA_ARGS__, "")
/**
* @brief Check if the value is falsy.
*
* ```c
* tap_not_ok(&t, true, "it is falsy");
* // or...
* tap_not_ok(&t, false);
* ```
*
* ```tap
* not ok 1 - it is falsy
* ok 2
* ```
*
* @param t TAP document
* @param value Value to check if it is falsy
* @param description Optional description of what was checked
*/
#define tap_not_ok(t, value, ...) \
tap_ok(t, !((bool)value), __VA_ARGS__)
/**
* @brief Mark a passed check.
*
* ```c
* tap_pass(&t, "it passed");
* // or...
* tap_pass(&t);
* ```
*
* ```tap
* ok 1 - it passed
* ok 2
* ```
*
* @param t TAP document
* @param description Optional description of what was checked
*/
#define tap_pass(t, ...) \
tap_ok(t, true, __VA_ARGS__)
/**
* @brief Mark a failed check.
*
* ```c
* tap_fail(&t, "it failed");
* // or...
* tap_fail(&t);
* ```
*
* ```tap
* not ok 1 - it failed
* not ok 2
* ```
*
* @param t TAP document
* @param description Optional description of what was checked
*/
#define tap_fail(t, ...) \
tap_ok(t, false, __VA_ARGS__)
/**
* @brief Check if values are equal.
*
* ```c
* tap_equal(&t, a, b, "values are equal");
* // or...
* tap_equal(&t, a, b);
* ```
*
* ```tap
* ok 1 - values are equal
* ok 2
* ```
*
* @param t TAP document
* @param a First value to compare
* @param b Second balue to compare
* @param description Optional description of what was checked
*/
#define tap_equal(t, a, b, ...) \
tap_ok(t, a == b, __VA_ARGS__)
/**
* @brief Check if values are not equal.
*
* ```c
* tap_not_equal(&t, a, b, "values are not equal");
* // or...
* tap_not_equal(&t, a, b);
* ```
*
* ```tap
* ok 1 - values are equal
* ok 2
* ```
*
* @param t TAP document
* @param a First value to compare
* @param b Second balue to compare
* @param description Optional description of what was checked
*/
#define tap_not_equal(t, a, b, ...) \
tap_ok(t, a != b, __VA_ARGS__)
/**
* @brief End the test document. Will record the plan range if not already set.
*
* ```c
* tap_t t = tap(stdout);
* tap_pass(&t, "yay!");
* tap_end(&t);
* ```
*
* ```tap
* TAP version 13
* ok 1 - yay!
* 1..1
* ```
*
* @param t TAP document
* @return int Return 1 if unskipped failures or count does not match plan
*/
static inline int tap_end(tap_t* t) {
if (t->plan_count == 0) {
tap_plan(t, t->count + t->skipped);
}
if (t->failures > 0) return 1;
if ((t->count + t->skipped) != t->plan_count) return 1;
return 0;
}
/**
* @brief Add a named sub-test
*
* ```c
* void sub_test(tap_t* t) {
* tap_pass(t, "it passed");
* }
*
* tap_test(&t, "sub-test", sub_test);
* ```
*
* ```tap
* # Subtest: sub-test
* ok 1 - it passed
* 1..1
* ok 1 - sub-test
* ```
*
* @param t TAP document
* @param name Test name
* @param fn Test function
* @param ptr Optional pointer to attach to tap_t given to test function
*/
static inline void tap_test(tap_t *t, const char *name, tap_test_fn fn, void *ptr, ...) {
_tap_print_indent(t);
fprintf(t->out, "# Subtest: %s\n", name);
tap_t t2 = _tap_init(t->out, t->indent + 4);
t2.data = ptr;
fn(&t2);
tap_ok(t, tap_end(&t2) == 0, name);
}
/**
* @internal
* Hack to make ptr optional
*/
#define tap_test(t, name, fn, ...) \
tap_test(t, name, fn, ##__VA_ARGS__, NULL)
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1900)
#include <string>
#include <functional>
/**
* @brief This is a TAP document
*/
class Tap : private tap_t {
public:
/**
* @brief Construct a new TAP document
*
* @param out FILE stream to write TAP document to. Defaults to stdout.
*/
Tap(FILE* out = stdout) : tap_t(tap(out)) {}
/**
* @brief Enable given pragma key
*
* ```cpp
* t.on(&t, "strict");
* ```
*
* ```tap
* pragma +strict
* ```
*
* @param pragma Key to enable
*/
void on(const std::string& pragma) {
tap_on(this, pragma.c_str());
}
/**
* @brief Disable given pragma key
*
* ```cpp
* t.off(&t, "strict");
* ```
*
* ```tap
* pragma -strict
* ```
*
* @param pragma Key to disable
*/
void off(const std::string& pragma) {
tap_off(this, pragma.c_str());
}
/**
* @brief Bail out of the test
*
* ```cpp
* t.bail_out("Oh no!");
* ```
*
* ```tap
* Bail out! Oh No!
* ```
*
* @param reason Reason to record to TAP document for bailing out
*/
void bail_out(const std::string& reason = "") {
tap_bail_out(this, reason.c_str());
}
/**
* @brief Expect a set number of test completions when ended.
*
* ```cpp
* t.plan(123);
* ```
*
* ```tap
* 1..123
* ```
*
* @param n number of expected checks
*/
void plan(int n) {
tap_plan(this, n);
}
/**
* @brief Add a comment line to the tap document. Useful for separating
* groups of tests too small to warrant splitting out to a fully separate
* test block.
*
* ```cpp
* t.comment("my section");
* ```
*
* ```tap
* # my section
* ```
*
* @param comment Comment to write to the TAP document
*/
void comment(const std::string& comment) {
tap_comment(this, comment.c_str());
}
/**
* @brief Skips the next n tests.
*
* ```cpp
* t.skip(1, "unimplemented");
* t.pass("not done yet");
* // or...
* t.skip(2);
* t.pass("just skipping");
* t.pass("also skipping");
* ```
*
* ```tap
* ok 1 - not done yet # SKIP unimplemented
* ok 2 - just skipping # SKIP
* ok 3 - also skipping # SKIP
* ```
*
* @param n Number of checks to skip
* @param reason Optional reason for skipping
*/
void skip(int n, const std::string& reason = "") {
tap_skip_n(this, n, reason.c_str());
}
/**
* @brief Skips the next test.
*
* ```cpp
* t.skip("unimplemented");
* t.pass("not done yet");
* // or...
* t.skip();
* t.pass("just skipping");
* ```
*
* ```tap
* ok 1 - not done yet # SKIP unimplemented
* ok 2 - just skipping # SKIP
* ```
*
* @param reason Optional reason for skipping
*/
void skip(const std::string& reason = "") {
skip(1, reason);
}
/**
* @brief Check if a given value is truthy.
*
* All other check types are sugar around this one.
*
* ```cpp
* t.ok(true, "it's true");
* // or...
* t.ok(false);
* ```
*
* ```tap
* ok 1 - it's true
* not ok 2
* ```
*
* @param pass Mark if the checked value is truthy
* @param description Optional description of what was checked
*/
template<typename T>
void ok(T pass, const std::string& description = "") {
tap_ok(this, pass, description.c_str());
}
/**
* @brief Check if the value is falsy.
*
* ```cpp
* t.not_ok(true, "it is falsy");
* // or...
* t.not_ok(false);
* ```
*
* ```tap
* not ok 1 - it is falsy
* ok 2
* ```
*
* @param value Value to check if it is falsy
* @param description Optional description of what was checked
*/
template<typename T>
void not_ok(T value, const std::string& description = "") {
ok(!value, description);
}
/**
* @brief Mark a passed check.
*
* ```cpp
* t.pass("it passed");
* // or...
* t.pass();
* ```
*
* ```tap
* ok 1 - it passed
* ok 2
* ```
*
* @param description Optional description of what was checked
*/
void pass(const std::string& description = "") {
ok(true, description);
}
/**
* @brief Mark a failed check.
*
* ```cpp
* t.fail("it failed");
* // or...
* t.fail();
* ```
*
* ```tap
* not ok 1 - it failed
* not ok 2
* ```
*
* @param description Optional description of what was checked
*/
void fail(const std::string& description = "") {
ok(false, description);
}
/**
* @brief Check if values are equal.
*
* ```cpp
* t.equal(a, b, "values are equal");
* // or...
* t.equal(a, b);
* ```
*
* ```tap
* ok 1 - values are equal
* ok 2
* ```
*
* @param a First value to compare
* @param b Second balue to compare
* @param description Optional description of what was checked
*/
template<typename A, typename B>
void equal(A a, B b, const std::string& description = "") {
ok(a == b, description);
}
/**
* @brief Check if values are not equal.
*
* ```cpp
* t.not_equal(a, b, "values are not equal");
* // or...
* t.not_equal(a, b);
* ```
*
* ```tap
* ok 1 - values are equal
* ok 2
* ```
*
* @param a First value to compare
* @param b Second balue to compare
* @param description Optional description of what was checked
*/
template<typename A, typename B>
void not_equal(A a, B b, const std::string& description = "") {
ok(a != b, description);
}
/**
* @brief End the test document. Will record the plan range if not already set.
*
* ```cpp
* Tap t;
* t.pass("yay!");
* t.end();
* ```
*
* ```tap
* TAP version 13
* ok 1 - yay!
* 1..1
* ```
*
* @return int Return 1 if unskipped failures or count does not match plan
*/
int end() {
return tap_end(this);
}
/**
* @brief Add a named sub-test
*
* ```cpp
* t.test("sub-test", [](Tap& t) {
* tap_pass(t, "it passed");
* });
* ```
*
* ```tap
* # Subtest: sub-test
* ok 1 - it passed
* 1..1
* ok 1 - sub-test
* ```
*
* @param name Test name
* @param fn Test function
*/
void test(const std::string& name, std::function<void(Tap&)> fn) {
struct callback {
std::function<void(Tap&)> fn;
};
callback wrap = {fn};
tap_test(this, name.c_str(), [](tap_t* t) {
callback* wrap = static_cast<callback*>(t->data);
wrap->fn(*static_cast<Tap*>(t));
}, &wrap);
}
};
#endif // __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1900)
#endif // _INCLUDE_TAP_H_