]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/DynamicFields/Bug61859_p2Test.php
Release 6.5.13
[Github/sugarcrm.git] / tests / modules / DynamicFields / Bug61859_p2Test.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('modules/DynamicFields/DynamicField.php');
39
40 class Bug61859_p2Test extends Sugar_PHPUnit_Framework_TestCase
41 {
42
43     static private $module = 'Leads';
44     private $object = 'Lead';
45     private $relatedModule = 'Contacts';
46
47     static private $field;
48     static private $dynamicField;
49
50     /**
51      * @group 61859
52      */
53     public function testAddField()
54     {
55         $this->addField('testfieldbug61859');
56         SugarTestHelper::setUp('dictionary');
57
58         $idName = $GLOBALS['dictionary'][$this->object]['fields'][self::$field->name]['id_name'];
59
60         $this->assertArrayHasKey(self::$field->name, $GLOBALS['dictionary'][$this->object]['fields']);
61         $this->assertArrayHasKey($idName, $GLOBALS['dictionary'][$this->object]['fields']);
62
63         return $idName;
64     }
65
66     /**
67      * @depends testAddField
68      * @group 61859
69      */
70     public function testUpdateField($idName)
71     {
72
73         self::$field->label_value = 'UpdatedLabel';
74         self::$field->save(self::$dynamicField);
75
76         SugarTestHelper::setUp('dictionary');
77
78         $this->assertEquals($idName, self::$field->ext3);
79
80     }
81
82     private function addField($name)
83     {
84         $labelName = 'LBL_' . strtoupper($name);
85         $field = get_widget('relate');
86         $field->audited = 0;
87         $field->view = 'edit';
88         $field->name = $name;
89         $field->vname = $labelName;
90         $field->label = $labelName;
91
92         $field->ext2 = $this->relatedModule;
93         $field->label_value = $name;
94         $field->save(self::$dynamicField);
95
96         self::$field = $field;
97     }
98
99     static public function setUpBeforeClass()
100     {
101         parent::setUpBeforeClass();
102
103         SugarTestHelper::setUp('app_list_strings');
104         SugarTestHelper::setUp('mod_strings', array(self::$module));
105         SugarTestHelper::setUp('mod_strings', array('ModuleBuilder'));
106
107         SugarTestHelper::setUp('beanList');
108         SugarTestHelper::setUp('beanFiles');
109         SugarTestHelper::setUp('dictionary');
110         SugarTestHelper::setUp('current_user');
111
112         self::$dynamicField = new DynamicField(self::$module);
113         self::$dynamicField->setup(BeanFactory::getBean(self::$module));
114
115     }
116
117     static public function tearDownAfterClass()
118     {
119         self::$field->delete(self::$dynamicField);
120
121         SugarTestHelper::tearDown();
122         parent::tearDownAfterClass();
123     }
124
125 }