]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/SearchForm/FileLocatorTest.php
Release 6.5.10
[Github/sugarcrm.git] / tests / include / SearchForm / FileLocatorTest.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37
38 require_once 'include/SearchForm/SearchForm2.php';
39
40 class FileLocatorTest extends Sugar_PHPUnit_Framework_TestCase
41 {
42     protected $form;
43     protected $tempfiles = array();
44
45     public function setUp()
46     {
47         $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
48         $GLOBALS['app_strings'] = return_application_language($GLOBALS['current_language']);
49         $acc = new Account();
50         $this->form = new SearchFormMock($acc, "Accounts");
51     }
52
53     public function tearDown()
54     {
55         unset($GLOBALS['app_strings']);
56         unset($GLOBALS['current_user']);
57         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
58         if(!empty($this->tempfiles)) {
59             foreach($this->tempfiles as $file) {
60                 @unlink($file);
61             }
62         }
63     }
64
65
66     /**
67      * Check file locator
68      */
69     public function testFileLocatorOptions()
70     {
71         $options = $this->form->getOptions();
72         $this->assertNotEmpty($options['locator_class_params'][0]);
73         $this->assertContains("custom/modules/Accounts/tpls/SearchForm", $options['locator_class_params'][0]);
74         $this->assertContains("modules/Accounts/tpls/SearchForm", $options['locator_class_params'][0]);
75     }
76
77     /**
78      * Check file locator
79      */
80     public function testFileLocatorSetOptions()
81     {
82         $paths = array('a', 'b', 'c');
83
84         $options = array(
85             'locator_class' => 'FileLocator',
86             'locator_class_params' => array(
87                 $paths
88             )
89             );
90         $this->form->setOptions($options);
91         $options = $this->form->getOptions();
92         $this->assertEquals($paths, $options['locator_class_params'][0]);
93     }
94
95     /**
96      * Check file locator
97      */
98     public function testFileLocatorOptionsCtor()
99     {
100         $paths = array('a', 'b', 'c');
101
102         $options = array(
103             'locator_class' => 'FileLocator',
104             'locator_class_params' => array(
105                 $paths
106             )
107             );
108         $this->form = new SearchForm(new Account(), "Accounts", 'index', $options);
109         $options = $this->form->getOptions();
110         $this->assertEquals($paths, $options['locator_class_params'][0]);
111     }
112
113     public function testFileLocatorFindSystemFile()
114     {
115         $this->assertEquals("include/SearchForm/tpls/SearchFormGenericAdvanced.tpl",
116             $this->form->locateFile('SearchFormGenericAdvanced.tpl'),
117             "Wrong file location"
118             );
119     }
120
121     public function testFileLocatorFindCustomFile()
122     {
123         sugar_mkdir('custom/include/SearchForm/tpls/', 0755, true);
124         sugar_mkdir('custom/modules/Accounts/tpls/SearchForm', 0755, true);
125         $this->tempfiles[]= 'custom/include/SearchForm/tpls/FileLocatorTest.tpl';
126         file_put_contents('custom/include/SearchForm/tpls/FileLocatorTest.tpl', "unittest");
127         $this->assertEquals("custom/include/SearchForm/tpls/FileLocatorTest.tpl",
128             $this->form->locateFile('FileLocatorTest.tpl'),
129             "Wrong file location"
130             );
131
132         $this->tempfiles[] = "custom/modules/Accounts/tpls/SearchForm/FileLocatorTest.tpl";
133         file_put_contents('custom/modules/Accounts/tpls/SearchForm/FileLocatorTest.tpl', "unittest");
134         $this->assertEquals("custom/modules/Accounts/tpls/SearchForm/FileLocatorTest.tpl",
135             $this->form->locateFile('FileLocatorTest.tpl'),
136             "Wrong file location"
137             );
138     }
139 }
140
141 class SearchFormMock extends SearchForm
142 {
143     public function locateFile($file)
144     {
145         return parent::locateFile($file);
146     }
147 }