forked from jmckaskill/c-capnproto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
capn-stream-test.cpp
175 lines (146 loc) · 4.68 KB
/
capn-stream-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
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
#include "capn-stream.c"
#include <gtest/gtest.h>
template <int wordCount>
union AlignedData {
uint8_t bytes[wordCount * 8];
uint64_t words[wordCount];
};
TEST(Stream, ReadEmptyStream_Even) {
AlignedData<2> data = {{
1, 0, 0, 0, // num of segs - 1
0, 0, 0, 0,
0, 0, 0, 0,
2, 3, 4, 0, // garbage that should be ignored
}};
struct capn ctx;
ASSERT_NE(0, capn_init_mem(&ctx, data.bytes, 12, 0));
ASSERT_EQ(0, capn_init_mem(&ctx, data.bytes, 16, 0));
EXPECT_EQ(2, ctx.segnum);
EXPECT_EQ(0, ctx.seglist->len);
EXPECT_EQ(0, ctx.seglist->next->len);
capn_free(&ctx);
}
TEST(Stream, ReadEmptyStream_Odd) {
AlignedData<3> data = {{
2, 0, 0, 0, // num of segs - 1
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
2, 3, 4, 0, // garbage that should be ignored
}};
struct capn ctx;
ASSERT_NE(0, capn_init_mem(&ctx, data.bytes, 12, 0));
ASSERT_EQ(0, capn_init_mem(&ctx, data.bytes, 16, 0));
EXPECT_EQ(3, ctx.segnum);
EXPECT_EQ(0, ctx.seglist->len);
EXPECT_EQ(0, ctx.seglist->next->len);
capn_free(&ctx);
ASSERT_EQ(0, capn_init_mem(&ctx, data.bytes, 20, 0));
EXPECT_EQ(3, ctx.segnum);
EXPECT_EQ(0, ctx.seglist->len);
EXPECT_EQ(0, ctx.seglist->next->len);
capn_free(&ctx);
}
TEST(Stream, ReadStream_Even) {
AlignedData<5> data = {{
1, 0, 0, 0, // num of segs - 1
1, 0, 0, 0,
2, 0, 0, 0,
2, 3, 4, 0, // garbage that should be ignored
1, 2, 3, 4, 5, 6, 7, 8,
9,10,11,12,13,14,15,16,
17,18,19,20,21,22,23,24,
}};
struct capn ctx;
ASSERT_NE(0, capn_init_mem(&ctx, data.bytes, 36, 0));
ASSERT_EQ(0, capn_init_mem(&ctx, data.bytes, 40, 0));
EXPECT_EQ(2, ctx.segnum);
EXPECT_EQ(8, ctx.seglist->len);
EXPECT_EQ(1, ctx.seglist->data[0]);
EXPECT_EQ(16, ctx.seglist->next->len);
EXPECT_EQ(9, ctx.seglist->next->data[0]);
capn_free(&ctx);
}
TEST(Stream, WriteEmptyStream) {
uint8_t buf[2048];
struct capn ctx1, ctx2;
capn_init_malloc(&ctx1);
struct capn_ptr root = capn_root(&ctx1);
ASSERT_EQ(CAPN_PTR_LIST, root.type);
EXPECT_EQ(-1, capn_write_mem(&ctx1, buf, 2*8-1, 0));
EXPECT_EQ(2*8, capn_write_mem(&ctx1, buf, 2048, 0));
ASSERT_EQ(0, capn_init_mem(&ctx2, buf, 2048, 0));
EXPECT_EQ(1, ctx2.segnum);
EXPECT_EQ(8, ctx2.seglist->len);
EXPECT_EQ(0, ctx2.seglist->next);
capn_free(&ctx1);
capn_free(&ctx2);
}
TEST(Stream, WriteOneSegment) {
uint8_t buf[2048];
struct capn ctx1, ctx2;
capn_init_malloc(&ctx1);
struct capn_ptr root = capn_root(&ctx1);
struct capn_ptr ptr = capn_new_struct(root.seg, 8, 0);
EXPECT_EQ(0, capn_setp(root, 0, ptr));
EXPECT_EQ(0, capn_write64(ptr, 0, UINT64_C(0x1011121314151617)));
EXPECT_EQ(-1, capn_write_mem(&ctx1, buf, 3*8-1, 0));
EXPECT_EQ(3*8, capn_write_mem(&ctx1, buf, 2048, 0));
ASSERT_EQ(0, capn_init_mem(&ctx2, buf, 2048, 0));
EXPECT_EQ(1, ctx2.segnum);
root = capn_root(&ctx2);
ptr = capn_getp(root, 0, 1);
EXPECT_EQ(UINT64_C(0x1011121314151617), capn_read64(ptr, 0));
capn_free(&ctx1);
capn_free(&ctx2);
}
static struct capn_segment *CreateSmallSegment(void *u, uint32_t id, int sz) {
struct capn_segment *s = (struct capn_segment*) calloc(1, sizeof(*s));
s->data = (char*) calloc(1, sz);
s->cap = sz;
return s;
}
TEST(Stream, WriteTwoSegments) {
struct capn ctx1, ctx2;
uint8_t buf[5*8];
capn_init_malloc(&ctx1);
ctx1.create = &CreateSmallSegment;
struct capn_ptr root = capn_root(&ctx1);
struct capn_ptr ptr1 = capn_new_struct(root.seg, 8, 0);
EXPECT_EQ(0, capn_setp(root, 0, ptr1));
EXPECT_EQ(0, capn_write64(ptr1, 0, UINT64_C(0xfffefdfcfbfaf9f8)));
EXPECT_EQ(2, ctx1.segnum);
/* 2 words: header
* 1 word: segment 1
* 2 words: segment 2
*/
EXPECT_EQ(5*8, capn_write_mem(&ctx1, buf, 5*8, 0));
ASSERT_EQ(0, capn_init_mem(&ctx2, buf, 2048, 0));
root = capn_root(&ctx2);
ptr1 = capn_getp(root, 0, 1);
EXPECT_EQ(UINT64_C(0xfffefdfcfbfaf9f8), capn_read64(ptr1, 0));
capn_free(&ctx1);
capn_free(&ctx2);
}
TEST(Stream, WriteThreeSegments) {
struct capn ctx1, ctx2;
uint8_t buf[2048];
capn_init_malloc(&ctx1);
ctx1.create = &CreateSmallSegment;
struct capn_ptr root = capn_root(&ctx1);
struct capn_ptr ptr1 = capn_new_struct(root.seg, 0, 1);
EXPECT_EQ(0, capn_setp(root, 0, ptr1));
struct capn_ptr ptr2 = capn_new_struct(ptr1.seg, 4, 0);
EXPECT_EQ(0, capn_setp(ptr1, 0, ptr2));
EXPECT_EQ(0, capn_write32(ptr2, 0, 0x12345678));
EXPECT_EQ(3, ctx1.segnum);
EXPECT_EQ(-1, capn_write_mem(&ctx1, buf, 7*8-1, 0));
EXPECT_EQ(7*8, capn_write_mem(&ctx1, buf, 2048, 0));
EXPECT_EQ(0, capn_init_mem(&ctx2, buf, 2048, 0));
root = capn_root(&ctx2);
ptr1 = capn_getp(root, 0, 1);
ptr2 = capn_getp(ptr1, 0, 1);
EXPECT_EQ(0x12345678, capn_read32(ptr2, 0));
capn_free(&ctx1);
capn_free(&ctx2);
}