]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/SubPanel/ITR27836Test.php
Release 6.4.0
[Github/sugarcrm.git] / tests / include / SubPanel / ITR27836Test.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 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('data/SugarBean.php');
39 require_once('modules/Contacts/Contact.php');
40 require_once('include/SubPanel/SubPanel.php');
41 require_once('include/SubPanel/SubPanelDefinitions.php');
42
43 /**
44  * @itr 27836
45  */
46 class ITR27836Test extends Sugar_PHPUnit_Framework_TestCase
47 {       
48     protected $bean;
49
50         public function setUp()
51         {
52             global $moduleList, $beanList, $beanFiles;
53         require('include/modules.php');
54             $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
55         $this->bean = new Contact();
56         }
57
58         public function tearDown()
59         {
60                 SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
61         unset($GLOBALS['current_user']);
62
63                 require_once('ModuleInstall/ModuleInstaller.php');
64                 $moduleInstaller = new ModuleInstaller();
65                 $moduleInstaller->silent = true; // make sure that the ModuleInstaller->log() function doesn't echo while rebuilding the layoutdefs
66                 $moduleInstaller->rebuild_layoutdefs();
67         }
68
69
70     public function subpanelProvider()
71     {
72         return array(
73             //Hidden set to true
74
75             array(
76                 'data' => array(
77                     'testpanel' => array(
78                         'order' => 20,
79                         'sort_order' => 'desc',
80                         'sort_by' => 'date_entered',
81                         'type' => 'collection',
82                         'top_buttons' => array(),
83                     ),
84                     'default_hidden' => true,
85                     'subpanel_name' => 'history',
86                     'module' => 'Contacts'
87                 ),
88             ),
89
90             //Hidden set to false
91             array
92             (
93                 'data' => array(
94                     'testpanel' => array(
95                         'order' => 20,
96                         'sort_order' => 'desc',
97                         'sort_by' => 'date_entered',
98                         'type' => 'collection',
99                         'top_buttons' => array(),
100                     ),
101                     'default_hidden' => false,
102                     'subpanel_name' => 'history',
103                     'module' => 'Contacts'
104                 ),
105             ),
106
107             //Hidden not set
108             array(
109                 'data' => array(
110                     'testpanel' => array(
111                         'order' => 20,
112                         'sort_order' => 'desc',
113                         'sort_by' => 'date_entered',
114                         'type' => 'collection',
115                         'top_buttons' => array(),
116                     ),
117                     'subpanel_name' => 'history',
118                     'module' => 'Contacts'
119                 ),
120             ),
121         );
122     }
123     
124     /**
125      * testSubpanelDisplay
126      *
127      * @dataProvider subpanelProvider
128      */
129     public function testSubPanelDisplay($subpanel)
130     {
131         $subpanel_def = new aSubPanel("testpanel", $subpanel, $this->bean);
132
133         if(isset($subpanel['default_hidden']) && $subpanel['default_hidden'] === true)
134         {
135             $this->assertTrue($subpanel_def->isDefaultHidden());
136         } else {
137             $this->assertFalse($subpanel_def->isDefaultHidden());
138         }
139     }
140
141 }