DefaultSerializerTests::testSerializeDeserialize()   B
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 36
Code Lines 31

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
dl 0
loc 36
rs 8.8571
c 1
b 0
f 1
cc 1
eloc 31
nc 1
nop 0
1
<?php
2
3
/**
4
 * This file is part of the Cubiche/Serializer component.
5
 *
6
 * Copyright (c) Cubiche
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
namespace Cubiche\Core\Serializer\Tests\Units;
12
13
use Cubiche\Core\Serializer\DefaultSerializer;
14
use Cubiche\Core\Serializer\Tests\Fixtures\Address;
15
use Cubiche\Core\Serializer\Tests\Fixtures\Person;
16
17
/**
18
 * DefaultSerializer class.
19
 *
20
 * Generated by TestGenerator on 2016-05-03 at 14:37:10.
21
 */
22
class DefaultSerializerTests extends TestCase
23
{
24
    /**
25
     * Test serialize/deserialize method.
26
     */
27
    public function testSerializeDeserialize()
28
    {
29
        $this
30
            ->given($serializer = new DefaultSerializer())
31
            ->when($data = $serializer->serialize(10.32))
32
            ->then()
33
                ->float($serializer->deserialize($data))
34
                    ->isEqualTo(10.32)
35
            ->and()
36
            ->when($data = $serializer->serialize('test'))
37
            ->then()
38
                ->string($serializer->deserialize($data))
39
                    ->isEqualTo('test')
40
            ->and()
41
            ->when($data = $serializer->serialize(array('foo' => 'bar')))
42
            ->then()
43
                ->array($serializer->deserialize($data))
44
                    ->isEqualTo(array('foo' => 'bar'))
45
        ;
46
47
        $this
48
            ->given($serializer = new DefaultSerializer())
49
            ->and($address = new Address('Avinguda Vilares, 5, Montgar', '08390', 'Barcelona'))
50
            ->and($person = new Person('Ivannis Suarez Jerez', $address))
51
            ->and($person1 = new Person('Carla Fernandez Couso', $address))
52
            ->when($data = $serializer->serialize($person))
53
            ->then()
54
                ->boolean($person->equals($serializer->deserialize($data)))
55
                    ->isTrue()
56
                ->boolean($person1->equals($serializer->deserialize($data)))
57
                    ->isFalse()
58
                ->exception(function () use ($serializer, $address) {
59
                    $serializer->serialize($address);
60
                })->isInstanceOf(\InvalidArgumentException::class)
61
        ;
62
    }
63
}
64