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
|
/**
*
* Copyright 2021-2023 Ribose Inc. (https://www.ribose.com)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include "sexp-tests.h"
using namespace sexp;
using ::testing::UnitTest;
namespace {
class BaselineTests : public testing::Test {
protected:
static const uint32_t base_sample_advanced = 0;
static const uint32_t base_sample_base64 = 1;
static const uint32_t base_sample_canonical = 2;
static const uint32_t n_base_samples = base_sample_canonical + 1;
static std::string base_samples[n_base_samples];
BaselineTests()
{
base_samples[base_sample_advanced] = sexp_samples_folder + "/baseline/sexp-sample-a";
base_samples[base_sample_base64] = sexp_samples_folder + "/baseline/sexp-sample-b";
base_samples[base_sample_canonical] = sexp_samples_folder + "/baseline/sexp-sample-c";
};
};
const uint32_t BaselineTests::n_base_samples;
const uint32_t BaselineTests::base_sample_advanced;
const uint32_t BaselineTests::base_sample_base64;
const uint32_t BaselineTests::base_sample_canonical;
std::string BaselineTests::base_samples[n_base_samples];
TEST_F(BaselineTests, Scan2Canonical)
{
for (uint32_t i = 0; i < n_base_samples; i++) {
std::ifstream ifs(base_samples[i], std::ifstream::binary);
bool r = ifs.fail();
EXPECT_FALSE(r);
if (!ifs.fail()) {
sexp_input_stream_t is(&ifs);
const auto obj = is.set_byte_size(8)->get_char()->scan_object();
std::ostringstream oss(std::ios_base::binary);
sexp_output_stream_t os(&oss);
os.print_canonical(obj);
std::istringstream iss(oss.str(), std::ios_base::binary);
EXPECT_TRUE(compare_binary_files(base_samples[base_sample_canonical], iss));
}
}
}
TEST_F(BaselineTests, Scan2Base64)
{
for (uint32_t i = 0; i < n_base_samples; i++) {
std::ifstream ifs(base_samples[i], std::ifstream::binary);
EXPECT_FALSE(ifs.fail());
if (!ifs.fail()) {
sexp_input_stream_t is(&ifs);
const auto obj = is.set_byte_size(8)->get_char()->scan_object();
std::ostringstream oss(std::ios_base::binary);
sexp_output_stream_t os(&oss);
os.set_max_column(0)->print_base64(obj);
oss << std::endl;
std::istringstream iss(oss.str(), std::ios_base::binary);
EXPECT_TRUE(compare_text_files(base_samples[base_sample_base64], iss));
}
}
}
TEST_F(BaselineTests, Scan2Advanced)
{
for (uint32_t i = 0; i < n_base_samples; i++) {
std::ifstream ifs(base_samples[i], std::ifstream::binary);
EXPECT_FALSE(ifs.fail());
if (!ifs.fail()) {
sexp_input_stream_t is(&ifs);
const auto obj = is.set_byte_size(8)->get_char()->scan_object();
std::ostringstream oss(std::ios_base::binary);
sexp_output_stream_t os(&oss);
os.print_advanced(obj);
std::istringstream iss(oss.str(), std::ios_base::binary);
EXPECT_TRUE(compare_text_files(base_samples[base_sample_advanced], iss));
}
}
}
} // namespace
|