Completed
Push — master ( 298e09...565401 )
by Ivannis Suárez
02:36
created

DeferredInterfaceTestCase::testCreate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 12
rs 9.4285
cc 1
eloc 7
nc 1
nop 0
1
<?php
2
3
/**
4
 * This file is part of the Cubiche package.
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\Async\Tests\Units\Promise;
12
13
use Cubiche\Core\Async\Promise\Deferred;
14
use Cubiche\Core\Async\Promise\DeferredInterface;
15
use Cubiche\Core\Async\Promise\State;
16
17
/**
18
 * Deferred Interface Test Case class.
19
 *
20
 * @author Ivannis Suárez Jerez <[email protected]>
21
 * @author Karel Osorio Ramírez <[email protected]>
22
 */
23
abstract class DeferredInterfaceTestCase extends PromisorInterfaceTestCase
24
{
25
    /**
26
     * Test class.
27
     */
28
    public function testClass()
29
    {
30
        parent::testClass();
31
32
        $this
33
            ->testedClass
34
                ->implements(DeferredInterface::class)
35
        ;
36
    }
37
38
    /**
39
     * Test __constructor.
40
     */
41
    public function testCreate()
42
    {
43
        $this
44
            ->given(
45
                /** @var \Cubiche\Core\Async\Promise\DeferredInterface $deferred */
46
                $deferred = $this->newDefaultTestedInstance()
47
            )
48
            ->then()
49
                ->boolean($deferred->promise()->state()->equals(State::PENDING()))
50
                    ->isTrue()
51
        ;
52
    }
53
54
    /**
55
     * Test resolve.
56
     */
57 View Code Duplication
    public function testResolve()
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...
58
    {
59
        $this
60
            ->given(
61
                /** @var \Cubiche\Core\Async\Promise\DeferredInterface $deferred */
62
                $deferred = $this->newDefaultTestedInstance(),
63
                $value = 'foo'
64
            )
65
            ->when($deferred->resolve($value))
66
            ->then()
67
                ->boolean($deferred->promise()->state()->equals(State::FULFILLED()))
68
                    ->isTrue()
69
        ;
70
71
        $this
72
            ->given($onFulfilled = $this->delegateMock())
73
            ->when($deferred->promise()->then($onFulfilled))
74
            ->then()
75
                ->delegateCall($onFulfilled)
76
                    ->withArguments($value)
77
                    ->once()
78
        ;
79
80
        $this->invalidActionTest($deferred);
81
    }
82
83
    /**
84
     * Test reject.
85
     */
86 View Code Duplication
    public function testReject()
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...
87
    {
88
        $this
89
            ->given(
90
                /** @var \Cubiche\Core\Async\Promise\DeferredInterface $deferred */
91
                $deferred = $this->newDefaultTestedInstance(),
92
                $reason = new \Exception()
93
            )
94
            ->when($deferred->reject($reason))
95
            ->then()
96
                ->boolean($deferred->promise()->state()->equals(State::REJECTED()))
97
                    ->isTrue()
98
            ;
99
100
        $this
101
            ->given($onRejected = $this->delegateMock())
102
            ->when($deferred->promise()->then(null, $onRejected))
103
            ->then()
104
                ->delegateCall($onRejected)
105
                    ->withArguments($reason)
106
                     ->once()
107
        ;
108
109
        $this->invalidActionTest($deferred);
110
    }
111
112
    /**
113
     * Test notify.
114
     */
115 View Code Duplication
    public function testNotify()
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...
116
    {
117
        $this
118
            ->given(
119
                /** @var \Cubiche\Core\Async\Promise\DeferredInterface $deferred */
120
                $deferred = $this->newDefaultTestedInstance(),
121
                $onNotify = $this->delegateMock()
122
            )
123
            ->when(function () use ($deferred, $onNotify) {
124
                $deferred->promise()->then(null, null, $onNotify);
125
                $deferred->notify('foo');
126
            })
127
            ->then()
128
                ->delegateCall($onNotify)
129
                    ->withArguments('foo')
130
                    ->once()
131
            ;
132
    }
133
134
    /**
135
     * @param DeferredInterface $deferred
136
     */
137
    protected function invalidActionTest(DeferredInterface $deferred)
138
    {
139
        $this
140
            ->given($deferred)
141
            ->exception(function () use ($deferred) {
142
                $deferred->resolve();
143
            })
144
                ->isInstanceOf(\LogicException::class)
145
            ->exception(function () use ($deferred) {
146
                $deferred->reject();
147
            })
148
                ->isInstanceOf(\LogicException::class)
149
            ->exception(function () use ($deferred) {
150
                $deferred->notify();
151
            })
152
                ->isInstanceOf(\LogicException::class)
153
        ;
154
    }
155
}
156