]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/data/ImportableFieldsTest.php
Release 6.2.0
[Github/sugarcrm.git] / tests / data / ImportableFieldsTest.php
1 <?php
2
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 require_once('data/SugarBean.php');
40
41 class ImportableFieldsTest extends Sugar_PHPUnit_Framework_TestCase
42 {
43     protected $myBean;
44
45         public function setUp()
46         {
47         $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
48         
49         $this->myBean = new SugarBean();
50         
51         $this->myBean->field_defs = array( 
52             'id' => array('name' => 'id', 'vname' => 'LBL_ID', 'type' => 'id', 'required' => true, ),
53             'name' => array('name' => 'name', 'vname' => 'LBL_NAME', 'type' => 'varchar', 'len' => '255', 'importable' => 'required', ),
54             'bool_field' => array('name' => 'bool_field', 'vname' => 'LBL_BOOL_FIELD', 'type' => 'bool', 'importable' => false, ),
55             'int_field' => array('name' => 'int_field', 'vname' => 'LBL_INT_FIELD', 'type' => 'int', ),
56             'autoinc_field' => array('name' => 'autoinc_field', 'vname' => 'LBL_AUTOINC_FIELD', 'type' => 'true', 'auto_increment' => true, ),
57             'float_field' => array('name' => 'float_field', 'vname' => 'LBL_FLOAT_FIELD', 'type' => 'float', 'precision' => 2, ),
58             'date_field' => array('name' => 'date_field', 'vname' => 'LBL_DATE_FIELD', 'type' => 'date', ),
59             'time_field' => array('name' => 'time_field', 'vname' => 'LBL_TIME_FIELD', 'type' => 'time', 'importable' => 'false', ),
60             'datetime_field' => array('name' => 'datetime_field', 'vname' => 'LBL_DATETIME_FIELD', 'type' => 'datetime', ),
61             'link_field1' => array('name' => 'link_field1', 'type' => 'link', ),
62             'link_field2' => array('name' => 'link_field1', 'type' => 'link', 'importable' => true, ),
63             'link_field3' => array('name' => 'link_field1', 'type' => 'link', 'importable' => 'true', ),
64         );
65
66         }
67
68         public function tearDown()
69         {
70                 SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
71         unset($GLOBALS['current_user']);
72         unset($this->time_date);
73         }
74         
75         /**
76      * @ticket 31397
77      */
78         public function testImportableFields()
79         {
80         $fields = array(
81             'id',
82             'name',
83             'int_field',
84             'float_field',
85             'date_field',
86             'datetime_field',
87             'link_field2',
88             'link_field3',
89             );
90         $this->assertEquals(
91             $fields,
92             array_keys($this->myBean->get_importable_fields())
93             );
94     }
95     
96     /**
97      * @ticket 31397
98      */
99         public function testImportableRequiredFields()
100         {
101         $fields = array(
102             'name',
103             );
104         $this->assertEquals(
105             $fields,
106             array_keys($this->myBean->get_import_required_fields())
107             );
108     }
109 }