-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfast-d-tests.cc
292 lines (246 loc) · 7.62 KB
/
fast-d-tests.cc
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
#define CATCH_CONFIG_MAIN
#include <stdlib.h> /* srand, rand */
#include <time.h> /* time */
#include "../third-party/catch2/single_include/catch2/catch.hpp"
#include "src/fast-d.h"
typedef std::vector<int> vint;
TEST_CASE("simple-edits-counts") {
vint a = {1, 2, 3, 4, 5};
vint b = {1, 2, 8, 4, 5};
REQUIRE(GetEditDistance(a, b) == 1);
// edit distance should be symetric
REQUIRE(GetEditDistance(b, a) == 1);
// distance of oneself with oneself should be 0
REQUIRE(GetEditDistance(a, a) == 0);
REQUIRE(GetEditDistance(b, b) == 0);
}
TEST_CASE("boundaries-edits-counts") {
vint a = {1, 2, 3, 4, 5};
vint b = {};
REQUIRE(GetEditDistance(a, b) == 5);
// edit distance should be symetric
REQUIRE(GetEditDistance(b, a) == 5);
// distance of oneself with oneself should be 0
REQUIRE(GetEditDistance(a, a) == 0);
REQUIRE(GetEditDistance(b, b) == 0);
}
TEST_CASE("just-one-target-edits-counts") {
vint a = {1, 2, 3, 4, 5};
vint b1 = {1};
vint b2 = {2};
vint b3 = {3};
vint b4 = {4};
vint b5 = {5};
REQUIRE(GetEditDistance(a, b1) == 4);
REQUIRE(GetEditDistance(a, b2) == 4);
REQUIRE(GetEditDistance(a, b3) == 4);
REQUIRE(GetEditDistance(a, b4) == 4);
REQUIRE(GetEditDistance(a, b5) == 4);
}
TEST_CASE("single-edits-counts") {
vint a = {1, 2, 3, 4, 5};
vint b = {1, 1, 2, 3, 4, 5};
REQUIRE(GetEditDistance(b, a) == 1);
REQUIRE(GetEditDistance(a, b) == 1);
}
TEST_CASE("left-insert") {
vint va = {1, 2, 3, 4, 5};
vint vb = {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 2, 3, 4, 5};
vint mapA;
vint mapB;
REQUIRE(GetEditDistance(va, mapA, vb, mapB) == 10);
vint vb1 = {8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 1, 2, 3, 4, 5};
REQUIRE(GetEditDistance(va, mapA, vb1, mapB) == 10);
}
TEST_CASE("map-test-A") {
vint a = {1, 2, 3, 4, 5};
vint b = {1, 2, 3, 4, 5};
vint mapA = {-1, -1, -1, -1, -1};
vint mapB = {-1, -1, -1, -1, -1};
REQUIRE(GetEditDistance(a, mapA, b, mapB) == 0);
for (int i = 0; i < 5; i++) {
REQUIRE(mapA[i] == 1);
REQUIRE(mapB[i] == 1);
}
}
TEST_CASE("map-test-B") {
vint a = {1, 2, 3, 4, 5};
vint b = {1, 4, 5};
vint mapA = {-1, -1, -1, -1, -1};
vint mapB = {-1, 1, -1};
REQUIRE(GetEditDistance(a, mapA, b, mapB) == 2);
REQUIRE(mapA[0] == 1);
REQUIRE(mapA[1] == -1);
REQUIRE(mapA[2] == -1);
REQUIRE(mapA[3] == 1);
REQUIRE(mapA[4] == 1);
REQUIRE(mapB[0] == 1);
REQUIRE(mapB[1] == 1);
REQUIRE(mapB[2] == 1);
}
TEST_CASE("map-test-C") {
vint a = {1, 2, 3, 4, 5};
vint b = {10, 20, 30, 40, 50};
vint mapA = {-1, -1, -1, -1, -1};
// vint mapB = {-1, -1, -1, -1, -1};
vint mapB;
REQUIRE(GetEditDistance(a, mapA, b, mapB) == 5);
for (int i = 0; i < 5; i++) {
REQUIRE(mapA[i] == -1);
REQUIRE(mapB[i] == -1);
}
}
TEST_CASE("map-repeat") {
vint a = {1, 2, 3, 4, 5, 1, 2, 7, 8, 1, 2, 3};
vint b = {1, 2, 3, 5, 9, 1, 2, 7, 8, 1, 2};
vint mapA;
vint mapB;
int dist = GetEditDistance(a, mapA, b, mapB);
REQUIRE(mapA.size() == a.size());
REQUIRE(mapB.size() == b.size());
for (int i = 0; i < a.size(); i++) {
std::cout << " a[" << i << "] = " << a[i] << ", mapA[" << i << "] = " << mapA[i] << std::endl;
}
for (int i = 0; i < b.size(); i++) {
std::cout << " b[" << i << "] = " << b[i] << ", mapB[" << i << "] = " << mapB[i] << std::endl;
}
REQUIRE(dist == 3);
}
TEST_CASE("test-long-seq") {
srand(time(NULL));
int ins_rate = 20; // over 1k, so 2%
int del_rate = 20; // over 1k, so 2%
int sub_rate = 50; // over 1k, so 5%
int retries_left = 5;
int number_of_edits = 0;
int edit_distance = 0;
// for stochastic reasons, it is possible that the naive
// ins + sub + del count gets off a little. We give ourselves
// few attempts to validate that this test passes.
while (retries_left-- > 0) {
vint a;
vint b;
vint mapA;
vint mapB;
number_of_edits = 0;
int num_ins = 0;
int num_del = 0;
int num_sub = 0;
for (int i = 0; i < 1000; i++) {
int ai = rand() % 32000 + rand() % 32000 + rand() % 32000 + rand() % 32000 + 1;
a.push_back(ai);
// if you want to debug the test
// std::cout << "a[" << i << "] = " << a[i] << std::endl;
int extra_char = a[i] + rand() % 32000 + 40000;
int f = rand() % 1000;
if (f < ins_rate) {
b.push_back(extra_char);
b.push_back(a[i]);
number_of_edits++;
num_ins++;
} else if (f < ins_rate + del_rate) {
// let's skip this one
number_of_edits++;
num_del++;
} else if (f < ins_rate + del_rate + sub_rate) {
b.push_back(extra_char);
number_of_edits++;
num_sub++;
} else {
b.push_back(a[i]);
}
}
// if you want to debug the test
// for (int j = 0; j < b.size(); j++) {
// std::cout << "b[" << j << "] = " << b[j] << std::endl;
// }
std::cout << " We have " << num_ins << " insertions, " << num_del << " deletions and " << num_sub
<< " substitution for a total of " << number_of_edits << " edits" << std::endl;
edit_distance = GetEditDistance(a, mapA, b, mapB);
if (edit_distance != number_of_edits) {
std::cout << "a= " << a[0];
for (int i = 1; i < a.size(); i++) {
std::cout << " " << a[i];
}
std::cout << std::endl;
std::cout << "b= " << b[0];
for (int i = 1; i < b.size(); i++) {
std::cout << " " << b[i];
}
std::cout << std::endl;
continue;
} else {
break;
}
}
REQUIRE(edit_distance == number_of_edits);
}
TEST_CASE("test-long-seq-editonly") {
srand(time(NULL));
int ins_rate = 20; // over 1k, so 2%
int del_rate = 20; // over 1k, so 2%
int sub_rate = 50; // over 1k, so 5%
int retries_left = 5;
int number_of_edits = 0;
int edit_distance = 0;
// for stochastic reasons, it is possible that the naive
// ins + sub + del count gets off a little. We give ourselves
// few attempts to validate that this test passes.
while (retries_left-- > 0) {
vint a;
vint b;
vint mapA;
vint mapB;
number_of_edits = 0;
int num_ins = 0;
int num_del = 0;
int num_sub = 0;
for (int i = 0; i < 1000; i++) {
int ai = rand() % 32000 + rand() % 32000 + rand() % 32000 + rand() % 32000 + 1;
a.push_back(ai);
// if you want to debug the test
// std::cout << "a[" << i << "] = " << a[i] << std::endl;
int extra_char = a[i] + rand() % 32000 + 40000;
int f = rand() % 1000;
if (f < ins_rate) {
b.push_back(extra_char);
b.push_back(a[i]);
number_of_edits++;
num_ins++;
} else if (f < ins_rate + del_rate) {
// let's skip this one
number_of_edits++;
num_del++;
} else if (f < ins_rate + del_rate + sub_rate) {
b.push_back(extra_char);
number_of_edits++;
num_sub++;
} else {
b.push_back(a[i]);
}
}
// if you want to debug the test
// for (int j = 0; j < b.size(); j++) {
// std::cout << "b[" << j << "] = " << b[j] << std::endl;
// }
std::cout << " We have " << num_ins << " insertions, " << num_del << " deletions and " << num_sub
<< " substitution for a total of " << number_of_edits << " edits" << std::endl;
edit_distance = GetEditDistanceOnly(a, b);
if (edit_distance != number_of_edits) {
std::cout << "a= " << a[0];
for (int i = 1; i < a.size(); i++) {
std::cout << " " << a[i];
}
std::cout << std::endl;
std::cout << "b= " << b[0];
for (int i = 1; i < b.size(); i++) {
std::cout << " " << b[i];
}
std::cout << std::endl;
continue;
} else {
break;
}
}
REQUIRE(edit_distance == number_of_edits);
}