]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/service/Bug51617Test.php
Release 6.5.9
[Github/sugarcrm.git] / tests / service / Bug51617Test.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 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 'tests/service/SOAPTestCase.php';
39
40 class Bug51617Test extends SOAPTestCase
41 {
42     protected $_account;
43
44     public function setUp()
45     {
46         $this->_soapURL = $GLOBALS['sugar_config']['site_url'].'/service/v2/soap.php';
47
48         SugarTestHelper::setUp('beanFiles');
49         SugarTestHelper::setUp('beanList');
50         SugarTestHelper::setUp('current_user', array(true, 1));
51
52         $this->field = get_widget('varchar');
53         $this->field->id = 'Accountstest_custom_c';
54         $this->field->name = 'test_custom_c';
55         $this->field->vanme = 'LBL_TEST_CUSTOM_C';
56         $this->field->comments = NULL;
57         $this->field->help = NULL;
58         $this->field->custom_module = 'Accounts';
59         $this->field->type = 'varchar';
60         $this->field->label = 'LBL_TEST_CUSTOM_C';
61         $this->field->len = 255;
62         $this->field->required = 0;
63         $this->field->default_value = NULL;
64         $this->field->date_modified = '2009-09-14 02:23:23';
65         $this->field->deleted = 0;
66         $this->field->audited = 0;
67         $this->field->massupdate = 0;
68         $this->field->duplicate_merge = 0;
69         $this->field->reportable = 1;
70         $this->field->importable = 'true';
71         $this->field->ext1 = NULL;
72         $this->field->ext2 = NULL;
73         $this->field->ext3 = NULL;
74         $this->field->ext4 = NULL;
75
76         $this->df = new DynamicField('Accounts');
77         $this->mod = new Account();
78         $this->df->setup($this->mod);
79         $this->df->addFieldObject($this->field);
80         $this->df->buildCache('Accounts');
81         VardefManager::clearVardef();
82         VardefManager::refreshVardefs('Accounts', 'Account');
83         $this->mod->field_defs = $GLOBALS['dictionary']['Account']['fields'];
84
85         $this->_account = SugarTestAccountUtilities::createAccount();
86
87         $this->_account->test_custom_c = 'Custom Field';
88         $this->_account->save();
89
90         $GLOBALS['db']->commit(); // Making sure we commit any changes
91
92         parent::setUp();
93     }
94
95     public function tearDown()
96     {
97         $this->df->deleteField($this->field);
98
99         SugarTestAccountUtilities::removeAllCreatedAccounts();
100
101         parent::tearDown();
102
103         global $soap_version_test_accountId, $soap_version_test_opportunityId, $soap_version_test_contactId;
104         unset($soap_version_test_accountId);
105         unset($soap_version_test_opportunityId);
106         unset($soap_version_test_contactId);
107
108         SugarTestHelper::tearDown();
109     }
110
111     public function testGetEntryListWithCustomField()
112     {
113         $this->_login();
114         $result = $this->_soapClient->call('get_entry_list',
115             array(
116                  'session'=>$this->_sessionId,
117                  "module_name" => 'Accounts',
118                  "accounts.id = '{$this->_account->id}'",
119                  '',
120                  0,
121                  "select_fields" => array('id', 'name', 'test_custom_c'),
122                  null,
123                  'max_results' => 1
124             )
125         );
126
127         $this->assertTrue($result['result_count'] > 0,
128             'Get_entry_list failed: Fault code: '.$this->_soapClient->faultcode.', fault string:'.$this->_soapClient->faultstring.', fault detail: '.$this->_soapClient->faultdetail);
129
130         $row = array();
131         $row = $result['entry_list'][0]['name_value_list'];
132
133         // find the custom field
134         if (!empty($row))
135         {
136             foreach($row as $r) {
137                 // just make sure they are all not empty
138                 $this->assertNotEmpty($r['value']);
139                 // make sure that the test field has our value in it
140                 if($r['name'] == "test_custom_c") {
141                     $this->assertEquals("Custom Field", $r['value']);
142                 }
143             }
144         } // if
145
146     } // fn
147 }