]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/data/ImportableFieldsTest.php
Release 6.2.0RC2
[Github/sugarcrm.git] / tests / data / ImportableFieldsTest.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('data/SugarBean.php');
39
40 class ImportableFieldsTest extends Sugar_PHPUnit_Framework_TestCase
41 {
42     protected $myBean;
43
44         public function setUp()
45         {
46         $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
47         
48         $this->myBean = new SugarBean();
49         
50         $this->myBean->field_defs = array( 
51             'id' => array('name' => 'id', 'vname' => 'LBL_ID', 'type' => 'id', 'required' => true, ),
52             'name' => array('name' => 'name', 'vname' => 'LBL_NAME', 'type' => 'varchar', 'len' => '255', 'importable' => 'required', ),
53             'bool_field' => array('name' => 'bool_field', 'vname' => 'LBL_BOOL_FIELD', 'type' => 'bool', 'importable' => false, ),
54             'int_field' => array('name' => 'int_field', 'vname' => 'LBL_INT_FIELD', 'type' => 'int', ),
55             'autoinc_field' => array('name' => 'autoinc_field', 'vname' => 'LBL_AUTOINC_FIELD', 'type' => 'true', 'auto_increment' => true, ),
56             'float_field' => array('name' => 'float_field', 'vname' => 'LBL_FLOAT_FIELD', 'type' => 'float', 'precision' => 2, ),
57             'date_field' => array('name' => 'date_field', 'vname' => 'LBL_DATE_FIELD', 'type' => 'date', ),
58             'time_field' => array('name' => 'time_field', 'vname' => 'LBL_TIME_FIELD', 'type' => 'time', 'importable' => 'false', ),
59             'datetime_field' => array('name' => 'datetime_field', 'vname' => 'LBL_DATETIME_FIELD', 'type' => 'datetime', ),
60             'link_field1' => array('name' => 'link_field1', 'type' => 'link', ),
61             'link_field2' => array('name' => 'link_field1', 'type' => 'link', 'importable' => true, ),
62             'link_field3' => array('name' => 'link_field1', 'type' => 'link', 'importable' => 'true', ),
63         );
64
65         }
66
67         public function tearDown()
68         {
69                 SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
70         unset($GLOBALS['current_user']);
71         unset($this->time_date);
72         }
73         
74         /**
75      * @ticket 31397
76      */
77         public function testImportableFields()
78         {
79         $fields = array(
80             'id',
81             'name',
82             'int_field',
83             'float_field',
84             'date_field',
85             'datetime_field',
86             'link_field2',
87             'link_field3',
88             );
89         $this->assertEquals(
90             $fields,
91             array_keys($this->myBean->get_importable_fields())
92             );
93     }
94     
95     /**
96      * @ticket 31397
97      */
98         public function testImportableRequiredFields()
99         {
100         $fields = array(
101             'name',
102             );
103         $this->assertEquals(
104             $fields,
105             array_keys($this->myBean->get_import_required_fields())
106             );
107     }
108 }