]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/UpgradeWizard/SugarMerge/Bug37725Test.php
Release 6.3.1
[Github/sugarcrm.git] / tests / modules / UpgradeWizard / SugarMerge / Bug37725Test.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 require_once 'include/dir_inc.php';
38
39 class Bug37725Test extends Sugar_PHPUnit_Framework_TestCase  {
40
41 var $merge;
42 var $has_dir;
43 var $modules;
44
45 function setUp() {
46    $this->modules = array('Meetings');
47    $this->has_dir = array();
48    
49    foreach($this->modules as $module) {
50            if(!file_exists("custom/modules/{$module}/metadata")){
51                   mkdir_recursive("custom/modules/{$module}/metadata", true);
52            }
53            
54            if(file_exists("custom/modules/{$module}")) {
55                   $this->has_dir[$module] = true;
56            }
57            
58            $files = array('detailviewdefs');
59            foreach($files as $file) {
60                    if(file_exists("custom/modules/{$module}/metadata/{$file}")) {
61                           copy("custom/modules/{$module}/metadata/{$file}.php", "custom/modules/{$module}/metadata/{$file}.php.bak");
62                    }
63                    
64                    if(file_exists("custom/modules/{$module}/metadata/{$file}.php.suback.php")) {
65                       copy("custom/modules/{$module}/metadata/{$file}.php.suback.php", "custom/modules/{$module}/metadata/{$file}.php.suback.bak");
66                    }
67                    
68                    if(file_exists("tests/modules/UpgradeWizard/SugarMerge/od_metadata_files/custom/modules/{$module}/metadata/{$file}.php")) {
69                           copy("tests/modules/UpgradeWizard/SugarMerge/od_metadata_files/custom/modules/{$module}/metadata/{$file}.php", "custom/modules/{$module}/metadata/{$file}.php");
70                    }
71            } //foreach
72    } //foreach
73 }
74
75
76 function tearDown() {
77
78    foreach($this->modules as $module) {
79            if(!$this->has_dir[$module]) {
80                   rmdir_recursive("custom/modules/{$module}");
81            }  else {
82                    $files = array('detailviewdefs');
83                    foreach($files as $file) {
84                       if(file_exists("custom/modules/{$module}/metadata/{$file}.php.bak")) {
85                          copy("custom/modules/{$module}/metadata/{$file}.php.bak", "custom/modules/{$module}/metadata/{$file}.php");
86                      unlink("custom/modules/{$module}/metadata/{$file}.php.bak");
87                       } else if(file_exists("custom/modules/{$module}/metadata/{$file}.php")) {
88                          unlink("custom/modules/{$module}/metadata/{$file}.php");
89                       }
90                       
91                           if(file_exists("custom/modules/{$module}/metadata/{$module}.php.suback.bak")) {
92                          copy("custom/modules/{$module}/metadata/{$file}.php.suback.bak", "custom/modules/{$module}/metadata/{$file}.php.suback.php");
93                      unlink("custom/modules/{$module}/metadata/{$file}.php.suback.bak");
94                       } else if(file_exists("custom/modules/{$module}/metadata/{$file}.php.suback.php")) {
95                          unlink("custom/modules/{$module}/metadata/{$file}.php.suback.php");
96                       }  
97                    }
98            }
99    } //foreach
100 }
101
102
103 function test_meetings_detailview_merge() {             
104    require_once 'modules/UpgradeWizard/SugarMerge/DetailViewMerge.php';
105    $this->merge = new DetailViewMerge();        
106    $this->merge->merge('Meetings', 'tests/modules/UpgradeWizard/SugarMerge/od_metadata_files/551/modules/Meetings/metadata/detailviewdefs.php', 'modules/Meetings/metadata/detailviewdefs.php', 'custom/modules/Meetings/metadata/detailviewdefs.php');
107    $this->assertTrue(file_exists('custom/modules/Meetings/metadata/detailviewdefs.php.suback.php'));
108    require('custom/modules/Meetings/metadata/detailviewdefs.php');
109    $fields = array();
110    $panels = array();
111    
112    //echo var_export($viewdefs['Meetings']['DetailView']['panels'], true);
113    $columns_sanitized = true;
114    
115    $date_entered_field = '';
116    $date_modified_field = '';
117    
118    foreach($viewdefs['Meetings']['DetailView']['panels'] as $panel_key=>$panel) {
119           $panels[$panel_key] = $panel_key;
120           foreach($panel as $r=>$row) {
121                  $new_row = true;
122                  foreach($row as $col_key=>$col) {
123                         if($new_row && $col_key != 0) {
124                            $columns_sanitized = false;   
125                         }
126                         
127                         $new_row = false;
128                         
129                         $id = is_array($col) && isset($col['name']) ? $col['name'] : $col;
130                         if(!empty($id) && !is_array($id)) {
131                            $fields[$id] = $col;
132                         }
133                         
134                         if($id == 'date_entered') {
135                            $date_entered_field = $col;
136                         } else if($id == 'date_modified') {
137                            $date_modified_field = $col;
138                         }
139                  }
140           }
141    }
142    
143    $this->assertTrue(isset($fields['meetings_opportunities_name']), "Assert that meetings_opportunities_name field is preserved");
144    $this->assertTrue($viewdefs['Meetings']['DetailView']['panels']['default'][0][0]['name'] == 'name', "Assert that position of name field has not changed");
145    $this->assertTrue($viewdefs['Meetings']['DetailView']['panels']['default'][0][1]['name'] == 'status', "Assert that position of status field has not changed");
146    $this->assertTrue(isset($fields['date_modified']), "Assert that date_modified field is added");
147    $this->assertTrue(isset($fields['date_entered']), "Assert that date_entered field is added");
148    $this->assertTrue(!isset($fields['created_by_name']), "Assert that the created_by_name was merged");
149    $this->assertTrue(isset($date_entered_field) && $date_entered_field['customCode'] == '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}', "Assert that date_entered field is correctly merged");
150    $this->assertTrue(isset($date_modified_field) && $date_modified_field['label'] == 'LBL_DATE_MODIFIED' && $date_modified_field['customCode'] == '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}', "Assert that date_modified field is correctly merged");
151 }
152
153
154 }
155 ?>