1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace OnurbTest\Bundle\YumlBundle\Controller; |
4
|
|
|
|
5
|
|
|
use Onurb\Bundle\YumlBundle\Controller\YumlController; |
6
|
|
|
|
7
|
|
|
use Symfony\Component\DependencyInjection\ContainerInterface; |
8
|
|
|
use Symfony\Component\HttpFoundation\RedirectResponse; |
9
|
|
|
|
10
|
|
|
class YumlControllerTest extends \PHPUnit_Framework_TestCase |
11
|
|
|
{ |
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* @var ContainerInterface |
15
|
|
|
*/ |
16
|
|
|
protected $container; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* @var string |
20
|
|
|
*/ |
21
|
|
|
protected $controllerName = 'Onurb\\Bundle\\YumlBundle\\Controller\\YumlController'; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @covers \Onurb\Bundle\YumlBundle\Controller\YumlController |
25
|
|
|
*/ |
26
|
|
|
public function testIndexAction() |
27
|
|
|
{ |
28
|
|
|
$yumlClient = $this->getMock('Onurb\\Bundle\\YumlBundle\\Yuml\\YumlClientInterface'); |
29
|
|
|
|
30
|
|
|
$yumlClient->expects($this->once()) |
31
|
|
|
->method('makeDslText') |
32
|
|
|
->will($this->returnValue('[Simple.Entity|+a;b;c]')); |
33
|
|
|
|
34
|
|
|
$yumlClient->expects($this->once()) |
35
|
|
|
->method('getGraphUrl') |
36
|
|
|
->will($this->returnValue('http://yuml.me/15a98c92.png')); |
37
|
|
|
|
38
|
|
|
$this->container = $this->getMock('Symfony\\Component\\DependencyInjection\\ContainerInterface'); |
39
|
|
|
|
40
|
|
|
$this->container->expects($this->any())->method('get') |
41
|
|
|
->with($this->matches('onurb_yuml.client')) |
42
|
|
|
->will($this->returnValue($yumlClient)); |
43
|
|
|
|
44
|
|
|
$this->container->expects($this->any())->method('getParameter') |
45
|
|
|
->will( |
46
|
|
|
$this->returnCallback( |
47
|
|
|
function($arg) { |
|
|
|
|
48
|
|
|
switch ($arg) { |
49
|
|
|
case 'onurb_yuml.show_fields_description': |
50
|
|
|
return false; |
51
|
|
|
break; |
|
|
|
|
52
|
|
|
case 'onurb_yuml.colors': |
53
|
|
|
case 'onurb_yuml.notes': |
54
|
|
|
return array(); |
55
|
|
|
break; |
|
|
|
|
56
|
|
|
default: |
57
|
|
|
return false; |
58
|
|
|
} |
59
|
|
|
} |
60
|
|
|
) |
61
|
|
|
); |
62
|
|
|
|
63
|
|
|
$controller = $this->createController(); |
64
|
|
|
|
65
|
|
|
$response = $controller->indexAction(); |
66
|
|
|
|
67
|
|
|
//On teste si la r�ponse est bien une redirection. |
68
|
|
|
$this->assertTrue($response instanceof RedirectResponse); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
protected function createController() |
72
|
|
|
{ |
73
|
|
|
/** |
74
|
|
|
* @var \Onurb\Bundle\YumlBundle\Controller\YumlController $controller |
75
|
|
|
*/ |
76
|
|
|
$controller = new $this->controllerName; |
77
|
|
|
$controller->setContainer($this->container); |
78
|
|
|
|
79
|
|
|
return($controller); |
80
|
|
|
} |
81
|
|
|
} |
82
|
|
|
|