]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/SugarFields/Fields/Relate/SugarFieldRelateTest.php
Release 6.2.0
[Github/sugarcrm.git] / tests / include / SugarFields / Fields / Relate / SugarFieldRelateTest.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('include/SugarFields/Fields/Relate/SugarFieldRelate.php');
39
40 class SugarFieldRelateTest extends Sugar_PHPUnit_Framework_TestCase
41 {
42         public function setUp()
43     {
44         $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
45         }
46
47     public function tearDown()
48     {
49         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
50         unset($GLOBALS['current_user']);
51     }
52     
53         public function testFormatContactNameWithFirstName()
54         {
55         $GLOBALS['current_user']->setPreference('default_locale_name_format','l f');
56         
57             $vardef = array('name' => 'contact_name');
58             $value = 'John Mertic';
59             
60             $sfr = new SugarFieldRelate('relate');
61             
62             $this->assertEquals(
63             $sfr->formatField($value,$vardef),
64             'Mertic John'
65             );
66     }
67     
68     /**
69      * @ticket 35265
70      */
71     public function testFormatContactNameWithoutFirstName()
72         {
73         $GLOBALS['current_user']->setPreference('default_locale_name_format','l f');
74         
75             $vardef = array('name' => 'contact_name');
76             $value = 'Mertic';
77             
78             $sfr = new SugarFieldRelate('relate');
79             
80             $this->assertEquals(
81             trim($sfr->formatField($value,$vardef)),
82             'Mertic'
83             );
84     }
85     
86     /**
87      * @ticket 35265
88      */
89     public function testFormatContactNameThatIsEmpty()
90         {
91         $GLOBALS['current_user']->setPreference('default_locale_name_format','l f');
92         
93             $vardef = array('name' => 'contact_name');
94             $value = '';
95             
96             $sfr = new SugarFieldRelate('relate');
97             
98             $this->assertEquals(
99             trim($sfr->formatField($value,$vardef)),
100             ''
101             );
102     }
103     
104     public function testFormatOtherField()
105         {
106         $GLOBALS['current_user']->setPreference('default_locale_name_format','l f');
107         
108             $vardef = array('name' => 'account_name');
109             $value = 'John Mertic';
110             
111             $sfr = new SugarFieldRelate('relate');
112             
113             $this->assertEquals(
114             $sfr->formatField($value,$vardef),
115             'John Mertic'
116             );
117     }
118     
119     /**
120      * @group bug38548
121     */
122     public function testGetSearchViewSmarty(){
123         $vardef = array (
124                         'name' => 'assigned_user_id',
125                         'rname' => 'user_name',
126                         'id_name' => 'assigned_user_id',
127                         'vname' => 'LBL_ASSIGNED_TO_ID',
128                         'group'=>'assigned_user_name',
129                         'type' => 'relate',
130                         'table' => 'users',
131                         'module' => 'Users',
132                         'reportable'=>true,
133                         'isnull' => 'false',
134                         'dbType' => 'id',
135                         'audited'=>true,
136                         'comment' => 'User ID assigned to record',
137             'duplicate_merge'=>'disabled'           
138                 );
139                 $displayParams = array();
140                 $sfr = new SugarFieldRelate('relate');
141                 $output = $sfr->getSearchViewSmarty(array(), $vardef, $displayParams, 0);
142                 $this->assertContains('name="{$Array.assigned_user_id', $output, 'Testing that the name property is in the form for thr assigned_user_id field');
143                 
144                 $vardef =  array (
145                                     'name' => 'account_name',
146                                     'rname' => 'name',
147                                     'id_name' => 'account_id',
148                                     'vname' => 'LBL_ACCOUNT_NAME',
149                                     'type' => 'relate',
150                                     'table' => 'accounts',
151                                     'join_name'=>'accounts',
152                                     'isnull' => 'true',
153                                     'module' => 'Accounts',
154                                     'dbType' => 'varchar',
155                                     'link'=>'accounts',
156                                     'len' => '255',
157                                          'source'=>'non-db',
158                                          'unified_search' => true,
159                                          'required' => true,
160                                          'importable' => 'required',
161                                      'required' => true,
162                                   );
163                 $displayParams = array();
164                 $sfr = new SugarFieldRelate('relate');
165                 $output = $sfr->getSearchViewSmarty(array(), $vardef, $displayParams, 0);
166                 $this->assertNotContains('name="{$Array.account_id', $output, 'Testing that the name property for account_id is not in the form.');
167     }
168 }