Blame view

tests/TestCase/Controller/PagesControllerTest.php 2.4 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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;

a0fefb3d   Thibaud Ajas   bugfixes suite au...
17
18
use Cake\Core\Configure;
use Cake\TestSuite\IntegrationTestCase;
6c4edfa3   Alexandre   First Commit LabI...
19
20
21
22
23
24

/**
 * PagesControllerTest class
 */
class PagesControllerTest extends IntegrationTestCase
{
183ce554   Alexandre   Ajout de test, su...
25
26
27
28
29
30
31
32
	/**
	 * Fixtures
	 *
	 * @var array
	 */
	public $fixtures = [
			'app.configurations',
	];
6c4edfa3   Alexandre   First Commit LabI...
33

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

6c4edfa3   Alexandre   First Commit LabI...
67
68
69
70
71
72
73
74
75
    }

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

771aa727   Alexandre   Version: 2.3.2.0
81
        $this->assertResponseContains('Cette action est impossible');
183ce554   Alexandre   Ajout de test, su...
82
        
6c4edfa3   Alexandre   First Commit LabI...
83
84
85
86
87
88
89
90
91
    }

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

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