Newer
Older
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
#include <cstdint>
#include <iostream>
#include <stdexcept>
#include <adios2.h>
#include <gtest/gtest.h>
class ADIOSDefineAttributeTest : public ::testing::Test
{
public:
ADIOSDefineAttributeTest() : adios(true), io(adios.DeclareIO("TestIO")) {}
protected:
adios2::ADIOS adios;
adios2::IO &io;
};
TEST_F(ADIOSDefineAttributeTest, DefineAttributeNameException)
{
auto &attributeString1 =
io.DefineAttribute<std::string>("attributeString", "-1");
EXPECT_THROW(auto &attributeString2 =
io.DefineAttribute<std::string>("attributeString", "0"),
std::invalid_argument);
EXPECT_THROW(auto &attributeString2 =
io.GetAttribute<std::string>("NoExistingAttribute"),
std::invalid_argument);
EXPECT_NO_THROW(auto &attributeString3 =
io.GetAttribute<std::string>("attributeString"));
}
TEST_F(ADIOSDefineAttributeTest, DefineAttributeTypeByValue)
{
// Define ADIOS global value
auto &attributeString =
io.DefineAttribute<std::string>("attributeString", "-1");
auto &attributeChar = io.DefineAttribute<char>("attributeChar", '0');
auto &attributeUChar =
io.DefineAttribute<unsigned char>("attributeUChar", '1');
auto &attributeShort = io.DefineAttribute<short>("attributeShort", 2);
auto &attributeUShort =
io.DefineAttribute<unsigned short>("attributeUShort", 3);
auto &attributeInt = io.DefineAttribute<int>("attributeInt", 4);
auto &attributeUInt = io.DefineAttribute<unsigned int>("attributeUInt", 5);
auto &attributeLInt = io.DefineAttribute<long int>("attributeLInt", 6);
auto &attributeULInt =
io.DefineAttribute<unsigned long int>("attributeULInt", 7);
auto &attributeLLInt =
io.DefineAttribute<long long int>("attributeLLInt", 8);
auto &attributeULLInt =
io.DefineAttribute<unsigned long long int>("attributeULLInt", 9);
auto &attributeFloat = io.DefineAttribute<float>("attributeFloat", 10);
auto &attributeDouble = io.DefineAttribute<double>("attributeDouble", 11);
auto &attributeLDouble =
io.DefineAttribute<long double>("attributeLDouble", 12);
// Verify the return type is as expected
::testing::StaticAssertTypeEq<decltype(attributeString),
adios2::Attribute<std::string> &>();
::testing::StaticAssertTypeEq<decltype(attributeChar),
adios2::Attribute<char> &>();
::testing::StaticAssertTypeEq<decltype(attributeUChar),
adios2::Attribute<unsigned char> &>();
::testing::StaticAssertTypeEq<decltype(attributeShort),
adios2::Attribute<short> &>();
::testing::StaticAssertTypeEq<decltype(attributeUShort),
adios2::Attribute<unsigned short> &>();
::testing::StaticAssertTypeEq<decltype(attributeInt),
adios2::Attribute<int> &>();
::testing::StaticAssertTypeEq<decltype(attributeUInt),
adios2::Attribute<unsigned int> &>();
::testing::StaticAssertTypeEq<decltype(attributeLInt),
adios2::Attribute<long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeULInt),
adios2::Attribute<unsigned long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeLLInt),
adios2::Attribute<long long int> &>();
::testing::StaticAssertTypeEq<
decltype(attributeULLInt),
adios2::Attribute<unsigned long long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeFloat),
adios2::Attribute<float> &>();
::testing::StaticAssertTypeEq<decltype(attributeDouble),
adios2::Attribute<double> &>();
::testing::StaticAssertTypeEq<decltype(attributeLDouble),
adios2::Attribute<long double> &>();
// Verify the members are correct
ASSERT_EQ(attributeString.m_IsSingleValue, true);
EXPECT_EQ(attributeString.m_Name, "attributeString");
EXPECT_EQ(attributeString.m_DataSingleValue, "-1");
EXPECT_EQ(attributeString.m_Elements, 1);
EXPECT_EQ(attributeString.m_Type, "string");
ASSERT_EQ(attributeChar.m_DataArray.empty(), true);
EXPECT_EQ(attributeChar.m_Name, "attributeChar");
EXPECT_EQ(attributeChar.m_DataSingleValue, '0');
EXPECT_EQ(attributeChar.m_Elements, 1);
EXPECT_EQ(attributeChar.m_Type, "char");
ASSERT_EQ(attributeUChar.m_DataArray.empty(), true);
EXPECT_EQ(attributeUChar.m_Name, "attributeUChar");
EXPECT_EQ(attributeUChar.m_DataSingleValue, '1');
EXPECT_EQ(attributeUChar.m_Elements, 1);
EXPECT_EQ(attributeUChar.m_Type, "unsigned char");
ASSERT_EQ(attributeShort.m_DataArray.empty(), true);
EXPECT_EQ(attributeShort.m_Name, "attributeShort");
EXPECT_EQ(attributeShort.m_DataSingleValue, 2);
EXPECT_EQ(attributeShort.m_Elements, 1);
EXPECT_EQ(attributeShort.m_Type, "short");
ASSERT_EQ(attributeUShort.m_DataArray.empty(), true);
EXPECT_EQ(attributeUShort.m_Name, "attributeUShort");
EXPECT_EQ(attributeUShort.m_DataSingleValue, 3);
EXPECT_EQ(attributeUShort.m_Elements, 1);
EXPECT_EQ(attributeUShort.m_Type, "unsigned short");
ASSERT_EQ(attributeInt.m_DataArray.empty(), true);
EXPECT_EQ(attributeInt.m_Name, "attributeInt");
EXPECT_EQ(attributeInt.m_DataSingleValue, 4);
EXPECT_EQ(attributeInt.m_Elements, 1);
EXPECT_EQ(attributeInt.m_Type, "int");
ASSERT_EQ(attributeUInt.m_DataArray.empty(), true);
EXPECT_EQ(attributeUInt.m_Name, "attributeUInt");
EXPECT_EQ(attributeUInt.m_DataSingleValue, 5);
EXPECT_EQ(attributeUInt.m_Elements, 1);
EXPECT_EQ(attributeUInt.m_Type, "unsigned int");
ASSERT_EQ(attributeLInt.m_DataArray.empty(), true);
EXPECT_EQ(attributeLInt.m_Name, "attributeLInt");
EXPECT_EQ(attributeLInt.m_DataSingleValue, 6);
EXPECT_EQ(attributeLInt.m_Elements, 1);
EXPECT_EQ(attributeLInt.m_Type, "long int");
ASSERT_EQ(attributeULInt.m_DataArray.empty(), true);
EXPECT_EQ(attributeULInt.m_Name, "attributeULInt");
EXPECT_EQ(attributeULInt.m_DataSingleValue, 7);
EXPECT_EQ(attributeULInt.m_Elements, 1);
EXPECT_EQ(attributeULInt.m_Type, "unsigned long int");
ASSERT_EQ(attributeLLInt.m_DataArray.empty(), true);
EXPECT_EQ(attributeLLInt.m_Name, "attributeLLInt");
EXPECT_EQ(attributeLLInt.m_DataSingleValue, 8);
EXPECT_EQ(attributeLLInt.m_Elements, 1);
EXPECT_EQ(attributeLLInt.m_Type, "long long int");
ASSERT_EQ(attributeULLInt.m_DataArray.empty(), true);
EXPECT_EQ(attributeULLInt.m_Name, "attributeULLInt");
EXPECT_EQ(attributeULLInt.m_DataSingleValue, 9);
EXPECT_EQ(attributeULLInt.m_Elements, 1);
EXPECT_EQ(attributeULLInt.m_Type, "unsigned long long int");
ASSERT_EQ(attributeFloat.m_DataArray.empty(), true);
EXPECT_EQ(attributeFloat.m_Name, "attributeFloat");
EXPECT_EQ(attributeFloat.m_DataSingleValue, 10);
EXPECT_EQ(attributeFloat.m_Elements, 1);
EXPECT_EQ(attributeFloat.m_Type, "float");
ASSERT_EQ(attributeDouble.m_DataArray.empty(), true);
EXPECT_EQ(attributeDouble.m_Name, "attributeDouble");
EXPECT_EQ(attributeDouble.m_DataSingleValue, 11);
EXPECT_EQ(attributeDouble.m_Elements, 1);
EXPECT_EQ(attributeDouble.m_Type, "double");
ASSERT_EQ(attributeLDouble.m_DataArray.empty(), true);
EXPECT_EQ(attributeLDouble.m_Name, "attributeLDouble");
EXPECT_EQ(attributeLDouble.m_DataSingleValue, 12);
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
EXPECT_EQ(attributeLDouble.m_Elements, 1);
EXPECT_EQ(attributeLDouble.m_Type, "long double");
}
TEST_F(ADIOSDefineAttributeTest, DefineAttributeTypeByReference)
{
// Define ADIOS global value
const std::vector<std::string> vString{"-1", "0", "+1"};
const std::vector<char> vChar = {0, 0 + 1, 0 + 2};
const std::vector<unsigned char> vUChar = {1, 1 + 1, 1 + 2};
const std::vector<short> vShort = {2, 2 + 1, 2 + 2};
const std::vector<unsigned short> vUShort = {3, 3 + 1, 3 + 2};
const std::vector<int> vInt = {4, 4 + 1, 4 + 2};
const std::vector<unsigned int> vUInt = {5, 5 + 1, 5 + 2};
const std::vector<long int> vLInt = {6, 6 + 1, 6 + 2};
const std::vector<unsigned long int> vULInt = {7, 7 + 1, 7 + 2};
const std::vector<long long int> vLLInt = {8, 8 + 1, 8 + 2};
const std::vector<unsigned long long int> vULLInt = {9, 9 + 1, 9 + 2};
const std::vector<float> vFloat = {10, 10 + 1, 10 + 2};
const std::vector<double> vDouble = {11, 11 + 1, 11 + 2};
const std::vector<long double> vLDouble = {12, 12 + 1, 12 + 2};
auto &attributeString =
io.DefineAttribute<std::string>("attributeString", vString.data(), 3);
auto &attributeChar =
io.DefineAttribute<char>("attributeChar", vChar.data(), 3);
auto &attributeUChar =
io.DefineAttribute<unsigned char>("attributeUChar", vUChar.data(), 3);
auto &attributeShort =
io.DefineAttribute<short>("attributeShort", vShort.data(), 3);
auto &attributeUShort = io.DefineAttribute<unsigned short>(
"attributeUShort", vUShort.data(), 3);
auto &attributeInt =
io.DefineAttribute<int>("attributeInt", vInt.data(), 3);
auto &attributeUInt =
io.DefineAttribute<unsigned int>("attributeUInt", vUInt.data(), 3);
auto &attributeLInt =
io.DefineAttribute<long int>("attributeLInt", vLInt.data(), 3);
auto &attributeULInt = io.DefineAttribute<unsigned long int>(
"attributeULInt", vULInt.data(), 3);
auto &attributeLLInt =
io.DefineAttribute<long long int>("attributeLLInt", vLLInt.data(), 3);
auto &attributeULLInt = io.DefineAttribute<unsigned long long int>(
"attributeULLInt", vULLInt.data(), 3);
auto &attributeFloat =
io.DefineAttribute<float>("attributeFloat", vFloat.data(), 3);
auto &attributeDouble =
io.DefineAttribute<double>("attributeDouble", vDouble.data(), 3);
auto &attributeLDouble =
io.DefineAttribute<long double>("attributeLDouble", vLDouble.data(), 3);
// Verify the return type is as expected
::testing::StaticAssertTypeEq<decltype(attributeString),
adios2::Attribute<std::string> &>();
::testing::StaticAssertTypeEq<decltype(attributeChar),
adios2::Attribute<char> &>();
::testing::StaticAssertTypeEq<decltype(attributeUChar),
adios2::Attribute<unsigned char> &>();
::testing::StaticAssertTypeEq<decltype(attributeShort),
adios2::Attribute<short> &>();
::testing::StaticAssertTypeEq<decltype(attributeUShort),
adios2::Attribute<unsigned short> &>();
::testing::StaticAssertTypeEq<decltype(attributeInt),
adios2::Attribute<int> &>();
::testing::StaticAssertTypeEq<decltype(attributeUInt),
adios2::Attribute<unsigned int> &>();
::testing::StaticAssertTypeEq<decltype(attributeLInt),
adios2::Attribute<long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeULInt),
adios2::Attribute<unsigned long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeLLInt),
adios2::Attribute<long long int> &>();
::testing::StaticAssertTypeEq<
decltype(attributeULLInt),
adios2::Attribute<unsigned long long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeFloat),
adios2::Attribute<float> &>();
::testing::StaticAssertTypeEq<decltype(attributeDouble),
adios2::Attribute<double> &>();
::testing::StaticAssertTypeEq<decltype(attributeLDouble),
adios2::Attribute<long double> &>();
// Verify the dimensions, name, and type are correct
ASSERT_EQ(attributeString.m_DataArray.empty(), false);
EXPECT_EQ(attributeString.m_DataArray[0], "-1");
EXPECT_EQ(attributeString.m_DataArray[1], "0");
EXPECT_EQ(attributeString.m_DataArray[2], "+1");
EXPECT_EQ(attributeString.m_Name, "attributeString");
ASSERT_EQ(attributeString.m_DataSingleValue.empty(), true);
EXPECT_EQ(attributeString.m_Elements, 3);
EXPECT_EQ(attributeString.m_Type, "string");
ASSERT_EQ(attributeChar.m_DataArray.empty(), false);
EXPECT_EQ(attributeChar.m_DataArray[0], 0);
EXPECT_EQ(attributeChar.m_DataArray[1], 0 + 1);
EXPECT_EQ(attributeChar.m_DataArray[2], 0 + 2);
EXPECT_EQ(attributeChar.m_Name, "attributeChar");
EXPECT_EQ(attributeChar.m_Elements, 3);
EXPECT_EQ(attributeChar.m_Type, "char");
ASSERT_EQ(attributeUChar.m_DataArray.empty(), false);
EXPECT_EQ(attributeUChar.m_DataArray[0], 1);
EXPECT_EQ(attributeUChar.m_DataArray[1], 1 + 1);
EXPECT_EQ(attributeUChar.m_DataArray[2], 1 + 2);
EXPECT_EQ(attributeUChar.m_Name, "attributeUChar");
EXPECT_EQ(attributeUChar.m_Elements, 3);
EXPECT_EQ(attributeUChar.m_Type, "unsigned char");
ASSERT_EQ(attributeShort.m_DataArray.empty(), false);
EXPECT_EQ(attributeShort.m_DataArray[0], 2);
EXPECT_EQ(attributeShort.m_DataArray[1], 2 + 1);
EXPECT_EQ(attributeShort.m_DataArray[2], 2 + 2);
EXPECT_EQ(attributeShort.m_Name, "attributeShort");
EXPECT_EQ(attributeShort.m_Elements, 3);
EXPECT_EQ(attributeShort.m_Type, "short");
ASSERT_EQ(attributeUShort.m_DataArray.empty(), false);
EXPECT_EQ(attributeUShort.m_DataArray[0], 3);
EXPECT_EQ(attributeUShort.m_DataArray[1], 3 + 1);
EXPECT_EQ(attributeUShort.m_DataArray[2], 3 + 2);
EXPECT_EQ(attributeUShort.m_Name, "attributeUShort");
EXPECT_EQ(attributeUShort.m_Elements, 3);
EXPECT_EQ(attributeUShort.m_Type, "unsigned short");
ASSERT_EQ(attributeInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeInt.m_DataArray[0], 4);
EXPECT_EQ(attributeInt.m_DataArray[1], 4 + 1);
EXPECT_EQ(attributeInt.m_DataArray[2], 4 + 2);
EXPECT_EQ(attributeInt.m_Name, "attributeInt");
EXPECT_EQ(attributeInt.m_Elements, 3);
EXPECT_EQ(attributeInt.m_Type, "int");
ASSERT_EQ(attributeUInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeUInt.m_DataArray[0], 5);
EXPECT_EQ(attributeUInt.m_DataArray[1], 5 + 1);
EXPECT_EQ(attributeUInt.m_DataArray[2], 5 + 2);
EXPECT_EQ(attributeUInt.m_Name, "attributeUInt");
EXPECT_EQ(attributeUInt.m_Elements, 3);
EXPECT_EQ(attributeUInt.m_Type, "unsigned int");
ASSERT_EQ(attributeLInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeLInt.m_DataArray[0], 6);
EXPECT_EQ(attributeLInt.m_DataArray[1], 6 + 1);
EXPECT_EQ(attributeLInt.m_DataArray[2], 6 + 2);
EXPECT_EQ(attributeLInt.m_Name, "attributeLInt");
EXPECT_EQ(attributeLInt.m_Elements, 3);
EXPECT_EQ(attributeLInt.m_Type, "long int");
ASSERT_EQ(attributeULInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeULInt.m_DataArray[0], 7);
EXPECT_EQ(attributeULInt.m_DataArray[1], 7 + 1);
EXPECT_EQ(attributeULInt.m_DataArray[2], 7 + 2);
EXPECT_EQ(attributeULInt.m_Name, "attributeULInt");
EXPECT_EQ(attributeULInt.m_Elements, 3);
EXPECT_EQ(attributeULInt.m_Type, "unsigned long int");
ASSERT_EQ(attributeLLInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeLLInt.m_DataArray[0], 8);
EXPECT_EQ(attributeLLInt.m_DataArray[1], 8 + 1);
EXPECT_EQ(attributeLLInt.m_DataArray[2], 8 + 2);
EXPECT_EQ(attributeLLInt.m_Name, "attributeLLInt");
EXPECT_EQ(attributeLLInt.m_Elements, 3);
EXPECT_EQ(attributeLLInt.m_Type, "long long int");
ASSERT_EQ(attributeULLInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeULLInt.m_DataArray[0], 9);
EXPECT_EQ(attributeULLInt.m_DataArray[1], 9 + 1);
EXPECT_EQ(attributeULLInt.m_DataArray[2], 9 + 2);
EXPECT_EQ(attributeULLInt.m_Name, "attributeULLInt");
EXPECT_EQ(attributeULLInt.m_Elements, 3);
EXPECT_EQ(attributeULLInt.m_Type, "unsigned long long int");
ASSERT_EQ(attributeFloat.m_DataArray.empty(), false);
EXPECT_EQ(attributeFloat.m_DataArray[0], 10);
EXPECT_EQ(attributeFloat.m_DataArray[1], 10 + 1);
EXPECT_EQ(attributeFloat.m_DataArray[2], 10 + 2);
EXPECT_EQ(attributeFloat.m_Name, "attributeFloat");
EXPECT_EQ(attributeFloat.m_Elements, 3);
EXPECT_EQ(attributeFloat.m_Type, "float");
ASSERT_EQ(attributeDouble.m_DataArray.empty(), false);
EXPECT_EQ(attributeDouble.m_DataArray[0], 11);
EXPECT_EQ(attributeDouble.m_DataArray[1], 11 + 1);
EXPECT_EQ(attributeDouble.m_DataArray[2], 11 + 2);
EXPECT_EQ(attributeDouble.m_Name, "attributeDouble");
EXPECT_EQ(attributeDouble.m_Elements, 3);
EXPECT_EQ(attributeDouble.m_Type, "double");
ASSERT_EQ(attributeLDouble.m_DataArray.empty(), false);
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
EXPECT_EQ(attributeLDouble.m_DataArray[0], 12);
EXPECT_EQ(attributeLDouble.m_DataArray[1], 12 + 1);
EXPECT_EQ(attributeLDouble.m_DataArray[2], 12 + 2);
EXPECT_EQ(attributeLDouble.m_Name, "attributeLDouble");
EXPECT_EQ(attributeLDouble.m_Elements, 3);
EXPECT_EQ(attributeLDouble.m_Type, "long double");
}
TEST_F(ADIOSDefineAttributeTest, GetAttribute)
{
// Define ADIOS global value
const std::vector<std::string> vString{"-1", "0", "+1"};
const std::vector<char> vChar = {0, 0 + 1, 0 + 2};
const std::vector<unsigned char> vUChar = {1, 1 + 1, 1 + 2};
const std::vector<short> vShort = {2, 2 + 1, 2 + 2};
const std::vector<unsigned short> vUShort = {3, 3 + 1, 3 + 2};
const std::vector<int> vInt = {4, 4 + 1, 4 + 2};
const std::vector<unsigned int> vUInt = {5, 5 + 1, 5 + 2};
const std::vector<long int> vLInt = {6, 6 + 1, 6 + 2};
const std::vector<unsigned long int> vULInt = {7, 7 + 1, 7 + 2};
const std::vector<long long int> vLLInt = {8, 8 + 1, 8 + 2};
const std::vector<unsigned long long int> vULLInt = {9, 9 + 1, 9 + 2};
const std::vector<float> vFloat = {10, 10 + 1, 10 + 2};
const std::vector<double> vDouble = {11, 11 + 1, 11 + 2};
const std::vector<long double> vLDouble = {12, 12 + 1, 12 + 2};
{
io.DefineAttribute<std::string>("attributeString", vString.data(), 3);
io.DefineAttribute<char>("attributeChar", vChar.data(), 3);
io.DefineAttribute<unsigned char>("attributeUChar", vUChar.data(), 3);
io.DefineAttribute<short>("attributeShort", vShort.data(), 3);
io.DefineAttribute<unsigned short>("attributeUShort", vUShort.data(),
3);
io.DefineAttribute<int>("attributeInt", vInt.data(), 3);
io.DefineAttribute<unsigned int>("attributeUInt", vUInt.data(), 3);
io.DefineAttribute<long int>("attributeLInt", vLInt.data(), 3);
io.DefineAttribute<unsigned long int>("attributeULInt", vULInt.data(),
3);
io.DefineAttribute<long long int>("attributeLLInt", vLLInt.data(), 3);
io.DefineAttribute<unsigned long long int>("attributeULLInt",
vULLInt.data(), 3);
io.DefineAttribute<float>("attributeFloat", vFloat.data(), 3);
io.DefineAttribute<double>("attributeDouble", vDouble.data(), 3);
io.DefineAttribute<long double>("attributeLDouble", vLDouble.data(), 3);
}
auto &attributeString = io.GetAttribute<std::string>("attributeString");
auto &attributeChar = io.GetAttribute<char>("attributeChar");
auto &attributeUChar = io.GetAttribute<unsigned char>("attributeUChar");
auto &attributeShort = io.GetAttribute<short>("attributeShort");
auto &attributeUShort = io.GetAttribute<unsigned short>("attributeUShort");
auto &attributeInt = io.GetAttribute<int>("attributeInt");
auto &attributeUInt = io.GetAttribute<unsigned int>("attributeUInt");
auto &attributeLInt = io.GetAttribute<long int>("attributeLInt");
auto &attributeULInt = io.GetAttribute<unsigned long int>("attributeULInt");
auto &attributeLLInt = io.GetAttribute<long long int>("attributeLLInt");
auto &attributeULLInt =
io.GetAttribute<unsigned long long int>("attributeULLInt");
auto &attributeFloat = io.GetAttribute<float>("attributeFloat");
auto &attributeDouble = io.GetAttribute<double>("attributeDouble");
auto &attributeLDouble = io.GetAttribute<long double>("attributeLDouble");
// Verify the return type is as expected
::testing::StaticAssertTypeEq<decltype(attributeString),
adios2::Attribute<std::string> &>();
::testing::StaticAssertTypeEq<decltype(attributeChar),
adios2::Attribute<char> &>();
::testing::StaticAssertTypeEq<decltype(attributeUChar),
adios2::Attribute<unsigned char> &>();
::testing::StaticAssertTypeEq<decltype(attributeShort),
adios2::Attribute<short> &>();
::testing::StaticAssertTypeEq<decltype(attributeUShort),
adios2::Attribute<unsigned short> &>();
::testing::StaticAssertTypeEq<decltype(attributeInt),
adios2::Attribute<int> &>();
::testing::StaticAssertTypeEq<decltype(attributeUInt),
adios2::Attribute<unsigned int> &>();
::testing::StaticAssertTypeEq<decltype(attributeLInt),
adios2::Attribute<long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeULInt),
adios2::Attribute<unsigned long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeLLInt),
adios2::Attribute<long long int> &>();
::testing::StaticAssertTypeEq<
decltype(attributeULLInt),
adios2::Attribute<unsigned long long int> &>();
::testing::StaticAssertTypeEq<decltype(attributeFloat),
adios2::Attribute<float> &>();
::testing::StaticAssertTypeEq<decltype(attributeDouble),
adios2::Attribute<double> &>();
::testing::StaticAssertTypeEq<decltype(attributeLDouble),
adios2::Attribute<long double> &>();
// Verify the dimensions, name, and type are correct
ASSERT_EQ(attributeString.m_DataArray.empty(), false);
EXPECT_EQ(attributeString.m_DataArray[0], "-1");
EXPECT_EQ(attributeString.m_DataArray[1], "0");
EXPECT_EQ(attributeString.m_DataArray[2], "+1");
EXPECT_EQ(attributeString.m_Name, "attributeString");
ASSERT_EQ(attributeString.m_DataSingleValue.empty(), true);
EXPECT_EQ(attributeString.m_Elements, 3);
EXPECT_EQ(attributeString.m_Type, "string");
ASSERT_EQ(attributeChar.m_DataArray.empty(), false);
EXPECT_EQ(attributeChar.m_DataArray[0], 0);
EXPECT_EQ(attributeChar.m_DataArray[1], 0 + 1);
EXPECT_EQ(attributeChar.m_DataArray[2], 0 + 2);
EXPECT_EQ(attributeChar.m_Name, "attributeChar");
EXPECT_EQ(attributeChar.m_Elements, 3);
EXPECT_EQ(attributeChar.m_Type, "char");
ASSERT_EQ(attributeUChar.m_DataArray.empty(), false);
EXPECT_EQ(attributeUChar.m_DataArray[0], 1);
EXPECT_EQ(attributeUChar.m_DataArray[1], 1 + 1);
EXPECT_EQ(attributeUChar.m_DataArray[2], 1 + 2);
EXPECT_EQ(attributeUChar.m_Name, "attributeUChar");
EXPECT_EQ(attributeUChar.m_Elements, 3);
EXPECT_EQ(attributeUChar.m_Type, "unsigned char");
ASSERT_EQ(attributeShort.m_DataArray.empty(), false);
EXPECT_EQ(attributeShort.m_DataArray[0], 2);
EXPECT_EQ(attributeShort.m_DataArray[1], 2 + 1);
EXPECT_EQ(attributeShort.m_DataArray[2], 2 + 2);
EXPECT_EQ(attributeShort.m_Name, "attributeShort");
EXPECT_EQ(attributeShort.m_Elements, 3);
EXPECT_EQ(attributeShort.m_Type, "short");
ASSERT_EQ(attributeUShort.m_DataArray.empty(), false);
EXPECT_EQ(attributeUShort.m_DataArray[0], 3);
EXPECT_EQ(attributeUShort.m_DataArray[1], 3 + 1);
EXPECT_EQ(attributeUShort.m_DataArray[2], 3 + 2);
EXPECT_EQ(attributeUShort.m_Name, "attributeUShort");
EXPECT_EQ(attributeUShort.m_Elements, 3);
EXPECT_EQ(attributeUShort.m_Type, "unsigned short");
ASSERT_EQ(attributeInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeInt.m_DataArray[0], 4);
EXPECT_EQ(attributeInt.m_DataArray[1], 4 + 1);
EXPECT_EQ(attributeInt.m_DataArray[2], 4 + 2);
EXPECT_EQ(attributeInt.m_Name, "attributeInt");
EXPECT_EQ(attributeInt.m_Elements, 3);
EXPECT_EQ(attributeInt.m_Type, "int");
ASSERT_EQ(attributeUInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeUInt.m_DataArray[0], 5);
EXPECT_EQ(attributeUInt.m_DataArray[1], 5 + 1);
EXPECT_EQ(attributeUInt.m_DataArray[2], 5 + 2);
EXPECT_EQ(attributeUInt.m_Name, "attributeUInt");
EXPECT_EQ(attributeUInt.m_Elements, 3);
EXPECT_EQ(attributeUInt.m_Type, "unsigned int");
ASSERT_EQ(attributeLInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeLInt.m_DataArray[0], 6);
EXPECT_EQ(attributeLInt.m_DataArray[1], 6 + 1);
EXPECT_EQ(attributeLInt.m_DataArray[2], 6 + 2);
EXPECT_EQ(attributeLInt.m_Name, "attributeLInt");
EXPECT_EQ(attributeLInt.m_Elements, 3);
EXPECT_EQ(attributeLInt.m_Type, "long int");
ASSERT_EQ(attributeULInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeULInt.m_DataArray[0], 7);
EXPECT_EQ(attributeULInt.m_DataArray[1], 7 + 1);
EXPECT_EQ(attributeULInt.m_DataArray[2], 7 + 2);
EXPECT_EQ(attributeULInt.m_Name, "attributeULInt");
EXPECT_EQ(attributeULInt.m_Elements, 3);
EXPECT_EQ(attributeULInt.m_Type, "unsigned long int");
ASSERT_EQ(attributeLLInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeLLInt.m_DataArray[0], 8);
EXPECT_EQ(attributeLLInt.m_DataArray[1], 8 + 1);
EXPECT_EQ(attributeLLInt.m_DataArray[2], 8 + 2);
EXPECT_EQ(attributeLLInt.m_Name, "attributeLLInt");
EXPECT_EQ(attributeLLInt.m_Elements, 3);
EXPECT_EQ(attributeLLInt.m_Type, "long long int");
ASSERT_EQ(attributeULLInt.m_DataArray.empty(), false);
EXPECT_EQ(attributeULLInt.m_DataArray[0], 9);
EXPECT_EQ(attributeULLInt.m_DataArray[1], 9 + 1);
EXPECT_EQ(attributeULLInt.m_DataArray[2], 9 + 2);
EXPECT_EQ(attributeULLInt.m_Name, "attributeULLInt");
EXPECT_EQ(attributeULLInt.m_Elements, 3);
EXPECT_EQ(attributeULLInt.m_Type, "unsigned long long int");
ASSERT_EQ(attributeFloat.m_DataArray.empty(), false);
EXPECT_EQ(attributeFloat.m_DataArray[0], 10);
EXPECT_EQ(attributeFloat.m_DataArray[1], 10 + 1);
EXPECT_EQ(attributeFloat.m_DataArray[2], 10 + 2);
EXPECT_EQ(attributeFloat.m_Name, "attributeFloat");
EXPECT_EQ(attributeFloat.m_Elements, 3);
EXPECT_EQ(attributeFloat.m_Type, "float");
ASSERT_EQ(attributeDouble.m_DataArray.empty(), false);
EXPECT_EQ(attributeDouble.m_DataArray[0], 11);
EXPECT_EQ(attributeDouble.m_DataArray[1], 11 + 1);
EXPECT_EQ(attributeDouble.m_DataArray[2], 11 + 2);
EXPECT_EQ(attributeDouble.m_Name, "attributeDouble");
EXPECT_EQ(attributeDouble.m_Elements, 3);
EXPECT_EQ(attributeDouble.m_Type, "double");
ASSERT_EQ(attributeLDouble.m_DataArray.empty(), false);
EXPECT_EQ(attributeLDouble.m_DataArray[0], 12);
EXPECT_EQ(attributeLDouble.m_DataArray[1], 12 + 1);
EXPECT_EQ(attributeLDouble.m_DataArray[2], 12 + 2);
EXPECT_EQ(attributeLDouble.m_Name, "attributeLDouble");
EXPECT_EQ(attributeLDouble.m_Elements, 3);
EXPECT_EQ(attributeLDouble.m_Type, "long double");
}
int main(int argc, char **argv)
{
#ifdef ADIOS2_HAVE_MPI
MPI_Init(nullptr, nullptr);
#endif
::testing::InitGoogleTest(&argc, argv);
int result = RUN_ALL_TESTS();
#ifdef ADIOS2_HAVE_MPI
MPI_Finalize();
#endif
return result;
}