Blame view

tests/TestCase/Controller/PagesControllerTest.php 2.59 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @since         1.2.0
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
 */
namespace App\Test\TestCase\Controller;

use App\Controller\PagesController;
use Cake\Core\App;
use Cake\Core\Configure;
use Cake\Network\Request;
use Cake\Network\Response;
use Cake\TestSuite\IntegrationTestCase;
use Cake\View\Exception\MissingTemplateException;

/**
 * PagesControllerTest class
 */
class PagesControllerTest extends IntegrationTestCase
{
183ce554   Alexandre   Ajout de test, su...
30
31
32
33
34
35
36
37
	/**
	 * Fixtures
	 *
	 * @var array
	 */
	public $fixtures = [
			'app.configurations',
	];
6c4edfa3   Alexandre   First Commit LabI...
38

e1f6c5b7   Alexandre   Version: 2.3.0.0
39
40
41
42
43
44
45
46
47
48
49
50
51
52
     public function authUser() {
     	     $user = [
     	     		'Auth' => [
     	     				'User' => [
     	     						'sn' => [0 => 'test2'],
									'mail' => [0 => 'test@test.fr'],
									'uid' => [0 => 'testa'],
									'givenname' => [0 => 'test1'],
									'cn' => [0 => 'testa'],
									'userpassword' => [0 => 'test'],
     	     				]
     	     		]
     	     ];
     	   $this->session($user);
49ec2c4a   Alexandre   Version: 2.3.1.0
53
54
55
     	   
     	   $authType = ['authType' => 'cn'];
     	   $this->session($authType);
e1f6c5b7   Alexandre   Version: 2.3.0.0
56
     }
183ce554   Alexandre   Ajout de test, su...
57
58
59
	
	
	
6c4edfa3   Alexandre   First Commit LabI...
60
61
62
63
64
65
66
    /**
     * testDisplay method
     *
     * @return void
     */
    public function testDisplay()
    {
183ce554   Alexandre   Ajout de test, su...
67
68
    	$this->authUser();
    	
6c4edfa3   Alexandre   First Commit LabI...
69
70
        $this->get('/pages/home');
        $this->assertResponseOk();
183ce554   Alexandre   Ajout de test, su...
71
72
        $this->assertResponseContains('Accueil');

6c4edfa3   Alexandre   First Commit LabI...
73
74
75
76
77
78
79
80
81
    }

    /**
     * Test that missing template renders 404 page in production
     *
     * @return void
     */
    public function testMissingTemplate()
    {
183ce554   Alexandre   Ajout de test, su...
82
83
    	$this->authUser();
    	
6c4edfa3   Alexandre   First Commit LabI...
84
85
86
        Configure::write('debug', false);
        $this->get('/pages/not_existing');

771aa727   Alexandre   Version: 2.3.2.0
87
        $this->assertResponseContains('Cette action est impossible');
183ce554   Alexandre   Ajout de test, su...
88
        
6c4edfa3   Alexandre   First Commit LabI...
89
90
91
92
93
94
95
96
97
    }

    /**
     * Test that missing template in debug mode renders missing_template error page
     *
     * @return void
     */
    public function testMissingTemplateInDebug()
    {
183ce554   Alexandre   Ajout de test, su...
98
99
    	$this->authUser();
    	
6c4edfa3   Alexandre   First Commit LabI...
100
101
102
103
104
105
        Configure::write('debug', true);
        $this->get('/pages/not_existing');

        $this->assertResponseFailure();
        $this->assertResponseContains('Missing Template');
        $this->assertResponseContains('Stacktrace');
183ce554   Alexandre   Ajout de test, su...
106
    
6c4edfa3   Alexandre   First Commit LabI...
107
108
    }
}