EachTest::testStandardShallowBegin()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 12
rs 9.4285
cc 1
eloc 7
nc 1
nop 0
1
<?php
2
3
use Enzyme\Loopy\Each;
4
use Mockery as m;
5
6
class EachTest extends PHPUnit_Framework_TestCase
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
7
{
8
    public function tearDown()
9
    {
10
        m::close();
11
    }
12
13
    public function testStandardShallowBegin()
14
    {
15
        $expected = 1;
16
        $array = [1, 2, 3];
17
18
        Each::shallow()->begin($array, function($bag) use(&$expected) {
19
            $actual = $bag->value();
20
            $this->assertEquals($expected, $actual);
21
22
            $expected++;
23
        });
24
    }
25
26
    public function testFilterIsExecuted()
27
    {
28
        $expected = 1;
29
        $array = [1, 2, 3];
30
        $filter = m::mock('Enzyme\Loopy\Filters\FilterInterface', function($mock) {
31
            $mock->shouldReceive('passes')->times(3)->andReturn(true);
32
        });
33
34
        Each::shallow($filter)->begin($array, function($bag) use(&$expected) {
35
            $actual = $bag->value();
36
            $this->assertEquals($expected, $actual);
37
38
            $expected++;
39
        });
40
    }
41
42
    /**
43
     * @expectedException \Enzyme\Loopy\InvalidLoopException
44
     */
45
    public function testNonEnumerableArgument()
46
    {
47
        $expected = 1;
48
        $array = 'foobar';
49
50
        Each::shallow()->begin($array, function($bag) use(&$expected) {
0 ignored issues
show
Unused Code introduced by
The parameter $bag is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
51
            // Should throw an exception before getting here.
52
        });
53
    }
54
55
    public function testStandardShallowBeginMultipleCycles()
56
    {
57
        $expected = 1;
58
        $cycles = 2;
59
        $cur_cycle = 0;
60
        $array = [1, 2, 3];
61
62 View Code Duplication
        Each::shallow()->begin($array, function($bag) use(&$expected, &$cur_cycle, $array) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across 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...
63
            $actual = $bag->value();
64
            $this->assertEquals($expected, $actual);
65
66
            $expected++;
67
68
            $actual = $bag->cycle();
69
            $this->assertEquals($cur_cycle, $actual);
70
71
            if ($expected > $array[count($array) - 1]) {
72
                $expected = 1;
73
                $cur_cycle++;
74
            }
75
        }, $cycles);
76
    }
77
78
    public function testStandardDeepBegin()
79
    {
80
        $expected = 1;
81
        $array = [1, 2, 3, 4 => [4, 5, 6]];
82
83
        Each::deep()->begin($array, function($bag) use(&$expected) {
84
            $actual = $bag->value();
85
            $this->assertEquals($expected, $actual);
86
87
            $expected++;
88
        });
89
    }
90
91
    public function testStandardDeepBeginMultipleCycles()
92
    {
93
        $expected = 1;
94
        $cycles = 2;
95
        $cur_cycle = 0;
96
        $array = [1, 2, 3, 4 => [4, 5, 6]];
97
98 View Code Duplication
        Each::deep()->begin($array, function($bag) use(&$expected, &$cur_cycle, $array) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across 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...
99
            $actual = $bag->value();
100
            $this->assertEquals($expected, $actual);
101
102
            $expected++;
103
104
            $actual = $bag->cycle();
105
            $this->assertEquals($cur_cycle, $actual);
106
107
            // Here the number six refers to the last item in the
108
            // array [1, 2, 3, 4 => [4, 5, 6]] if it were flattened.
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
109
            if ($expected > 6) {
110
                $expected = 1;
111
                $cur_cycle++;
112
            }
113
        }, $cycles);
114
    }
115
116
    public function testExtraDeepBeginMultipleCyclesAndFollowIndex()
117
    {
118
        $expected = 1;
119
        $cycles = 5;
120
        $cur_cycle = 0;
121
        $array = [1, 2, 3, 4 => [4, 5, 6 => [6, 7, 8, 9]]];
122
        $index = 0;
123
124
        Each::deep()->begin($array, function($bag) use(&$expected, &$cur_cycle, &$index, $array) {
125
            $actual = $bag->value();
126
            $this->assertEquals($expected, $actual);
127
128
            $expected++;
129
130
            $actual = $bag->cycle();
131
            $this->assertEquals($cur_cycle, $actual);
132
133
            $actual = $bag->index();
134
            $this->assertEquals($index, $actual);
135
            $index++;
136
137
            // Here the number six refers to the last item in the
138
            // array [1, 2, 3, 4 => [4, 5, 6 => [6, 7, 8, 9]]] if it were flattened.
0 ignored issues
show
Unused Code Comprehensibility introduced by
57% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
139
            if ($expected > 9) {
140
                $expected = 1;
141
                $cur_cycle++;
142
            }
143
        }, $cycles);
144
    }
145
}