it_should_create_from_location()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 40

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 40
rs 9.28
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace spec\Yproximite\Api\Message\Location;
4
5
use PhpSpec\ObjectBehavior;
6
7
use Yproximite\Api\Model\Location\Location;
8
use Yproximite\Api\Model\Location\LocationTranslation;
9
use Yproximite\Api\Message\Location\LocationPatchMessage;
10
use Yproximite\Api\Message\Location\LocationTranslationMessage;
11
12
class LocationPatchMessageSpec extends ObjectBehavior
13
{
14
    function it_is_initializable()
15
    {
16
        $this->shouldHaveType(LocationPatchMessage::class);
17
    }
18
19 View Code Duplication
    function it_should_build()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
20
    {
21
        $translation = new LocationTranslationMessage();
22
        $translation->setLocale('en');
23
        $translation->setTitle('Some location');
24
        $translation->setOpeningHours('24/7');
25
26
        $this->setTel('+1 123 456 78 90');
27
        $this->setTel2('+2 456 111 78 90');
28
        $this->setFax('+3 111 222 78 11');
29
        $this->setMail('[email protected]');
30
        $this->setAddress('88 St Patrick St');
31
        $this->setPostalCode('M5T 1V1');
32
        $this->setTown('Toronto');
33
        $this->setCountry('Canada');
34
        $this->setAddressForGoogleMap('88 St Patrick St, Toronto, M5T 1V1, Canada');
35
        $this->setDefaultLocation(true);
36
        $this->setLatitude('43.6527222');
37
        $this->setLongitude('-79.3918831');
38
        $this->addTranslation($translation);
39
40
        $translationData = [
41
            'title'        => 'Some location',
42
            'openingHours' => '24/7',
43
        ];
44
45
        $data = [
46
            'tel'                 => '+1 123 456 78 90',
47
            'tel2'                => '+2 456 111 78 90',
48
            'fax'                 => '+3 111 222 78 11',
49
            'mail'                => '[email protected]',
50
            'address'             => '88 St Patrick St',
51
            'postalCode'          => 'M5T 1V1',
52
            'town'                => 'Toronto',
53
            'country'             => 'Canada',
54
            'addressForGoogleMap' => '88 St Patrick St, Toronto, M5T 1V1, Canada',
55
            'defaultLocation'     => true,
56
            'latitude'            => '43.6527222',
57
            'longitude'           => '-79.3918831',
58
            'translations'        => ['en' => $translationData]
59
        ];
60
61
        $this->build()->shouldReturn($data);
62
    }
63
64
    function it_should_create_from_location(Location $location, LocationTranslation $translation)
65
    {
66
        $translation->getLocale()->willReturn('en');
67
        $translation->getTitle()->willReturn('Some location');
68
        $translation->getOpeningHours()->willReturn('24/7');
69
70
        $location->getId()->willReturn(1);
71
        $location->getTel()->willReturn('+1 123 456 78 90');
72
        $location->getFax()->willReturn('+3 111 222 78 11');
73
        $location->getMail()->willReturn('[email protected]');
74
        $location->getAddress()->willReturn('88 St Patrick St');
75
        $location->getPostalCode()->willReturn('M5T 1V1');
76
        $location->getTown()->willReturn('Toronto');
77
        $location->getCountry()->willReturn('Canada');
78
        $location->isDefaultLocation()->willReturn(true);
79
        $location->getLatitude()->willReturn('43.6527222');
80
        $location->getLongitude()->willReturn('-79.3918831');
81
        $location->getTranslations()->willReturn([$translation]);
82
83
        $transMessage = new LocationTranslationMessage();
84
        $transMessage->setLocale('en');
85
        $transMessage->setTitle('Some location');
86
        $transMessage->setOpeningHours('24/7');
87
88
        $message = new LocationPatchMessage();
89
        $message->setId(1);
90
        $message->setTel('+1 123 456 78 90');
91
        $message->setFax('+3 111 222 78 11');
92
        $message->setMail('[email protected]');
93
        $message->setAddress('88 St Patrick St');
94
        $message->setPostalCode('M5T 1V1');
95
        $message->setTown('Toronto');
96
        $message->setCountry('Canada');
97
        $message->setDefaultLocation(true);
98
        $message->setLatitude('43.6527222');
99
        $message->setLongitude('-79.3918831');
100
        $message->addTranslation($transMessage);
101
102
        $this::createFromLocation($location)->shouldBeLike($message);
103
    }
104
}
105