1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* This file is part of the Happyr Doctrine Specification package. |
5
|
|
|
* |
6
|
|
|
* (c) Tobias Nyholm <[email protected]> |
7
|
|
|
* Kacper Gunia <[email protected]> |
8
|
|
|
* Peter Gribanov <[email protected]> |
9
|
|
|
* |
10
|
|
|
* For the full copyright and license information, please view the LICENSE |
11
|
|
|
* file that was distributed with this source code. |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
namespace tests\Happyr\DoctrineSpecification\Operand; |
15
|
|
|
|
16
|
|
|
use Doctrine\Common\Collections\ArrayCollection; |
17
|
|
|
use Doctrine\ORM\QueryBuilder; |
18
|
|
|
use Happyr\DoctrineSpecification\Operand\Field; |
19
|
|
|
use Happyr\DoctrineSpecification\Operand\Multiplication; |
20
|
|
|
use Happyr\DoctrineSpecification\Operand\Operand; |
21
|
|
|
use PhpSpec\ObjectBehavior; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @mixin Multiplication |
25
|
|
|
*/ |
26
|
|
View Code Duplication |
class MultiplicationSpec extends ObjectBehavior |
|
|
|
|
27
|
|
|
{ |
28
|
|
|
private $field = 'foo'; |
29
|
|
|
|
30
|
|
|
private $value = 'bar'; |
31
|
|
|
|
32
|
|
|
public function let() |
33
|
|
|
{ |
34
|
|
|
$this->beConstructedWith($this->field, $this->value); |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
public function it_is_a_mul() |
38
|
|
|
{ |
39
|
|
|
$this->shouldBeAnInstanceOf(Multiplication::class); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
public function it_is_a_operand() |
43
|
|
|
{ |
44
|
|
|
$this->shouldBeAnInstanceOf(Operand::class); |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
public function it_is_transformable(QueryBuilder $qb, ArrayCollection $parameters) |
48
|
|
|
{ |
49
|
|
|
$qb->getParameters()->willReturn($parameters); |
50
|
|
|
$parameters->count()->willReturn(10); |
51
|
|
|
|
52
|
|
|
$qb->setParameter('comparison_10', $this->value, null)->shouldBeCalled(); |
53
|
|
|
|
54
|
|
|
$this->transform($qb, 'a')->shouldReturn('(a.foo * :comparison_10)'); |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
public function it_is_transformable_add_fields(QueryBuilder $qb) |
58
|
|
|
{ |
59
|
|
|
$this->beConstructedWith(new Field('foo'), new Field('bar')); |
60
|
|
|
$this->transform($qb, 'a')->shouldReturn('(a.foo * a.bar)'); |
61
|
|
|
} |
62
|
|
|
} |
63
|
|
|
|
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.