-
Notifications
You must be signed in to change notification settings - Fork 7
/
op_test.h
98 lines (85 loc) · 2.86 KB
/
op_test.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
/*
* OpenPairing is an implementation of a cryptographic pairing over OpenSSL
* Copyright (C) 2015 MIRACL
*
* This file is part of OpenPairing. OpenPairing is legal property of its
* developers, whose names are not listed here. Please refer to the COPYRIGHT
* file for contact information.
*
* OpenPairing is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* OpenPairing is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with OpenPairing. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file
*
* Interface of useful routines for testing.
*/
#ifndef OP_TEST_H
#define OP_TEST_H
#include <string.h>
/*============================================================================*/
/* Macro definitions */
/*============================================================================*/
/**
* Runs a new benchmark once.
*
* @param[in] P - the property description.
*/
#define TEST_ONCE(P) \
printf("Testing if " P "...%*c", (64 - strlen(P)), ' '); \
/**
* Tests a sequence of commands to see if they respect some property.
*
* @param[in] P - the property description.
*/
#define TEST_BEGIN(P) \
printf("Testing if " P "...%*c", (64 - strlen(P)), ' '); \
for (int i = 0; i < TESTS; i++) \
/**
* Asserts a condition.
*
* If the condition is not satisfied, a unconditional jump is made to the passed
* label.
*
* @param[in] C - the condition to assert.
* @param[in] LABEL - the label to jump if the condition is no satisfied.
*/
#define TEST_ASSERT(C, LABEL) \
if (!(C)) { \
TEST_fail(); \
printf("(at "); \
printf(__FILE__); \
printf(":%d)\n", __LINE__); \
goto LABEL; \
} \
/**
* Finalizes a test printing the test result.
*/
#define TEST_END \
TEST_pass() \
/**
* Number of executed tests.
*/
#define TESTS 100
/*============================================================================*/
/* Function prototypes */
/*============================================================================*/
/**
* Prints a string indicating that the test failed.
*/
void TEST_fail(void);
/**
* Prints a string indicating that the test passed.
*/
void TEST_pass(void);
#endif /* !OP_TEST_H */