-
Notifications
You must be signed in to change notification settings - Fork 3
/
csa_byte_test.cpp
307 lines (280 loc) · 9.71 KB
/
csa_byte_test.cpp
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
#include "sdsl/suffix_arrays.hpp"
#include "sdsl/coder.hpp"
#include "gtest/gtest.h"
#include <vector>
#include <string>
namespace
{
using namespace sdsl;
using namespace std;
typedef int_vector<>::size_type size_type;
tMSS test_case_file_map;
string test_file;
string temp_file;
string temp_dir;
bool in_memory;
template<class T>
class csa_byte_test : public ::testing::Test { };
using testing::Types;
typedef Types<
csa_wt<>,
csa_sada<>,
csa_sada<enc_vector<coder::fibonacci>>,
csa_sada<enc_vector<coder::elias_gamma>>,
csa_wt<wt_huff<>, 8, 16, text_order_sa_sampling<>>,
csa_wt<wt_huff<>,32,32,fuzzy_sa_sampling<>>,
csa_wt<wt_huff<>,32,32,fuzzy_sa_sampling<bit_vector, bit_vector>, fuzzy_isa_sampling_support<>>,
csa_wt<wt_huff<>,32,32,fuzzy_sa_sampling<>, fuzzy_isa_sampling_support<>>,
csa_wt<wt_huff<>,32,32,text_order_sa_sampling<>,isa_sampling<>>,
csa_wt<wt_huff<>,32,32,text_order_sa_sampling<>,text_order_isa_sampling_support<>>,
csa_sada<enc_vector<>, 32,32,text_order_sa_sampling<>,isa_sampling<>>,
csa_sada<enc_vector<>, 32,32,text_order_sa_sampling<>,text_order_isa_sampling_support<>>,
csa_wt<wt_huff<>, 8, 16, sa_order_sa_sampling<>>,
csa_wt<wt_huff<>, 8, 16, sa_order_sa_sampling<>, isa_sampling<>, succinct_byte_alphabet<bit_vector, rank_support_v<>, select_support_mcl<>>>,
csa_wt<wt_huff<>, 8, 16, sa_order_sa_sampling<>, isa_sampling<>, succinct_byte_alphabet<>>,
csa_bitcompressed<>
> Implementations;
TYPED_TEST_CASE(csa_byte_test, Implementations);
TYPED_TEST(csa_byte_test, create_and_store_test)
{
static_assert(sdsl::util::is_regular<TypeParam>::value, "Type is not regular");
TypeParam csa;
cache_config config(false, temp_dir, util::basename(test_file));
construct(csa, test_file, config, 1);
test_case_file_map = config.file_map;
ASSERT_TRUE(store_to_file(csa, temp_file));
}
//! Test backward_search
TYPED_TEST(csa_byte_test, backward_search)
{
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<8> text;
ASSERT_TRUE(load_vector_from_file(text, test_file, 1));
auto expected_interval_member = csa.psi[0];
size_type count, l_res, r_res;
// search for full text
count = backward_search(csa, 0, csa.size() - 1, text.begin(), text.end(), l_res, r_res);
ASSERT_EQ((size_type)1, count);
ASSERT_EQ(l_res, expected_interval_member);
ASSERT_EQ(r_res, expected_interval_member);
// search for short phrase
text.resize(min((int_vector<8>::size_type)4, text.size()));
count = backward_search(csa, 0, csa.size() - 1, text.begin(), text.end(), l_res, r_res);
ASSERT_LE((size_type)1, count);
ASSERT_LE(l_res, expected_interval_member);
ASSERT_GE(r_res, expected_interval_member);
// search for empty phrase
text.resize(0);
count = backward_search(csa, 0, csa.size() - 1, text.begin(), text.end(), l_res, r_res);
ASSERT_EQ(csa.size(), count);
ASSERT_EQ(l_res, (size_type)0);
ASSERT_EQ(r_res, (size_type)(csa.size() - 1));
}
//! Test forward_search
TYPED_TEST(csa_byte_test, forward_search)
{
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<8> text;
ASSERT_TRUE(load_vector_from_file(text, test_file, 1));
auto expected_interval_member = csa.psi[0];
size_type count, l_res, r_res;
// search for full text
count = forward_search(csa, 0, csa.size() - 1, text.begin(), text.end(), l_res, r_res);
ASSERT_EQ((size_type)1, count);
ASSERT_EQ(l_res, expected_interval_member);
ASSERT_EQ(r_res, expected_interval_member);
// search for short phrase
text.resize(min((int_vector<8>::size_type)4, text.size()));
count = forward_search(csa, 0, csa.size() - 1, text.begin(), text.end(), l_res, r_res);
ASSERT_LE((size_type)1, count);
ASSERT_LE(l_res, expected_interval_member);
ASSERT_GE(r_res, expected_interval_member);
// search for empty phrase
text.resize(0);
count = forward_search(csa, 0, csa.size() - 1, text.begin(), text.end(), l_res, r_res);
ASSERT_EQ(csa.size(), count);
ASSERT_EQ(l_res, (size_type)0);
ASSERT_EQ(r_res, (size_type)(csa.size() - 1));
}
//! Test sigma member
TYPED_TEST(csa_byte_test, sigma)
{
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<8> text;
ASSERT_TRUE(load_vector_from_file(text, test_file, 1));
text.resize(text.size()+1);
text[text.size()-1] = 0; // add 0-character to the end
ASSERT_EQ(text.size(), csa.size());
bit_vector occur(256, 0);
uint16_t sigma = 0;
for (size_type j=0; j<text.size(); ++j) {
if (!occur[text[j]]) {
occur[text[j]] = 1;
++sigma;
}
}
ASSERT_EQ(sigma, csa.sigma);
}
//! Test suffix array access methods
TYPED_TEST(csa_byte_test, sa_access)
{
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<> sa;
load_from_file(sa, test_case_file_map[conf::KEY_SA]);
size_type n = sa.size();
ASSERT_EQ(n, csa.size());
for (size_type j=0; j<n; ++j) {
ASSERT_EQ(sa[j], csa[j])<<" j="<<j;
}
}
//! Test inverse suffix access methods
TYPED_TEST(csa_byte_test, isa_access)
{
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<> isa;
size_type n = 0;
{
int_vector<> sa;
load_from_file(sa, test_case_file_map[conf::KEY_SA]);
n = sa.size();
ASSERT_EQ(n, csa.size());
isa = sa;
for (size_type j=0; j<n; ++j) {
isa[sa[j]] = j;
}
}
for (size_type j=0; j<n; ++j) {
ASSERT_EQ(isa[j], csa.isa[j])<<" j="<<j;
}
}
//! Test text access methods
TYPED_TEST(csa_byte_test, text_access)
{
if (test_case_file_map.find(conf::KEY_TEXT) != test_case_file_map.end()) {
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<8> text;
load_from_file(text, test_case_file_map[conf::KEY_TEXT]);
size_type n = text.size();
ASSERT_EQ(n, csa.size());
for (size_type j=0; j<n; ++j) {
ASSERT_EQ(text[j], csa.text[j])<<" j="<<j;
}
auto len = std::min(csa.size(),
std::max(csa.size()/10, (decltype(csa.size()))20));
auto ex_text = extract(csa, 0, len-1);
for (size_type j=0; j<len; ++j) {
ASSERT_EQ(text[j], (decltype(text[j]))ex_text[j])<<" j="<<j;
}
}
}
//! Test Burrows-Wheeler access methods
TYPED_TEST(csa_byte_test, bwt_access)
{
if (test_case_file_map.find(conf::KEY_BWT) != test_case_file_map.end()) {
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<8> bwt;
load_from_file(bwt, test_case_file_map[conf::KEY_BWT]);
size_type n = bwt.size();
ASSERT_EQ(n, csa.size());
for (size_type j=0; j<n; ++j) {
ASSERT_EQ(bwt[j], csa.bwt[j])<<" j="<<j;
}
}
}
TYPED_TEST(csa_byte_test, f_access)
{
if (test_case_file_map.find(conf::KEY_TEXT) != test_case_file_map.end()) {
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<8> text;
load_from_file(text, test_case_file_map[conf::KEY_TEXT]);
std::sort(begin(text),end(text));
size_type n = text.size();
ASSERT_EQ(n, csa.size());
for (size_type j=0; j<n; j+=200) {
ASSERT_EQ(text[j], csa.F[j])<<" j="<<j;
}
}
}
//! Test Psi access methods
TYPED_TEST(csa_byte_test, psi_access)
{
if (test_case_file_map.find(conf::KEY_PSI) != test_case_file_map.end()) {
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
int_vector<> psi;
load_from_file(psi, test_case_file_map[conf::KEY_PSI]);
size_type n = psi.size();
ASSERT_EQ(n, csa.size());
for (size_type j=0; j<n; ++j) {
ASSERT_EQ(psi[j], csa.psi[j])<<" j="<<j;
}
}
}
//! Test if Psi[LF[i]]=i
TYPED_TEST(csa_byte_test, psi_lf_access)
{
TypeParam csa;
ASSERT_TRUE(load_from_file(csa, temp_file));
for (size_type j=0; j<csa.size(); ++j) {
size_type lf = csa.lf[j];
ASSERT_TRUE(lf < csa.size());
ASSERT_EQ(j, csa.psi[lf])<<" j="<<j;
}
}
//! Test access after swap
TYPED_TEST(csa_byte_test, swap)
{
TypeParam csa1;
ASSERT_TRUE(load_from_file(csa1, temp_file));
TypeParam csa2;
csa1.swap(csa2);
int_vector<> sa;
load_from_file(sa, test_case_file_map[conf::KEY_SA]);
size_type n = sa.size();
ASSERT_EQ(n, csa2.size());
for (size_type j=0; j<n; ++j) {
ASSERT_EQ((typename TypeParam::value_type)sa[j], csa2[j]);
}
}
TYPED_TEST(csa_byte_test, delete_)
{
sdsl::remove(temp_file);
util::delete_all_files(test_case_file_map);
}
} // namespace
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
if (argc < 4) {
// LCOV_EXCL_START
cout << "Usage: " << argv[0] << " test_file temp_file tmp_dir [in-memory]" << endl;
cout << " (1) Generates a CSA out of test_file; stores it in temp_file." << endl;
cout << " Temporary files (SA/BWT/TEXT) are stored in tmp_dir." << endl;
cout << " If `in-memory` is specified, the in-memory construction is tested." << endl;
cout << " (2) Performs tests." << endl;
cout << " (3) Deletes temp_file." << endl;
return 1;
// LCOV_EXCL_STOP
}
test_file = argv[1];
temp_file = argv[2];
temp_dir = argv[3];
in_memory = argc > 4;
if (in_memory) {
temp_dir = "@";
int_vector<8> data;
load_vector_from_file(data, test_file, 1);
test_file = ram_file_name(test_file);
store_to_plain_array<uint8_t>(data, test_file);
temp_file = ram_file_name(temp_file);
}
return RUN_ALL_TESTS();
}