-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathmetadata_test.cpp
146 lines (126 loc) · 4.8 KB
/
metadata_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
#include "jinja2cpp/template.h"
#include "test_tools.h"
#include <nlohmann/json.hpp>
using namespace jinja2;
TEST(MetadataTest, NoMetadata_EmtpyData)
{
constexpr auto source = "Hello World!";
Template tpl;
auto parse_result = tpl.Load(source);
EXPECT_FALSE(!parse_result);
EXPECT_EQ(0, tpl.GetMetadata().value().GetSize());
EXPECT_TRUE(tpl.GetMetadataRaw().value().metadata.empty());
auto renderResult = tpl.RenderAsString({});
EXPECT_FALSE(!renderResult);
EXPECT_EQ("Hello World!", renderResult.value());
}
TEST(MetadataTest, Metadata_EmptyTag)
{
constexpr auto source = R"({% meta %}{% endmeta %}Hello World!)";
Template tpl;
auto parse_result = tpl.Load(source);
EXPECT_FALSE(!parse_result);
auto metadataValue = tpl.GetMetadata();
EXPECT_FALSE(!metadataValue);
EXPECT_EQ(0, metadataValue.value().GetSize());
EXPECT_TRUE(tpl.GetMetadataRaw().value().metadata.empty());
std::cout << tpl.GetMetadataRaw().value().metadata << std::endl;
auto renderResult = tpl.RenderAsString({});
EXPECT_FALSE(!renderResult);
EXPECT_EQ("Hello World!", renderResult.value());
}
TEST(MetadataTest, Metadata_TagWithSpaces)
{
constexpr auto source = R"({% meta %}
{% endmeta %}Hello World!)";
Template tpl;
auto parse_result = tpl.Load(source);
EXPECT_FALSE(!parse_result);
auto metadataValue = tpl.GetMetadata();
EXPECT_FALSE(!metadataValue);
EXPECT_EQ(0, metadataValue.value().GetSize());
EXPECT_TRUE(tpl.GetMetadataRaw().value().metadata.empty());
auto renderResult = tpl.RenderAsString({});
EXPECT_FALSE(!renderResult);
EXPECT_EQ("Hello World!", renderResult.value());
}
TEST(MetadataTest, Metadata_Invalid)
{
constexpr auto source = R"(
{% meta %}INVALID JSON
{% endmeta %}Hello World!)";
Template tpl;
auto parse_result = tpl.Load(source);
EXPECT_FALSE(!parse_result);
auto metadataValue = tpl.GetMetadata();
EXPECT_TRUE(!metadataValue);
auto error = metadataValue.error().ToString();
std::cout << error << std::endl;
EXPECT_EQ("noname.j2tpl:2:1: error: Error occurred during template metadata parsing. Error: Invalid value.\n", error);
}
TEST(MetadataTest, Metadata_JsonData_Narrow)
{
std::string json = R"({
"stringValue": "Hello!",
"subobject": {
"intValue": 10,
"array": [1, 2, 3, 4, 5]
}
})";
auto source = "{% meta %}" + json + "{% endmeta %}Hello World!";
Template tpl;
auto parse_result = tpl.Load(source);
EXPECT_FALSE(!parse_result);
auto metadataValue = tpl.GetMetadata();
EXPECT_FALSE(!metadataValue);
EXPECT_EQ(2, metadataValue.value().GetSize());
auto& metadata = metadataValue.value();
EXPECT_TRUE(metadata.HasValue("stringValue"));
EXPECT_TRUE(metadata.HasValue("subobject"));
EXPECT_EQ("Hello!", AsString(metadata["stringValue"]));
auto subobjectVal = metadata["subobject"];
const auto& subobject = subobjectVal.get<GenericMap>();
EXPECT_EQ(10, subobject["intValue"].get<int64_t>());
EXPECT_EQ(5, subobject["array"].get<GenericList>().GetSize().value());
auto metadataRaw = tpl.GetMetadataRaw().value();
EXPECT_FALSE(metadataRaw.metadata.empty());
EXPECT_EQ("json", metadataRaw.metadataType);
EXPECT_EQ(nonstd::string_view(json.data(), json.size()), metadataRaw.metadata);
std::cout << metadataRaw.metadata << std::endl;
auto renderResult = tpl.RenderAsString({});
EXPECT_FALSE(!renderResult);
EXPECT_EQ("Hello World!", renderResult.value());
}
TEST(MetadataTest, DISABLED_Metadata_JsonData_Wide)
{
std::wstring json = LR"({
"stringValue": "Hello!",
"subobject": {
"intValue": 10,
"array": [1, 2, 3, 4, 5]
}
})";
auto source = L"{% meta %}" + json + L"{% endmeta %}Hello World!";
TemplateW tpl;
auto parse_result = tpl.Load(source);
EXPECT_FALSE(!parse_result);
auto metadataValue = tpl.GetMetadata();
EXPECT_FALSE(!metadataValue);
EXPECT_EQ(2, metadataValue.value().GetSize());
auto& metadata = metadataValue.value();
EXPECT_TRUE(metadata.HasValue("stringValue"));
EXPECT_TRUE(metadata.HasValue("subobject"));
EXPECT_EQ("Hello!", AsString(metadata["stringValue"]));
auto subobjectVal = metadata["subobject"];
const auto& subobject = subobjectVal.get<GenericMap>();
EXPECT_EQ(10, subobject["intValue"].get<int64_t>());
EXPECT_EQ(5, subobject["array"].get<GenericList>().GetSize().value());
auto metadataRaw = tpl.GetMetadataRaw().value();
EXPECT_FALSE(metadataRaw.metadata.empty());
EXPECT_EQ("json", metadataRaw.metadataType);
EXPECT_EQ(nonstd::wstring_view(json.data(), json.size()), metadataRaw.metadata);
std::wcout << metadataRaw.metadata << std::endl;
auto renderResult = tpl.RenderAsString({});
EXPECT_FALSE(!renderResult);
EXPECT_EQ(L"Hello World!", renderResult.value());
}