forked from openPMD/openPMD-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuxiliaryTest.cpp
More file actions
540 lines (470 loc) · 16.1 KB
/
AuxiliaryTest.cpp
File metadata and controls
540 lines (470 loc) · 16.1 KB
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
/* Copyright 2025 Axel Huebl, Fabian Koller, Franz Poeschel, Luca Fedeli
*
* This file is part of openPMD-api.
*
* openPMD-api is free software: you can redistribute it and/or modify
* it under the terms of of either the GNU General Public License or
* the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* openPMD-api 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 General Public License and the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* and the GNU Lesser General Public License along with openPMD-api.
* If not, see <http://www.gnu.org/licenses/>.
*/
// expose private and protected members for invasive testing
#if openPMD_USE_INVASIVE_TESTS
#define OPENPMD_private public:
#define OPENPMD_protected public:
#endif
#include "openPMD/Dataset.hpp"
#include "openPMD/IO/AbstractIOHandler.hpp"
#include "openPMD/IO/AbstractIOHandlerHelper.hpp"
#include "openPMD/auxiliary/DerefDynamicCast.hpp"
#include "openPMD/auxiliary/Filesystem.hpp"
#include "openPMD/auxiliary/StringManip.hpp"
#include "openPMD/auxiliary/Variant.hpp"
#include "openPMD/backend/Attributable.hpp"
#include "openPMD/backend/Container.hpp"
#include "openPMD/backend/ContainerImpl.tpp"
#include "openPMD/backend/Variant_internal.hpp"
#include "openPMD/backend/Writable.hpp"
#include "openPMD/config.hpp"
#include <catch2/catch_test_macros.hpp>
#include <array>
#include <exception>
#include <fstream>
#include <iostream>
#include <string>
#include <variant>
#include <vector>
using namespace openPMD;
namespace openPMD::test
{
struct TestHelper : public Attributable
{
TestHelper()
{
writable().IOHandler =
std::make_shared<std::optional<std::unique_ptr<AbstractIOHandler>>>(
createIOHandler(
std::nullopt, ".", Access::CREATE, Format::JSON, ".json"));
}
};
} // namespace openPMD::test
TEST_CASE("deref_cast_test", "[auxiliary]")
{
using namespace auxiliary;
struct A
{
double m_x;
A(double x) : m_x(x)
{}
virtual ~A() = default;
};
struct B : virtual A
{
B(double x) : A(x)
{}
};
struct C
{
float m_x;
};
B const value = {123.45};
B const *const ptr = &value;
// NOLINTNEXTLINE(performance-unnecessary-copy-initialization)
auto const a = deref_dynamic_cast<A const>(ptr);
auto const &ra = deref_dynamic_cast<A const>(ptr);
(void)a;
(void)ra;
REQUIRE_THROWS_AS(deref_dynamic_cast<C const>(ptr), std::runtime_error);
A *const nptr = nullptr;
REQUIRE_THROWS_AS(deref_dynamic_cast<B>(nptr), std::runtime_error);
}
TEST_CASE("string_test", "[auxiliary]")
{
using namespace auxiliary;
std::string s =
"Man muss noch Chaos in sich haben, "
"um einen tanzenden Stern gebaeren zu koennen.";
REQUIRE(starts_with(s, 'M'));
REQUIRE(starts_with(s, "Man"));
REQUIRE(starts_with(s, "Man muss noch"));
REQUIRE(!starts_with(s, ' '));
REQUIRE(ends_with(s, '.'));
REQUIRE(ends_with(s, "koennen."));
REQUIRE(ends_with(s, "gebaeren zu koennen."));
REQUIRE(contains(s, 'M'));
REQUIRE(contains(s, '.'));
REQUIRE(contains(s, "noch Chaos"));
REQUIRE(!contains(s, "foo"));
REQUIRE("String" == replace_first("string", "s", "S"));
REQUIRE("sTRING" == replace_first("string", "tring", "TRING"));
REQUIRE("string" == replace_first("string", " ", "_"));
REQUIRE(
"strinGstringstring" == replace_first("stringstringstring", "g", "G"));
REQUIRE(
"#stringstring" == replace_first("stringstringstring", "string", "#"));
REQUIRE(
"stringstringstrinG" == replace_last("stringstringstring", "g", "G"));
REQUIRE(
"stringstring#" == replace_last("stringstringstring", "string", "#"));
REQUIRE("/normal/path" == replace_all("////normal//////path", "//", "/"));
std::vector<std::string> expected1{"0", "string", " ", "1234", "te st"};
std::vector<std::string> expected2{
"0_DELIM_", "string_DELIM_", " _DELIM_", "1234_DELIM_", "te st_DELIM_"};
std::vector<std::string> expected3{"path", "to", "relevant", "data"};
std::string s2 =
"_DELIM_0_DELIM_string_DELIM_ _DELIM_1234_DELIM_te st_DELIM_";
REQUIRE(expected1 == split(s2, "_DELIM_", false));
REQUIRE(expected2 == split(s2, "_DELIM_", true));
REQUIRE(expected3 == split("/path/to/relevant/data/", "/"));
REQUIRE(
"stringstringstring" ==
strip("\t string\tstring string\0", {'\0', '\t', ' '}));
REQUIRE("stringstringstring" == strip("stringstringstring", {}));
REQUIRE("1,2,3,4" == join({"1", "2", "3", "4"}, ","));
REQUIRE("1234" == join({"1", "2", "3", "4"}, ""));
REQUIRE("" == join({}, ","));
REQUIRE("1" == join({"1"}, ","));
REQUIRE("1" == join({"1"}, ""));
REQUIRE("1,2" == join({"1", "2"}, ","));
}
namespace openPMD::test
{
struct S : public TestHelper
{
S() : TestHelper()
{}
};
} // namespace openPMD::test
TEST_CASE("container_default_test", "[auxiliary]")
{
#if openPMD_USE_INVASIVE_TESTS
Container<openPMD::test::S> c = Container<openPMD::test::S>();
c.writable().IOHandler =
std::make_shared<std::optional<std::unique_ptr<AbstractIOHandler>>>(
createIOHandler(
std::nullopt, ".", Access::CREATE, Format::JSON, ".json"));
REQUIRE(c.empty());
REQUIRE(c.erase("nonExistentKey") == false);
#else
std::cerr << "Invasive tests not enabled. Hierarchy is not visible.\n";
#endif
}
namespace openPMD::test
{
struct structure : public TestHelper
{
structure() : TestHelper()
{}
std::string string_ = "Hello, world!";
int int_ = 42;
float float_ = 3.14f;
[[nodiscard]] std::string text() const
{
return std::get<std::string>(
getAttribute("text").getVariant<attribute_types>());
}
structure &setText(std::string newText)
{
setAttribute("text", std::move(newText));
return *this;
}
};
} // namespace openPMD::test
TEST_CASE("container_retrieve_test", "[auxiliary]")
{
#if openPMD_USE_INVASIVE_TESTS
using structure = openPMD::test::structure;
Container<structure> c = Container<structure>();
c.writable().IOHandler =
std::make_shared<std::optional<std::unique_ptr<AbstractIOHandler>>>(
createIOHandler(
std::nullopt, ".", Access::CREATE, Format::JSON, ".json"));
structure s;
std::string text =
"The openPMD standard, short for open standard for particle-mesh data "
"files is not a file format per se. It is a standard for meta data and "
"naming schemes.";
s.setText(text);
c["entry"] = s;
REQUIRE(c["entry"].string_ == "Hello, world!");
REQUIRE(c["entry"].int_ == 42);
REQUIRE(c["entry"].float_ == 3.14f);
REQUIRE(c["entry"].text() == text);
REQUIRE(s.text() == text);
structure s2 = c["entry"];
REQUIRE(s2.string_ == "Hello, world!");
REQUIRE(s2.int_ == 42);
REQUIRE(s2.float_ == 3.14f);
REQUIRE(s2.text() == text);
REQUIRE(c["entry"].text() == text);
s2.string_ = "New string";
s2.int_ = -1;
s2.float_ = 0.0f;
text = "New text";
s2.setText(text);
c["entry"] = s2;
REQUIRE(c["entry"].string_ == "New string");
REQUIRE(c["entry"].int_ == -1);
REQUIRE(c["entry"].float_ == 0.0f);
REQUIRE(c["entry"].text() == text);
REQUIRE(s2.text() == text);
s = c["entry"];
REQUIRE(s.string_ == "New string");
REQUIRE(s.int_ == -1);
REQUIRE(s.float_ == 0.0f);
REQUIRE(s.text() == text);
REQUIRE(c["entry"].text() == text);
text = "Different text";
c["entry"].setText(text);
REQUIRE(s.text() == text);
REQUIRE(c["entry"].text() == text);
text = "Also different text";
s.setText(text);
REQUIRE(s.text() == text);
REQUIRE(c["entry"].text() == text);
#else
std::cerr << "Invasive tests not enabled. Hierarchy is not visible.\n";
#endif
}
namespace openPMD::test
{
struct Widget : public TestHelper
{
Widget() : TestHelper()
{}
Widget(int) : TestHelper()
{}
};
} // namespace openPMD::test
TEST_CASE("container_access_test", "[auxiliary]")
{
#if openPMD_USE_INVASIVE_TESTS
using Widget = openPMD::test::Widget;
Container<Widget> c = Container<Widget>();
c.writable().IOHandler =
std::make_shared<std::optional<std::unique_ptr<AbstractIOHandler>>>(
createIOHandler(
std::nullopt, ".", Access::CREATE, Format::JSON, ".json"));
c["1firstWidget"] = Widget(0);
REQUIRE(c.size() == 1);
c["1firstWidget"] = Widget(1);
REQUIRE(c.size() == 1);
c["2secondWidget"] = Widget(2);
c["3thirdWidget"] = Widget(3);
c["4fourthWidget"] = Widget(4);
c["5fifthWidget"] = Widget(5);
REQUIRE(c.size() == 5);
REQUIRE(c.erase("1firstWidget") == true);
REQUIRE(c.size() == 4);
REQUIRE(c.erase("nonExistentWidget") == false);
REQUIRE(c.size() == 4);
REQUIRE(c.erase("2secondWidget") == true);
REQUIRE(c.size() == 3);
REQUIRE(c.erase(c.find("5fifthWidget")) == c.end());
REQUIRE(c.size() == 2);
REQUIRE(c.erase(c.find("3thirdWidget")) == c.find("4fourthWidget"));
REQUIRE(c.size() == 1);
REQUIRE(c.erase(c.find("4fourthWidget")) == c.end());
REQUIRE(c.size() == 0);
REQUIRE(c.empty());
#else
std::cerr << "Invasive tests not enabled. Hierarchy is not visible.\n";
#endif
}
TEST_CASE("attributable_default_test", "[auxiliary]")
{
Attributable a;
REQUIRE(a.numAttributes() == 0);
}
namespace openPMD::test
{
struct AttributedWidget : public TestHelper
{
AttributedWidget() : TestHelper()
{}
attribute_types get(std::string const &key)
{
return getAttribute(key).getVariant<attribute_types>();
}
};
} // namespace openPMD::test
TEST_CASE("attributable_access_test", "[auxiliary]")
{
using AttributedWidget = openPMD::test::AttributedWidget;
AttributedWidget a = AttributedWidget();
a.setAttribute("key", std::string("value"));
REQUIRE(a.numAttributes() == 1);
REQUIRE(std::get<std::string>(a.get("key")) == "value");
a.setAttribute("key", std::string("newValue"));
REQUIRE(a.numAttributes() == 1);
REQUIRE(std::get<std::string>(a.get("key")) == "newValue");
using array_t = std::array<double, 7>;
array_t arr{{1, 2, 3, 4, 5, 6, 7}};
a.setAttribute("array", arr);
REQUIRE(a.numAttributes() == 2);
REQUIRE(std::get<array_t>(a.get("array")) == arr);
REQUIRE(a.deleteAttribute("nonExistentKey") == false);
REQUIRE(a.numAttributes() == 2);
REQUIRE(a.deleteAttribute("key") == true);
REQUIRE(a.numAttributes() == 1);
REQUIRE(a.deleteAttribute("array") == true);
REQUIRE(a.numAttributes() == 0);
a.setComment("This is a comment");
REQUIRE(a.comment() == "This is a comment");
REQUIRE(a.numAttributes() == 1);
}
namespace openPMD::test
{
struct Dotty : public TestHelper
{
Dotty() : TestHelper()
{
setAtt1(1);
setAtt2(2);
setAtt3("3");
}
[[nodiscard]] int att1() const
{
return std::get<int>(
getAttribute("att1").getVariant<attribute_types>());
}
[[nodiscard]] double att2() const
{
return std::get<double>(
getAttribute("att2").getVariant<attribute_types>());
}
[[nodiscard]] std::string att3() const
{
return std::get<std::string>(
getAttribute("att3").getVariant<attribute_types>());
}
Dotty &setAtt1(int i)
{
setAttribute("att1", i);
return *this;
}
Dotty &setAtt2(double d)
{
setAttribute("att2", d);
return *this;
}
Dotty &setAtt3(std::string s)
{
setAttribute("att3", std::move(s));
return *this;
}
};
} // namespace openPMD::test
TEST_CASE("dot_test", "[auxiliary]")
{
openPMD::test::Dotty d;
REQUIRE(d.att1() == 1);
REQUIRE(d.att2() == static_cast<double>(2));
REQUIRE(d.att3() == "3");
d.setAtt1(10).setAtt2(20).setAtt3("30");
REQUIRE(d.att1() == 10);
REQUIRE(d.att2() == static_cast<double>(20));
REQUIRE(d.att3() == "30");
}
TEST_CASE("filesystem_test", "[auxiliary]")
{
using auxiliary::create_directories;
using auxiliary::file_exists;
using auxiliary::directory_exists;
using auxiliary::list_directory;
using auxiliary::remove_directory;
using auxiliary::remove_file;
auto contains = [](std::vector<std::string> const &entries,
std::string const &path) -> bool {
return std::find(entries.cbegin(), entries.cend(), path) !=
entries.cend();
};
auto random_string = [](std::string::size_type length) -> std::string {
auto randchar = []() -> char {
char const charset[] =
"0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
size_t const max_index = (sizeof(charset) - 1);
return charset[rand() % max_index];
};
std::string str(length, 0);
std::generate_n(str.begin(), length, randchar);
return str;
};
#ifdef _WIN32
REQUIRE(directory_exists("C:\\"));
REQUIRE(directory_exists("C:\\Program Files"));
REQUIRE(directory_exists("C:\\Windows"));
REQUIRE(!directory_exists("C:\\nonexistent_folder_in_C_drive"));
auto dir_entries = list_directory("C:\\");
REQUIRE(!dir_entries.empty());
REQUIRE(contains(dir_entries, "Program Files"));
REQUIRE(contains(dir_entries, "Windows"));
REQUIRE(!contains(dir_entries, "nonexistent_folder_in_C_drive"));
std::string new_directory = random_string(10);
while (directory_exists(new_directory))
new_directory = random_string(10);
REQUIRE(create_directories(new_directory));
REQUIRE(create_directories(new_directory));
REQUIRE(directory_exists(new_directory));
std::string new_file = new_directory + "\\abc.txt";
std::fstream fs;
fs.open(new_file, std::ios::out);
fs.close();
REQUIRE(file_exists(new_file));
REQUIRE(remove_file(new_file));
REQUIRE(!file_exists(new_file));
REQUIRE(remove_directory(new_directory));
REQUIRE(!directory_exists(new_directory));
REQUIRE(!remove_directory(new_directory));
REQUIRE(!remove_file(".\\nonexistent_file_in_cmake_bin_directory"));
#else
REQUIRE(directory_exists("/"));
// REQUIRE(directory_exists("/boot"));
// REQUIRE(directory_exists("/etc"));
// REQUIRE(directory_exists("/home"));
REQUIRE(!directory_exists("/nonexistent_folder_in_root_directory"));
REQUIRE(directory_exists("../bin"));
REQUIRE(file_exists("./AuxiliaryTests"));
REQUIRE(!file_exists("./nonexistent_file_in_cmake_bin_directory"));
auto dir_entries = list_directory("/");
REQUIRE(!dir_entries.empty());
// REQUIRE(contains(dir_entries, "boot"));
// REQUIRE(contains(dir_entries, "etc"));
// REQUIRE(contains(dir_entries, "home"));
// REQUIRE(contains(dir_entries, "root"));
REQUIRE(!contains(dir_entries, "nonexistent_folder_in_root_directory"));
std::string new_directory = random_string(10);
while (directory_exists(new_directory))
new_directory = random_string(10);
std::string new_sub_directory = new_directory + "/" + random_string(10);
REQUIRE(create_directories(new_sub_directory));
REQUIRE(create_directories(new_directory));
REQUIRE(directory_exists(new_sub_directory));
REQUIRE(directory_exists(new_directory));
std::string new_file = new_directory + "/abc.txt";
std::fstream fs;
fs.open(new_file, std::ios::out);
fs.close();
REQUIRE(file_exists(new_file));
REQUIRE(remove_file(new_file));
REQUIRE(!file_exists(new_file));
REQUIRE(remove_directory(new_directory));
REQUIRE(!directory_exists(new_directory));
REQUIRE(!directory_exists(new_sub_directory));
REQUIRE(!remove_directory(new_directory));
REQUIRE(!remove_directory(new_sub_directory));
REQUIRE(!remove_file("./nonexistent_file_in_cmake_bin_directory"));
#endif
}