Skip to content

Latest commit

 

History

History
213 lines (135 loc) · 4.91 KB

edsiotest.c

File metadata and controls

213 lines (135 loc) · 4.91 KB
 
Jan 5, 2004
Jan 5, 2004
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
/* -*-Mode: C;-*-
* $Id: edsiotest.c,v 1.1 2004/01/05 18:54:23 icculus Exp $
*
* Copyright (C) 1998, 1999, Josh MacDonald.
* All Rights Reserved.
*
* Author: Josh MacDonald <jmacd@CS.Berkeley.EDU>
*/
#include "edsio.h"
void
test1 ()
{
guint32 x = 0;
PropTest *pt = g_new0 (PropTest, 1);
EdsioPropTestUintProperty prop;
g_assert (edsio_edsio_init ());
g_assert (edsio_new_proptest_uint_property ("Just testing (1)...", PF_Persistent, & prop));
g_assert (! proptest_isset_uint (pt, prop));
g_assert (proptest_set_uint (pt, prop, 42));
g_assert (proptest_isset_uint (pt, prop));
g_assert (proptest_get_uint (pt, prop, & x) && x == 42);
/* kill the cache, to test persistence. */
pt->_edsio_property_table = NULL;
g_assert (proptest_get_uint (pt, prop, & x) && x == 42);
g_assert (proptest_unset_uint (pt, prop));
g_assert (! proptest_isset_uint (pt, prop));
g_assert (! pt->_edsio_property_table);
}
void
test2 ()
{
const char* str = "hello there";
const char* str2;
guint32 str2_len;
PropTest *pt = g_new0 (PropTest, 1);
EdsioPropTestBytesProperty prop;
g_assert (edsio_edsio_init ());
g_assert (edsio_new_proptest_bytes_property ("Just testing (2)...", PF_Persistent, & prop));
g_assert (! proptest_isset_bytes (pt, prop));
g_assert (proptest_set_bytes (pt, prop, (guint8*) str, strlen (str) + 1));
g_assert (proptest_isset_bytes (pt, prop));
g_assert (proptest_get_bytes (pt, prop, (const guint8**) & str2, & str2_len) && str2_len == (strlen (str) + 1) && strcmp (str, str2) == 0);
/* kill the cache, to test persistence. */
pt->_edsio_property_table = NULL;
g_assert (proptest_get_bytes (pt, prop, (const guint8**) & str2, & str2_len) && str2_len == (strlen (str) + 1) && strcmp (str, str2) == 0);
g_assert (proptest_unset_bytes (pt, prop));
g_assert (! proptest_isset_bytes (pt, prop));
g_assert (! pt->_edsio_property_table);
}
void
test3 ()
{
SerialEdsioUint x;
SerialEdsioUint *p;
EdsioPropTestEdsioUintProperty prop;
PropTest *pt = g_new0 (PropTest, 1);
x.val = 42;
g_assert (edsio_edsio_init ());
g_assert (edsio_new_proptest_edsiouint_property ("Just testing (3)...", PF_Persistent, & prop));
g_assert (! proptest_isset_edsiouint (pt, prop));
g_assert (proptest_set_edsiouint (pt, prop, & x));
g_assert (proptest_isset_edsiouint (pt, prop));
g_assert (proptest_get_edsiouint (pt, prop, & p) && x.val == p->val);
/* kill the cache, to test persistence. */
pt->_edsio_property_table = NULL;
g_assert (proptest_get_edsiouint (pt, prop, & p) && x.val == p->val);
g_assert (proptest_unset_edsiouint (pt, prop));
g_assert (! proptest_isset_edsiouint (pt, prop));
g_assert (! pt->_edsio_property_table);
}
void
test4 ()
{
const char* str = "hello there";
const char* str2;
PropTest *pt = g_new0 (PropTest, 1);
EdsioPropTestStringProperty prop;
g_assert (edsio_edsio_init ());
g_assert (edsio_new_proptest_string_property ("Just testing (4)...", PF_Persistent, & prop));
g_assert (! proptest_isset_string (pt, prop));
g_assert (proptest_set_string (pt, prop, str));
g_assert (proptest_isset_string (pt, prop));
g_assert (proptest_get_string (pt, prop, & str2) && strcmp (str, str2) == 0);
/* kill the cache, to test persistence. */
pt->_edsio_property_table = NULL;
g_assert (proptest_get_string (pt, prop, & str2) && strcmp (str, str2) == 0);
g_assert (proptest_unset_string (pt, prop));
g_assert (! proptest_isset_string (pt, prop));
g_assert (! pt->_edsio_property_table);
}
void test5 ()
{
GByteArray* sink_result;
SerialSink* sink = edsio_simple_sink (NULL, SBF_Checksum | SBF_Base64 | SBF_Compress, FALSE, NULL, & sink_result);
SerialSource* src;
const char* input = "hello there!!!!!!!!";
SerialEdsioString *output;
guint8 zero[1];
zero[0] = 0;
g_assert (serialize_edsiostring (sink, input));
g_assert (sink->sink_close (sink));
g_byte_array_append (sink_result, zero, 1);
g_print ("%s -> %s\n", input, sink_result->data);
src = edsio_simple_source (sink_result->data, sink_result->len - 1, SBF_Checksum | SBF_Base64 | SBF_Compress);
g_assert (unserialize_edsiostring (src, & output));
g_assert (src->source_close (src));
g_assert (strcmp (output->val, input) == 0);
}
void
test6 ()
{
const char* md5str = "aed3918c4ccb89f2dcf74d5dcab22989";
const char* md5strbad1 = "aed3918c4cXb89f2dcf74d5dcab22989";
const char* md5strbad2 = "aed3918c4cab89f2dcf74d5dcab22989X";
const char* md5strbad3 = "aed3918c4cab89f2dcf74d5dcab2298";
char md5str2[33];
guint8 md5[16];
g_assert (! edsio_md5_from_string (md5, md5strbad1));
g_assert (! edsio_md5_from_string (md5, md5strbad2));
g_assert (! edsio_md5_from_string (md5, md5strbad3));
g_assert (edsio_md5_from_string (md5, md5str));
edsio_md5_to_string (md5, md5str2);
g_assert (strcmp (md5str, md5str2) == 0);
}
int
main ()
{
test1 ();
test2 ();
test3 ();
test4 ();
test5 ();
test6 ();
return 0;
}