Apache2
abts.h
Go to the documentation of this file.
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements. See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 #include <stdarg.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #ifdef WIN32
26 #include <io.h>
27 #else
28 #include <unistd.h>
29 #endif
30 
31 #ifndef ABTS_H
32 #define ABTS_H
33 
34 #ifndef FALSE
35 #define FALSE 0
36 #endif
37 #ifndef TRUE
38 #define TRUE 1
39 #endif
40 
41 struct sub_suite {
42  char *name;
43  int num_test;
44  int failed;
45  int skipped;
46  int not_run;
47  int not_impl;
48  struct sub_suite *next;
49 };
50 typedef struct sub_suite sub_suite;
51 
52 struct abts_suite {
55 };
56 typedef struct abts_suite abts_suite;
57 
58 struct abts_case {
59  int failed;
60  int skipped;
62 };
63 typedef struct abts_case abts_case;
64 
65 typedef void (*test_func)(abts_case *tc, void *data);
66 
67 #define ADD_SUITE(suite) abts_add_suite(suite, __FILE__);
68 
69 abts_suite *abts_add_suite(abts_suite *suite, const char *suite_name);
70 void abts_run_test(abts_suite *ts, test_func f, void *value);
71 void abts_log_message(const char *fmt, ...);
72 
73 void abts_int_equal(abts_case *tc, const int expected, const int actual, int lineno);
74 void abts_int_nequal(abts_case *tc, const int expected, const int actual, int lineno);
75 void abts_uint_equal(abts_case *tc, const unsigned int expected,
76  const unsigned int actual, int lineno);
77 void abts_uint_nequal(abts_case *tc, const unsigned int expected,
78  const unsigned int actual, int lineno);
79 void abts_long_equal(abts_case *tc, const long expected,
80  const long actual, int lineno);
81 void abts_long_nequal(abts_case *tc, const long expected,
82  const long actual, int lineno);
83 void abts_ulong_equal(abts_case *tc, const unsigned long expected,
84  const unsigned long actual, int lineno);
85 void abts_ulong_nequal(abts_case *tc, const unsigned long expected,
86  const unsigned long actual, int lineno);
87 void abts_llong_equal(abts_case *tc, const long long expected,
88  const long long actual, int lineno);
89 void abts_llong_nequal(abts_case *tc, const long long expected,
90  const long long actual, int lineno);
91 void abts_ullong_equal(abts_case *tc, const unsigned long long expected,
92  const unsigned long long actual, int lineno);
93 void abts_ullong_nequal(abts_case *tc, const unsigned long long expected,
94  const unsigned long long actual, int lineno);
95 void abts_size_equal(abts_case *tc, size_t expected, size_t actual, int lineno);
96 void abts_size_nequal(abts_case *tc, size_t expected, size_t actual, int lineno);
97 void abts_str_equal(abts_case *tc, const char *expected, const char *actual, int lineno);
98 void abts_str_nequal(abts_case *tc, const char *expected, const char *actual,
99  size_t n, int lineno);
100 void abts_ptr_notnull(abts_case *tc, const void *ptr, int lineno);
101 void abts_ptr_equal(abts_case *tc, const void *expected, const void *actual, int lineno);
102 void abts_true(abts_case *tc, int condition, int lineno);
103 void abts_fail(abts_case *tc, const char *message, int lineno);
104 void abts_skip(abts_case *tc, const char *message, int lineno);
105 void abts_not_impl(abts_case *tc, const char *message, int lineno);
106 void abts_assert(abts_case *tc, const char *message, int condition, int lineno);
107 
108 /* Convenience macros. Ryan hates these! */
109 #define ABTS_INT_EQUAL(a, b, c) abts_int_equal(a, b, c, __LINE__)
110 #define ABTS_INT_NEQUAL(a, b, c) abts_int_nequal(a, b, c, __LINE__)
111 #define ABTS_UINT_EQUAL(a, b, c) abts_uint_equal(a, b, c, __LINE__)
112 #define ABTS_UINT_NEQUAL(a, b, c) abts_uint_nequal(a, b, c, __LINE__)
113 #define ABTS_LONG_EQUAL(a, b, c) abts_long_equal(a, b, c, __LINE__)
114 #define ABTS_LONG_NEQUAL(a, b, c) abts_long_nequal(a, b, c, __LINE__)
115 #define ABTS_ULONG_EQUAL(a, b, c) abts_ulong_equal(a, b, c, __LINE__)
116 #define ABTS_ULONG_NEQUAL(a, b, c) abts_ulong_nequal(a, b, c, __LINE__)
117 #define ABTS_LLONG_EQUAL(a, b, c) abts_llong_equal(a, b, c, __LINE__)
118 #define ABTS_LLONG_NEQUAL(a, b, c) abts_llong_nequal(a, b, c, __LINE__)
119 #define ABTS_ULLONG_EQUAL(a, b, c) abts_ullong_equal(a, b, c, __LINE__)
120 #define ABTS_ULLONG_NEQUAL(a, b, c) abts_ullong_nequal(a, b, c, __LINE__)
121 #define ABTS_SIZE_EQUAL(a, b, c) abts_size_equal(a, b, c, __LINE__)
122 #define ABTS_SIZE_NEQUAL(a, b, c) abts_size_nequal(a, b, c, __LINE__)
123 #define ABTS_STR_EQUAL(a, b, c) abts_str_equal(a, b, c, __LINE__)
124 #define ABTS_STR_NEQUAL(a, b, c, d) abts_str_nequal(a, b, c, d, __LINE__)
125 #define ABTS_PTR_NOTNULL(a, b) abts_ptr_notnull(a, b, __LINE__)
126 #define ABTS_PTR_EQUAL(a, b, c) abts_ptr_equal(a, b, c, __LINE__)
127 #define ABTS_TRUE(a, b) abts_true(a, b, __LINE__);
128 #define ABTS_FAIL(a, b) abts_fail(a, b, __LINE__);
129 #define ABTS_NOT_IMPL(a, b) abts_not_impl(a, b, __LINE__);
130 #define ABTS_ASSERT(a, b, c) abts_assert(a, b, c, __LINE__);
131 
132 /* When skipping tests, make a reference to the test data parameter
133  to avoid unused variable warnings. */
134 #define ABTS_SKIP(tc, data, msg) do { \
135  ((void)(data)); \
136  abts_skip((tc), (msg), __LINE__); \
137  } while (0)
138 
141 
142 
143 #endif
144 
145 #ifdef __cplusplus
146 }
147 #endif
148 
void abts_llong_equal(abts_case *tc, const long long expected, const long long actual, int lineno)
void(* test_func)(abts_case *tc, void *data)
Definition: abts.h:65
void abts_skip(abts_case *tc, const char *message, int lineno)
void abts_uint_nequal(abts_case *tc, const unsigned int expected, const unsigned int actual, int lineno)
void abts_ullong_equal(abts_case *tc, const unsigned long long expected, const unsigned long long actual, int lineno)
void abts_run_test(abts_suite *ts, test_func f, void *value)
void abts_ullong_nequal(abts_case *tc, const unsigned long long expected, const unsigned long long actual, int lineno)
abts_suite * run_tests(abts_suite *suite)
void abts_ptr_notnull(abts_case *tc, const void *ptr, int lineno)
void abts_not_impl(abts_case *tc, const char *message, int lineno)
void abts_size_nequal(abts_case *tc, size_t expected, size_t actual, int lineno)
void abts_ulong_nequal(abts_case *tc, const unsigned long expected, const unsigned long actual, int lineno)
void abts_true(abts_case *tc, int condition, int lineno)
void abts_long_equal(abts_case *tc, const long expected, const long actual, int lineno)
void abts_str_equal(abts_case *tc, const char *expected, const char *actual, int lineno)
void abts_str_nequal(abts_case *tc, const char *expected, const char *actual, size_t n, int lineno)
void abts_ptr_equal(abts_case *tc, const void *expected, const void *actual, int lineno)
void abts_fail(abts_case *tc, const char *message, int lineno)
abts_suite * abts_add_suite(abts_suite *suite, const char *suite_name)
void abts_long_nequal(abts_case *tc, const long expected, const long actual, int lineno)
void abts_uint_equal(abts_case *tc, const unsigned int expected, const unsigned int actual, int lineno)
void abts_ulong_equal(abts_case *tc, const unsigned long expected, const unsigned long actual, int lineno)
void abts_log_message(const char *fmt,...)
void abts_llong_nequal(abts_case *tc, const long long expected, const long long actual, int lineno)
void abts_size_equal(abts_case *tc, size_t expected, size_t actual, int lineno)
abts_suite * run_tests1(abts_suite *suite)
void abts_assert(abts_case *tc, const char *message, int condition, int lineno)
void abts_int_equal(abts_case *tc, const int expected, const int actual, int lineno)
void abts_int_nequal(abts_case *tc, const int expected, const int actual, int lineno)
Definition: abts.h:58
int failed
Definition: abts.h:59
sub_suite * suite
Definition: abts.h:61
int skipped
Definition: abts.h:60
Definition: abts.h:52
sub_suite * tail
Definition: abts.h:54
sub_suite * head
Definition: abts.h:53
Definition: abts.h:41
char * name
Definition: abts.h:42
int failed
Definition: abts.h:44
int not_impl
Definition: abts.h:47
int num_test
Definition: abts.h:43
struct sub_suite * next
Definition: abts.h:48
int not_run
Definition: abts.h:46
int skipped
Definition: abts.h:45