-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSerializationTest.php
239 lines (205 loc) · 6.4 KB
/
SerializationTest.php
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
<?php
use Infomaniac\AMF\AMF;
use Infomaniac\Exception\DeserializationException;
use Infomaniac\Type\ByteArray;
use Infomaniac\AMF\ISerializable;
use Infomaniac\AMF\Spec;
use Infomaniac\Type\Undefined;
require_once __DIR__ . '/../vendor/autoload.php';
/**
* @author Danny Kopping <[email protected]>
*/
class SerializationTest extends PHPUnit_Framework_TestCase
{
public function testSerializeUndefined()
{
$this->assertEquals(new Undefined(), AMF::deserialize(AMF::serialize(new Undefined(), AMF_DEFAULT_OPTIONS)));
}
public function testSerializeNull()
{
$this->assertSame(null, AMF::deserialize(AMF::serialize(null, AMF_DEFAULT_OPTIONS)));
}
public function testSerializeBoolean()
{
$this->assertSame(false, AMF::deserialize(AMF::serialize(false, AMF_DEFAULT_OPTIONS)));
$this->assertSame(true, AMF::deserialize(AMF::serialize(true, AMF_DEFAULT_OPTIONS)));
}
public function testSerializeInt()
{
$samples = [1, 13, 1398693, 100000000, 12345013, 9876543, Spec::MAX_INT, -123, -9999999, Spec::MIN_INT];
foreach ($samples as $sample) {
$this->assertEquals(
$sample,
AMF::deserialize(AMF::serialize($sample, AMF_DEFAULT_OPTIONS, Spec::AMF3_INT))
);
}
}
public function testSerializeDouble()
{
$samples = [1.5, 9879.4, 999 * 999 / 2, Spec::MAX_INT + 2.0, Spec::MIN_INT * 2];
foreach ($samples as $sample) {
$this->assertEquals(
$sample,
AMF::deserialize(
AMF::serialize(
$sample,
AMF_DEFAULT_OPTIONS,
Spec::AMF3_DOUBLE
)
)
);
}
}
public function testSerializeString()
{
$samples = ['hello', '.', file_get_contents(__FILE__), 'ünicødé'];
foreach ($samples as $sample) {
$this->assertSame(
$sample,
AMF::deserialize(AMF::serialize($sample, AMF_DEFAULT_OPTIONS, Spec::AMF3_STRING))
);
}
}
public function testSerializeDate()
{
$samples = [
new DateTime(),
new DateTime('15 Jan 1989'),
new DateTime('31 December 1880'),
new DateTime('1 Jan 2079')
];
foreach ($samples as $sample) {
$timestamp = $sample->format('U');
$datetime = AMF::deserialize(AMF::serialize($sample, AMF_DEFAULT_OPTIONS, Spec::AMF3_DATE));
$this->assertEquals($timestamp, $datetime->format('U'));
}
}
public function testSerializeArray()
{
$ref = ['1' => 1, '4' => 'Hello!'];
$samples = array(
['a' => 'b'],
[],
['ref' => $ref, 'hi', 'a' => 'reused key', 'another' => $ref],
['ref' => $ref, 'another' => $ref],
[1, 2, 3, 4],
[5, 9, 10, '11' => 14]
);
foreach ($samples as $sample) {
$this->assertEquals(
$sample,
AMF::deserialize(AMF::serialize($sample, AMF_DEFAULT_OPTIONS, Spec::AMF3_ARRAY))
);
}
}
public function testSerializeObject()
{
// dynamic object
$dyn = new stdClass();
$dyn->a = 'b';
$dyn->b = array('123');
$dyn->c = new Undefined();
$dyn->d = new stdClass();
$this->assertEquals($dyn, AMF::deserialize(AMF::serialize($dyn, AMF_DEFAULT_OPTIONS)));
// typed object
$typed = new NormalClass();
$typed->property = 'value';
$this->assertEquals($typed, AMF::deserialize(AMF::serialize($typed, AMF_DEFAULT_OPTIONS | AMF_CLASS_MAPPING)));
// serializable
$serializable = new SerializableData();
$serializable->setName('Test');
$this->assertEquals(
$serializable,
AMF::deserialize(AMF::serialize($serializable, AMF_DEFAULT_OPTIONS | AMF_CLASS_MAPPING))
);
// reference
$a = new stdClass();
$a->x = 'y';
$b = new NormalClass();
$b->property = 'abc';
$a->normal = $b;
$this->assertEquals($a, AMF::deserialize(AMF::serialize($a, AMF_DEFAULT_OPTIONS | AMF_CLASS_MAPPING)));
// self-reference
$a = new stdClass();
$a->x = 'y';
$a->self = $a;
$this->assertEquals($a, AMF::deserialize(AMF::serialize($a, AMF_DEFAULT_OPTIONS)));
}
/**
* @expectedException Infomaniac\Exception\DeserializationException
* @expectedExceptionMessage Class [XXX] could not be instantiated
*/
public function testCustomClassmappingCallback()
{
AMF::setClassmappingCallback(function($object) {
return 'XXX';
});
$obj = new NormalClass();
$serialized = AMF::serialize($obj, AMF_CLASS_MAPPING);
AMF::deserialize($serialized);
}
public function testSerializeBytes()
{
$samples = [
new ByteArray('A'),
new ByteArray('$1�2'),
new ByteArray(0b11000011101010),
new ByteArray(file_get_contents(__DIR__ . '/php.ico'))
];
foreach ($samples as $sample) {
$this->assertEquals(
$sample,
AMF::deserialize(
AMF::serialize(
$sample,
AMF_DEFAULT_OPTIONS,
Spec::AMF3_BYTE_ARRAY
)
)
);
}
}
}
class SerializableData implements ISerializable
{
private $name;
/**
* @param mixed $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return mixed
*/
public function getName()
{
return $this->name;
}
/**
* Return an associative array of class properties
*
* @return array
*/
public function export()
{
return array('name' => $this->getName(), 'reversed' => strrev($this->getName()));
}
/**
* Import data from an external source into this class
*
* @param $data mixed
*/
public function import($data)
{
if (isset($data['name'])) {
$this->setName($data['name']);
}
}
}
class NormalClass
{
public $property;
public $another = false;
}