forked from fragglet/c-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-compare-functions.c
208 lines (144 loc) · 4.7 KB
/
test-compare-functions.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
/*
Copyright (c) 2005-2008, Simon Howard
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* Test cases for compare functions */
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "alloc-testing.h"
#include "framework.h"
#include "compare-int.h"
#include "compare-pointer.h"
#include "compare-string.h"
void test_int_compare(void)
{
int a = 4;
int b = 8;
int c = 4;
/* If first is less than second, result is negative) */
assert(int_compare(&a, &b) < 0);
/* If first is more than second, result is positive) */
assert(int_compare(&b, &a) > 0);
/* If both are equal, result is zero */
assert(int_compare(&a, &c) == 0);
}
void test_int_equal(void)
{
int a = 4;
int b = 8;
int c = 4;
/* Returns non-zero (true) if both are equal */
assert(int_equal(&a, &c) != 0);
/* Returns zero (false) if not equal) */
assert(int_equal(&a, &b) == 0);
}
void test_pointer_compare(void)
{
int array[5];
/* Negative if first argument is a lower memory address than
* the second */
assert(pointer_compare(&array[0], &array[4]) < 0);
/* Positive if the first argument is a higher memory address
* than the second */
assert(pointer_compare(&array[3], &array[2]) > 0);
/* Zero if the two arguments are equal */
assert(pointer_compare(&array[4], &array[4]) == 0);
}
void test_pointer_equal(void)
{
int a, b;
/* Non-zero (true) if the two pointers are equal */
assert(pointer_equal(&a, &a) != 0);
/* Zero (false) if the two pointers are not equal */
assert(pointer_equal(&a, &b) == 0);
}
void test_string_compare(void)
{
char test1[] = "Apple";
char test2[] = "Orange";
char test3[] = "Apple";
/* Negative if first argument should be sorted before the second */
assert(string_compare(test1, test2) < 0);
/* Positive if the second argument should be sorted before the first */
assert(string_compare(test2, test1) > 0);
/* Zero if the two arguments are equal */
assert(string_compare(test1, test3) == 0);
}
void test_string_equal(void)
{
char test1[] = "this is a test string";
char test2[] = "this is a test string ";
char test3[] = "this is a test strin";
char test4[] = "this is a test strinG";
char test5[] = "this is a test string";
/* Non-zero (true) if the two strings are equal */
assert(string_equal(test1, test5) != 0);
/* Zero (false) if the two strings are different */
/* Check that length affects the result */
assert(string_equal(test1, test2) == 0);
assert(string_equal(test1, test3) == 0);
/* Case sensitive */
assert(string_equal(test1, test4) == 0);
}
void test_string_nocase_compare(void)
{
char test1[] = "Apple";
char test2[] = "Orange";
char test3[] = "Apple";
char test4[] = "Alpha";
char test5[] = "bravo";
char test6[] = "Charlie";
/* Negative if first argument should be sorted before the second */
assert(string_nocase_compare(test1, test2) < 0);
/* Positive if the second argument should be sorted before the first */
assert(string_nocase_compare(test2, test1) > 0);
/* Zero if the two arguments are equal */
assert(string_nocase_compare(test1, test3) == 0);
/* Check ordering is independent of case */
assert(string_nocase_compare(test4, test5) < 0);
assert(string_nocase_compare(test5, test6) < 0);
}
void test_string_nocase_equal(void)
{
char test1[] = "this is a test string";
char test2[] = "this is a test string ";
char test3[] = "this is a test strin";
char test4[] = "this is a test strinG";
char test5[] = "this is a test string";
/* Non-zero (true) if the two strings are equal */
assert(string_nocase_equal(test1, test5) != 0);
/* Zero (false) if the two strings are different */
/* Check that length affects the result */
assert(string_nocase_equal(test1, test2) == 0);
assert(string_nocase_equal(test1, test3) == 0);
/* Case insensitive */
assert(string_nocase_equal(test1, test4) != 0);
}
static UnitTestFunction tests[] = {
test_int_compare,
test_int_equal,
test_pointer_compare,
test_pointer_equal,
test_string_compare,
test_string_equal,
test_string_nocase_compare,
test_string_nocase_equal,
NULL
};
int main(int argc, char *argv[])
{
run_tests(tests);
return 0;
}