1
|
|
|
<?php |
2
|
|
|
/* Copyright (C) 2017 Michael Giesler |
3
|
|
|
* |
4
|
|
|
* This file is part of Dembelo. |
5
|
|
|
* |
6
|
|
|
* Dembelo is free software: you can redistribute it and/or modify |
7
|
|
|
* it under the terms of the GNU Affero General Public License as published by |
8
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
9
|
|
|
* (at your option) any later version. |
10
|
|
|
* |
11
|
|
|
* Dembelo is distributed in the hope that it will be useful, |
12
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14
|
|
|
* GNU Affero General Public License 3 for more details. |
15
|
|
|
* |
16
|
|
|
* You should have received a copy of the GNU Affero General Public License 3 |
17
|
|
|
* along with Dembelo. If not, see <http://www.gnu.org/licenses/>. |
18
|
|
|
*/ |
19
|
|
|
|
20
|
|
|
namespace AdminBundle\Tests\Controller; |
21
|
|
|
|
22
|
|
|
use AdminBundle\Controller\LicenseeController; |
23
|
|
|
use DembeloMain\Document\Licensee; |
24
|
|
|
use DembeloMain\Model\Repository\Doctrine\ODM\LicenseeRepository; |
25
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; |
26
|
|
|
use Symfony\Component\HttpFoundation\Response; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* Class LicenseeControllerTest |
30
|
|
|
* @package AdminBundle\Tests\Controller |
31
|
|
|
*/ |
32
|
|
|
class LicenseeControllerTest extends WebTestCase |
33
|
|
|
{ |
34
|
|
|
/** |
35
|
|
|
* @var LicenseeController |
36
|
|
|
*/ |
37
|
|
|
private $controller; |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject|LicenseeRepository |
41
|
|
|
*/ |
42
|
|
|
private $licenseeRepositoryMock; |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* @return void |
46
|
|
|
*/ |
47
|
|
|
protected function setUp(): void |
48
|
|
|
{ |
49
|
|
|
$this->licenseeRepositoryMock = $this->createLicenseeRepositoryMock(); |
50
|
|
|
|
51
|
|
|
$this->controller = new LicenseeController($this->licenseeRepositoryMock); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* tests licenseeAction with no licensees |
56
|
|
|
* @return void |
57
|
|
|
*/ |
58
|
|
|
public function testLicenseeActionWithNoLicensees(): void |
59
|
|
|
{ |
60
|
|
|
$this->licenseeRepositoryMock->expects($this->once()) |
|
|
|
|
61
|
|
|
->method('findAll') |
62
|
|
|
->willReturn([]); |
63
|
|
|
|
64
|
|
|
/* @var $response \Symfony\Component\HttpFoundation\Response */ |
65
|
|
|
$response = $this->controller->licenseesAction(); |
66
|
|
|
$this->assertInstanceOf(Response::class, $response); |
67
|
|
|
$this->assertJsonStringEqualsJsonString('[]', $response->getContent()); |
68
|
|
|
$this->assertEquals('200', $response->getStatusCode()); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* tests licenseeAction() with one licensee |
73
|
|
|
* @return void |
74
|
|
|
*/ |
75
|
|
|
public function testLicenseeActionWithOneLicensee(): void |
76
|
|
|
{ |
77
|
|
|
$licensee = new Licensee(); |
78
|
|
|
$licensee->setName('someName'); |
79
|
|
|
$licensee->setId('someId'); |
80
|
|
|
|
81
|
|
|
$this->licenseeRepositoryMock->expects($this->once()) |
82
|
|
|
->method('findAll') |
83
|
|
|
->willReturn([$licensee]); |
84
|
|
|
|
85
|
|
|
/* @var $response \Symfony\Component\HttpFoundation\Response */ |
86
|
|
|
$response = $this->controller->licenseesAction(); |
87
|
|
|
$this->assertInstanceOf(Response::class, $response); |
88
|
|
|
$this->assertJsonStringEqualsJsonString('[{"id":"someId","name":"someName"}]', $response->getContent()); |
89
|
|
|
$this->assertEquals('200', $response->getStatusCode()); |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
/** |
93
|
|
|
* @return \PHPUnit_Framework_MockObject_MockObject|LicenseeRepository |
94
|
|
|
*/ |
95
|
|
View Code Duplication |
private function createLicenseeRepositoryMock(): LicenseeRepository |
|
|
|
|
96
|
|
|
{ |
97
|
|
|
$repository = $this->getMockBuilder(LicenseeRepository::class) |
98
|
|
|
->disableOriginalConstructor() |
99
|
|
|
->setMethods(['findAll', 'save', 'find', 'findBy', 'findOneBy', 'getClassName', 'findOneByName']) |
100
|
|
|
->getMock(); |
101
|
|
|
|
102
|
|
|
return $repository; |
|
|
|
|
103
|
|
|
} |
104
|
|
|
} |
105
|
|
|
|