forked from protobuf-net/protobuf-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDictionaryTests.cs
353 lines (317 loc) · 12.3 KB
/
DictionaryTests.cs
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
using System.Linq;
using NUnit.Framework;
using System.Collections.Generic;
using ProtoBuf;
using System;
using ProtoBuf.Meta;
using System.IO;
using System.Diagnostics;
using System.Text;
namespace Examples.Dictionary
{
[ProtoContract]
class DataWithDictionary<T>
{
public DataWithDictionary()
{
Data = new Dictionary<int, T>();
}
[ProtoMember(1)]
public IDictionary<int, T> Data { get; private set; }
}
[ProtoContract]
class SimpleData : IEquatable<SimpleData>
{
private SimpleData() {}
public SimpleData(int value) {
Value = value;}
[ProtoMember(1)]
public int Value { get; set; }
public bool Equals(SimpleData other)
{
return Value == other.Value;
}
public override int GetHashCode()
{
return Value.GetHashCode();
}
public override bool Equals(object other)
{
return Equals(other as SimpleData);
}
}
[TestFixture]
public class DictionaryTests
{
[Test]
public void TestNestedDictionaryWithStrings()
{
var obj = new DataWithDictionary<string>();
obj.Data[0] = "abc";
obj.Data[4] = "def";
obj.Data[7] = "abc";
var clone = Serializer.DeepClone(obj);
Assert.AreNotSame(obj,clone);
AssertEqual(obj.Data, clone.Data);
}
[Test]
public void TestNestedDictionaryWithSimpleData()
{
var obj = new DataWithDictionary<SimpleData>();
obj.Data[0] = new SimpleData(5);
obj.Data[4] = new SimpleData(72);
obj.Data[7] = new SimpleData(72);
var clone = Serializer.DeepClone(obj);
Assert.AreNotSame(obj, clone);
AssertEqual(obj.Data, clone.Data);
}
[Test]
public void RoundtripDictionary()
{
var lookup = new Dictionary<int,string>();
lookup[0] = "abc";
lookup[4] = "def";
lookup[7] = "abc";
var clone = Serializer.DeepClone(lookup);
AssertEqual(lookup, clone);
}
static void AssertEqual<TKey, TValue>(
IDictionary<TKey, TValue> expected,
IDictionary<TKey, TValue> actual)
{
Assert.AreNotSame(expected, actual, "Instance");
Assert.AreEqual(expected.Count, actual.Count, "Count");
foreach (var pair in expected)
{
TValue value;
Assert.IsTrue(actual.TryGetValue(pair.Key, out value), "Missing: " + pair.Key);
Assert.AreEqual(pair.Value, value, "Value: " + pair.Key);
}
}
}
[TestFixture]
public class EmptyDictionaryTests
{
[Test]
public void EmptyDictionaryShouldDeserializeAsNonNull()
{
using (var ms = new MemoryStream())
{
var data = new Dictionary<string, int>();
Serializer.Serialize(ms, data);
ms.Position = 0;
var clone = Serializer.Deserialize<Dictionary<string, int>>(ms);
Assert.IsNotNull(clone);
Assert.AreEqual(0, clone.Count);
}
}
[Test]
public void NonEmptyDictionaryShouldDeserialize()
{
using (var ms = new MemoryStream())
{
var data = new Dictionary<string, int> { { "abc", 123 } };
Serializer.Serialize(ms, data);
ms.Position = 0;
var clone = Serializer.Deserialize<Dictionary<string, int>>(ms);
Assert.IsNotNull(clone);
Assert.AreEqual(1, clone.Count);
Assert.AreEqual(123, clone["abc"]);
}
}
[Test]
public void EmptyDictionaryShouldDeserializeAsNonNullViaInterface()
{
using (var ms = new MemoryStream())
{
var data = new Dictionary<string, int>();
Serializer.Serialize(ms, data);
ms.Position = 0;
var clone = Serializer.Deserialize<IDictionary<string, int>>(ms);
Assert.IsNotNull(clone);
Assert.AreEqual(0, clone.Count);
}
}
[Test]
public void NonEmptyDictionaryShouldDeserializeViaInterface()
{
using (var ms = new MemoryStream())
{
var data = new Dictionary<string, int> { { "abc", 123 } };
Serializer.Serialize(ms, data);
ms.Position = 0;
var clone = Serializer.Deserialize<IDictionary<string, int>>(ms);
Assert.IsNotNull(clone);
Assert.AreEqual(1, clone.Count);
Assert.AreEqual(123, clone["abc"]);
}
}
}
[TestFixture]
public class NestedDictionaryTests {
[Test]
public void TestNestedConcreteConcreteDictionary()
{
Dictionary<string, Dictionary<string, String>> data = new Dictionary<string, Dictionary<string, string>>
{
{ "abc", new Dictionary<string,string> {{"def","ghi"}}},
{ "jkl", new Dictionary<string,string> {{"mno","pqr"},{"stu","vwx"}}}
};
CheckNested(data, "original");
var clone = Serializer.DeepClone(data);
CheckNested(clone, "clone");
}
[Test]
public void TestNestedInterfaceInterfaceDictionary()
{
IDictionary<string, IDictionary<string, String>> data = new Dictionary<string, IDictionary<string, string>>
{
{ "abc", new Dictionary<string,string> {{"def","ghi"}}},
{ "jkl", new Dictionary<string,string> {{"mno","pqr"},{"stu","vwx"}}}
};
CheckNested(data, "original");
var clone = Serializer.DeepClone(data);
CheckNested(clone, "clone");
}
[Test]
public void TestNestedInterfaceConcreteDictionary()
{
IDictionary<string, Dictionary<string, String>> data = new Dictionary<string, Dictionary<string, string>>
{
{ "abc", new Dictionary<string,string> {{"def","ghi"}}},
{ "jkl", new Dictionary<string,string> {{"mno","pqr"},{"stu","vwx"}}}
};
CheckNested(data, "original");
var clone = Serializer.DeepClone(data);
CheckNested(clone, "clone");
}
[Test]
public void TestNestedConcreteInterfaceDictionary()
{
Dictionary<string, IDictionary<string, String>> data = new Dictionary<string, IDictionary<string, string>>
{
{ "abc", new Dictionary<string,string> {{"def","ghi"}}},
{ "jkl", new Dictionary<string,string> {{"mno","pqr"},{"stu","vwx"}}}
};
CheckNested(data, "original");
var clone = Serializer.DeepClone(data);
CheckNested(clone, "clone");
}
static void CheckNested<TInner>(IDictionary<string, TInner> data, string message)
where TInner : IDictionary<string, string>
{
Assert.IsNotNull(data, message);
Assert.AreEqual(2, data.Keys.Count, message);
var inner = data["abc"];
Assert.AreEqual(1, inner.Keys.Count, message);
Assert.AreEqual(inner["def"], "ghi", message);
inner = data["jkl"];
Assert.AreEqual(2, inner.Keys.Count, message);
Assert.AreEqual(inner["mno"], "pqr", message);
Assert.AreEqual(inner["stu"], "vwx", message);
}
[Test]
public void CheckPerformanceNotInsanelyBad()
{
var model = TypeModel.Create();
model.Add(typeof (PropsViaDictionaryDefault), true);
model.Add(typeof (PropsViaDictionaryGrouped), true);
model.Add(typeof (PropsViaProperties), true);
model.CompileInPlace();
var o1 = new PropsViaProperties { Field1 = 123, Field2 = 456, Field3 = 789 };
var o2 = new PropsViaDictionaryDefault()
{
Values = new List<KeyValuePair> {
new KeyValuePair {Key = "Field1", Value =123 },
new KeyValuePair {Key = "Field2", Value =456 },
new KeyValuePair {Key = "Field2", Value =789 },
}
};
var o3 = new PropsViaDictionaryGrouped()
{
Values = new List<KeyValuePair> {
new KeyValuePair {Key = "Field1", Value =123 },
new KeyValuePair {Key = "Field2", Value =456 },
new KeyValuePair {Key = "Field2", Value =789 },
}
};
int s1, s2, s3, d1, d2, d3;
int l1 = BulkTest(model, o1, out s1, out d1);
int l2 = BulkTest(model, o2, out s2, out d2);
int l3 = BulkTest(model, o2, out s3, out d3);
Console.WriteLine("Bytes (props)\t" + l1);
Console.WriteLine("Ser (props)\t" + s1);
Console.WriteLine("Deser (props)\t" + d1);
Console.WriteLine("Bytes (kv-default)\t" + l2);
Console.WriteLine("Ser (kv-default)\t" + s2);
Console.WriteLine("Deser (kv-default)\t" + d2);
Console.WriteLine("Bytes (kv-grouped)\t" + l3);
Console.WriteLine("Ser (kv-grouped)\t" + s3);
Console.WriteLine("Deser (kv-grouped)\t" + d3);
var pw = new ProtoWriter(Stream.Null, null, null);
Stopwatch watch = Stopwatch.StartNew();
for (int i = 0; i < LOOP; i++ ) {
ProtoWriter.WriteFieldHeader(1, WireType.String, pw);
ProtoWriter.WriteString("Field1", pw);
ProtoWriter.WriteFieldHeader(1, WireType.String, pw);
ProtoWriter.WriteString("Field2", pw);
ProtoWriter.WriteFieldHeader(1, WireType.String, pw);
ProtoWriter.WriteString("Field3", pw);
}
watch.Stop();
pw.Close();
Console.WriteLine("Encoding: " + watch.ElapsedMilliseconds);
}
const int LOOP = 500000;
static int BulkTest<T>(TypeModel model, T obj, out int serialize, out int deserialize) where T: class
{
using(MemoryStream ms = new MemoryStream())
{
Stopwatch watch = Stopwatch.StartNew();
for (int i = 0; i < LOOP; i++)
{
ms.Position = 0;
ms.SetLength(0);
model.Serialize(ms, obj);
}
watch.Stop();
serialize = (int)watch.ElapsedMilliseconds;
watch.Reset();
Type type = typeof (T);
watch.Start();
for (int i = 0; i < LOOP; i++)
{
ms.Position = 0;
model.Deserialize(ms, null, type);
}
watch.Stop();
deserialize = (int)watch.ElapsedMilliseconds;
return (int)ms.Length;
}
}
[ProtoContract]
public class PropsViaDictionaryDefault
{
[ProtoMember(1, DataFormat = DataFormat.Default)] public List<KeyValuePair> Values { get; set;}
}
[ProtoContract]
public class PropsViaDictionaryGrouped
{
[ProtoMember(1, DataFormat = DataFormat.Group)]
public List<KeyValuePair> Values { get; set; }
}
[ProtoContract]
public class KeyValuePair
{
[ProtoMember(1)] public string Key { get; set;}
[ProtoMember(2)] public int Value { get; set;}
}
[ProtoContract]
class PropsViaProperties
{
[ProtoMember(1)] public int Field1 { get; set;}
[ProtoMember(2)] public int Field2 { get; set;}
[ProtoMember(3)] public int Field3 { get; set;}
}
}
}