]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/ModuleBuilder/Module/Bug46196Test.php
Release 6.5.2
[Github/sugarcrm.git] / tests / modules / ModuleBuilder / Module / Bug46196Test.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 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  
39 require_once("modules/ModuleBuilder/Module/StudioModule.php");
40
41
42 /**
43  * Bug #46196
44  * Deleted field is not removed from subpanel for custom relationship
45  *
46  * @author dkroman@sugarcrm.com
47  * @ticket 46196
48  */
49 class Bug46196Test extends Sugar_PHPUnit_Framework_TestCase
50 {
51     private $_backup = array();
52
53         public function setUp()
54     {
55         $this->markTestIncomplete('Test works fine but not in queue on Jenkins');
56         return;
57
58         $this->_backup = array(
59             '_REQUEST' => $_REQUEST,
60             'sugarCache' => sugarCache::$isCacheReset
61         );
62
63         $beanList = array();
64         $beanFiles = array();
65         require('include/modules.php');
66         $GLOBALS['beanList'] = $beanList;
67         $GLOBALS['beanFiles'] = $beanFiles;
68         
69         $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser(true, 1);
70         $GLOBALS['app_list_strings'] = return_app_list_strings_language($GLOBALS['current_language']);
71     }
72     
73     public function tearDown() 
74     {
75         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
76         unset($GLOBALS['current_user']);
77         unset($GLOBALS['app_list_strings']);
78         unset($GLOBALS['beanList']);
79         unset($GLOBALS['beanFiles']);
80         rmdir_recursive('custom/modules/Accounts/metadata');
81         rmdir_recursive('custom/modules/Accounts/Ext');
82         rmdir_recursive('custom/modules/Accounts/language');
83
84         $_REQUEST = $this->_backup['_REQUEST'];
85         sugarCache::$isCacheReset = $this->_backup['sugarCache'];
86         unset($GLOBALS['reload_vardefs']);
87     }
88     
89     
90     /**
91      * Test tries to assert that field is not exist after removal it from subpanel
92      * 
93      * @group 46196
94      */
95     public function testRemoveCustomFieldFromSubpanelForCustomRelation()
96     {
97         
98         $controller = new ModuleBuilderController;
99         
100         $module_name = 'Accounts';
101         $_REQUEST['view_module'] = $module_name;
102         
103         $test_field_name = 'testfield_222222';
104         $_REQUEST['name'] = $test_field_name;
105         $_REQUEST['labelValue'] = 'testfield 222222';
106         $_REQUEST['label'] = 'LBL_TESTFIELD_222222';
107         $_REQUEST['type'] = 'varchar';
108
109         $controller->action_SaveField();
110         
111         $_REQUEST['view_module'] = $module_name;
112         $_REQUEST['relationship_type'] = 'many-to-many';
113         $_REQUEST['lhs_module'] = $module_name;
114         $_REQUEST['lhs_label'] = $module_name;
115         $_REQUEST['rhs_module'] = $module_name;
116         $_REQUEST['rhs_label'] = $module_name;
117         $_REQUEST['lhs_subpanel'] = 'default';
118         $_REQUEST['rhs_subpanel'] = 'default';
119         
120         $controller->action_SaveRelationship();
121         
122         $parser = ParserFactory::getParser('listview', $module_name, null, 'accounts_accounts');
123         $field = $parser->_fielddefs[$test_field_name . '_c'];
124         $parser->_viewdefs[$test_field_name . '_c'] = $field;
125         $parser->handleSave(false);
126         
127         $_REQUEST['type'] = 'varchar';
128         $_REQUEST['name'] = $test_field_name . '_c';
129         $controller->action_DeleteField();
130
131         $parser = ParserFactory::getParser('listview', $module_name, null, 'accounts_accounts');
132
133         $_REQUEST['relationship_name'] = 'accounts_accounts';
134         $controller->action_DeleteRelationship();
135
136         $this->assertArrayNotHasKey($test_field_name . '_c', $parser->_viewdefs);
137     }
138 }