]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/service/SOAPTestCase.php
Release 6.4.0
[Github/sugarcrm.git] / tests / service / SOAPTestCase.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/nusoap/nusoap.php');
39 require_once('include/TimeDate.php');
40
41 abstract class SOAPTestCase extends Sugar_PHPUnit_Framework_TestCase
42 {
43         public static $_user = null;
44         public $_soapClient = null;
45         public $_session = null;
46         public $_sessionId = '';
47     public $_soapURL = '';
48
49     public static function setUpBeforeClass()
50     {
51         self::$_user = SugarTestUserUtilities::createAnonymousUser();
52         self::$_user->status = 'Active';
53         self::$_user->is_admin = 1;
54         self::$_user->save();
55         $GLOBALS['db']->commit();
56         $GLOBALS['current_user'] = self::$_user;
57     }
58
59     public static function tearDownAfterClass()
60     {
61         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
62         SugarTestContactUtilities::removeAllCreatedContacts();
63         SugarTestAccountUtilities::removeAllCreatedAccounts();
64         unset($GLOBALS['current_user']);
65         $GLOBALS['db']->commit();
66     }
67
68     /**
69      * Create test user
70      *
71      */
72         public function setUp()
73     {
74         $beanList = array();
75                 $beanFiles = array();
76                 require('include/modules.php');
77                 $GLOBALS['beanList'] = $beanList;
78                 $GLOBALS['beanFiles'] = $beanFiles;
79
80         $this->_soapClient = new nusoapclient($this->_soapURL,false,false,false,false,false,600,600);
81         parent::setUp();
82         $GLOBALS['db']->commit();
83     }
84
85     /**
86      * Remove anything that was used during this test
87      *
88      */
89     public function tearDown()
90     {
91         $this->_sessionId = '';
92
93                 unset($GLOBALS['beanList']);
94                 unset($GLOBALS['beanFiles']);
95         $GLOBALS['db']->commit();
96     }
97
98     protected function _login()
99     {
100         $GLOBALS['db']->commit();
101         $result = $this->_soapClient->call('login',
102             array('user_auth' =>
103                 array('user_name' => self::$_user->user_name,
104                     'password' => self::$_user->user_hash,
105                     'version' => '.01'),
106                 'application_name' => 'SoapTest', "name_value_list" => array())
107             );
108         $this->_sessionId = $result['id'];
109                 return $result;
110     }
111
112     /**
113      * Create a test user
114      *
115      */
116         public function _setupTestUser() {
117         $this->_user = SugarTestUserUtilities::createAnonymousUser();
118         $this->_user->status = 'Active';
119         $this->_user->is_admin = 1;
120         $this->_user->save();
121         $GLOBALS['db']->commit();
122         $GLOBALS['current_user'] = $this->_user;
123     }
124
125     /**
126      * Remove user created for test
127      *
128      */
129         public function _tearDownTestUser() {
130        SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
131        unset($GLOBALS['current_user']);
132     }
133
134 }