Blame view

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

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

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

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

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

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