Completed
Push — master ( c0f250...321e24 )
by Filipe
15:10
created

FlashMessagesSpec   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 68
Duplicated Lines 23.53 %

Coupling/Cohesion

Components 0
Dependencies 4

Importance

Changes 0
Metric Value
wmc 9
lcom 0
cbo 4
dl 16
loc 68
rs 10
c 0
b 0
f 0

8 Methods

Rating   Name   Duplication   Size   Complexity  
A let() 0 9 1
A it_is_initializable() 0 4 1
A it_can_set_messages_of_a_given_type() 8 8 1
A it_cast_to_info_a_message_set_with_an_unknown_type() 8 8 1
A it_can_retrieve_all_messages() 0 6 1
A it_flushes_all_messages_when_retrieving_them() 0 4 1
A it_can_flush_all_messages() 0 7 1
A getMatchers() 0 12 2

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
/**
4
 * This file is part of slick/web_stack package
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace spec\Slick\WebStack\Service;
11
12
use PhpSpec\Exception\Example\FailureException;
13
use Prophecy\Argument;
14
use Slick\Http\Session\SessionDriverInterface;
15
use Slick\WebStack\Service\FlashMessages;
16
use PhpSpec\ObjectBehavior;
17
18
/**
19
 * FlashMessagesSpec specs
20
 *
21
 * @package spec\Slick\WebStack\Service
22
 */
23
class FlashMessagesSpec extends ObjectBehavior
24
{
25
    function let(SessionDriverInterface $sessionDriver)
26
    {
27
        $sessionDriver->get('_messages_', [])->shouldBeCalled()->willReturn([]);
28
        $sessionDriver->set(Argument::type('string'), Argument::any())->willReturn($sessionDriver);
29
        $sessionDriver->erase(Argument::type('string'))->willReturn($sessionDriver);
30
31
        $this->beConstructedWith($sessionDriver);
32
33
    }
34
35
    function it_is_initializable()
36
    {
37
        $this->shouldHaveType(FlashMessages::class);
38
    }
39
40 View Code Duplication
    function it_can_set_messages_of_a_given_type(SessionDriverInterface $sessionDriver)
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...
41
    {
42
43
        $this->set(FlashMessages::TYPE_INFO, 'Info messages')
44
            ->shouldBe($this->getWrappedObject());
45
        $sessionDriver->set('_messages_', [FlashMessages::TYPE_INFO => ['Info messages']])
46
            ->shouldHaveBeenCalled();
47
    }
48
49 View Code Duplication
    function it_cast_to_info_a_message_set_with_an_unknown_type(SessionDriverInterface $sessionDriver)
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...
50
    {
51
        $this->flush();
52
        $this->set('Some Type', 'Info messages')
53
            ->shouldBe($this->getWrappedObject());
54
        $sessionDriver->set('_messages_', [FlashMessages::TYPE_INFO => ['Info messages']])
55
            ->shouldHaveBeenCalled();
56
    }
57
58
    function it_can_retrieve_all_messages()
59
    {
60
        $this->set(FlashMessages::TYPE_INFO, 'Info messages');
61
        $this->messages()
62
            ->shouldHaveKey(FlashMessages::TYPE_INFO);
63
    }
64
65
    function it_flushes_all_messages_when_retrieving_them()
66
    {
67
        $this->messages()->shouldBeEmpty();
68
    }
69
70
    function it_can_flush_all_messages(SessionDriverInterface $sessionDriver)
71
    {
72
        $this->set(FlashMessages::TYPE_ERROR, 'Error message');
73
        $this->flush();
74
        $this->messages()->shouldBeEmpty();
75
        $sessionDriver->erase('_messages_')->shouldHaveBeenCalled();
76
    }
77
78
    public function getMatchers()
79
    {
80
        return [
81
            'beEmpty' => function(array $subject) {
82
                if (! empty($subject)) {
83
                    $count = count($subject);
84
                    throw new FailureException("Expecting and empty array, but got one with $count elements");
85
                }
86
                return true;
87
            }
88
        ];
89
    }
90
}