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
// Copyright (c) 2013, Kenton Varda <temporal@gmail.com>
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "schema-loader.h"
#include <gtest/gtest.h>
#include "test-util.h"
#include <kj/debug.h>
namespace capnp {
namespace _ { // private
namespace {
TEST(SchemaLoader, Load) {
SchemaLoader loader;
Schema struct32Schema = loader.load(Schema::from<test::TestLists::Struct32>().getProto());
auto nativeSchema = Schema::from<test::TestLists>();
Schema testListsSchema = loader.load(nativeSchema.getProto());
Schema struct8Schema = loader.load(Schema::from<test::TestLists::Struct8>().getProto());
Schema structPSchema = loader.load(Schema::from<test::TestLists::StructP>().getProto());
EXPECT_EQ(kj::str(nativeSchema.getProto()), kj::str(testListsSchema.getProto()));
EXPECT_FALSE(testListsSchema == nativeSchema);
EXPECT_FALSE(struct32Schema == Schema::from<test::TestLists::Struct32>());
EXPECT_FALSE(struct8Schema == Schema::from<test::TestLists::Struct8>());
EXPECT_FALSE(structPSchema == Schema::from<test::TestLists::StructP>());
EXPECT_TRUE(testListsSchema.getDependency(typeId<test::TestLists::Struct32>()) == struct32Schema);
EXPECT_TRUE(testListsSchema.getDependency(typeId<test::TestLists::Struct8>()) == struct8Schema);
EXPECT_TRUE(testListsSchema.getDependency(typeId<test::TestLists::StructP>()) == structPSchema);
auto struct16Schema = testListsSchema.getDependency(typeId<test::TestLists::Struct16>());
EXPECT_EQ(0u, struct16Schema.getProto().getBody().getStructNode().getMembers().size());
}
#if KJ_NO_EXCEPTIONS
#undef EXPECT_ANY_THROW
#define EXPECT_ANY_THROW(code) EXPECT_DEATH(code, ".")
#define EXPECT_NONFATAL_FAILURE(code) code
#else
#define EXPECT_NONFATAL_FAILURE EXPECT_ANY_THROW
#endif
TEST(SchemaLoader, Use) {
SchemaLoader loader;
StructSchema schema = loader.load(Schema::from<TestAllTypes>().getProto()).asStruct();
// Also have to load TestEnum.
loader.load(Schema::from<TestEnum>().getProto());
{
MallocMessageBuilder builder;
auto root = builder.getRoot<DynamicStruct>(schema);
initDynamicTestMessage(root);
checkDynamicTestMessage(root.asReader());
// Can't convert to TestAllTypes because we didn't use loadCompiledTypeAndDependencies().
EXPECT_ANY_THROW(root.as<TestAllTypes>());
// But if we reinterpret the raw bytes, it works.
checkTestMessage(builder.getRoot<TestAllTypes>());
}
loader.loadCompiledTypeAndDependencies<TestAllTypes>();
{
MallocMessageBuilder builder;
auto root = builder.getRoot<DynamicStruct>(schema);
initDynamicTestMessage(root);
// Now we can actually cast.
checkTestMessage(root.as<TestAllTypes>());
}
// Let's also test TestListDefaults, but as we do so, let's load the compiled types first, to
// make sure the opposite order works.
loader.loadCompiledTypeAndDependencies<TestListDefaults>();
StructSchema testListsSchema = loader.get(typeId<TestListDefaults>()).asStruct();
EXPECT_TRUE(testListsSchema != Schema::from<TestListDefaults>());
{
MallocMessageBuilder builder;
auto root = builder.getRoot<DynamicStruct>(testListsSchema);
initDynamicTestLists(root);
checkDynamicTestLists(root.asReader());
checkTestMessage(root.as<TestListDefaults>());
}
EXPECT_TRUE(loader.load(Schema::from<TestListDefaults>().getProto()) == testListsSchema);
{
MallocMessageBuilder builder;
auto root = builder.getRoot<DynamicStruct>(testListsSchema);
initDynamicTestLists(root);
checkTestMessage(root.as<TestListDefaults>());
}
// Finally, let's test some unions.
StructSchema unionSchema = loader.load(Schema::from<TestUnion>().getProto()).asStruct();
{
MallocMessageBuilder builder;
auto root = builder.getRoot<DynamicStruct>(unionSchema);
root.get("union0").as<DynamicUnion>().set("u0f1s16", 123);
root.get("union1").as<DynamicUnion>().set("u1f0sp", "hello");
auto reader = builder.getRoot<TestUnion>().asReader();
EXPECT_EQ(123, reader.getUnion0().getU0f1s16());
EXPECT_EQ("hello", reader.getUnion1().getU1f0sp());
}
}
template <typename T>
Schema loadUnderAlternateTypeId(SchemaLoader& loader, uint64_t id) {
MallocMessageBuilder schemaBuilder;
schemaBuilder.setRoot(Schema::from<T>().getProto());
auto root = schemaBuilder.getRoot<schema::Node>();
root.setId(id);
if (root.getBody().which() == schema::Node::Body::STRUCT_NODE) {
// If the struct contains any self-referential members, change their type IDs as well.
auto members = root.getBody().getStructNode().getMembers();
for (auto member: members) {
if (member.getBody().which() == schema::StructNode::Member::Body::FIELD_MEMBER) {
auto type = member.getBody().getFieldMember().getType().getBody();
if (type.which() == schema::Type::Body::STRUCT_TYPE &&
type.getStructType() == typeId<T>()) {
type.setStructType(id);
}
}
}
}
return loader.load(root);
}
TEST(SchemaLoader, Upgrade) {
SchemaLoader loader;
loader.loadCompiledTypeAndDependencies<test::TestOldVersion>();
StructSchema schema = loader.get(typeId<test::TestOldVersion>()).asStruct();
EXPECT_EQ(kj::str(Schema::from<test::TestOldVersion>().getProto()),
kj::str(schema.getProto()));
loadUnderAlternateTypeId<test::TestNewVersion>(loader, typeId<test::TestOldVersion>());
// The new version replaced the old.
EXPECT_EQ(Schema::from<test::TestNewVersion>().getProto().getDisplayName(),
schema.getProto().getDisplayName());
// But it is still usable as the old version.
schema.requireUsableAs<test::TestOldVersion>();
}
TEST(SchemaLoader, Downgrade) {
SchemaLoader loader;
loader.loadCompiledTypeAndDependencies<test::TestNewVersion>();
StructSchema schema = loader.get(typeId<test::TestNewVersion>()).asStruct();
EXPECT_EQ(kj::str(Schema::from<test::TestNewVersion>().getProto()), kj::str(schema.getProto()));
loadUnderAlternateTypeId<test::TestOldVersion>(loader, typeId<test::TestNewVersion>());
// We kept the new version, because the replacement was older.
EXPECT_EQ(Schema::from<test::TestNewVersion>().getProto().getDisplayName(),
schema.getProto().getDisplayName());
schema.requireUsableAs<test::TestNewVersion>();
}
TEST(SchemaLoader, Incompatible) {
SchemaLoader loader;
loader.loadCompiledTypeAndDependencies<test::TestListDefaults>();
EXPECT_NONFATAL_FAILURE(
loadUnderAlternateTypeId<test::TestAllTypes>(loader, typeId<test::TestListDefaults>()));
}
TEST(SchemaLoader, Enumerate) {
SchemaLoader loader;
loader.loadCompiledTypeAndDependencies<TestAllTypes>();
auto list = loader.getAllLoaded();
ASSERT_EQ(2u, list.size());
if (list[0] == loader.get(typeId<TestAllTypes>())) {
EXPECT_TRUE(list[1] == loader.get(typeId<TestEnum>()));
} else {
EXPECT_TRUE(list[0] == loader.get(typeId<TestEnum>()));
EXPECT_TRUE(list[1] == loader.get(typeId<TestAllTypes>()));
}
}
// TODO(test): More extensively test upgrade/downgrade checks.
} // namespace
} // namespace _ (private)
} // namespace capnp