]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/Calls/CallTest.php
Release 6.5.5
[Github/sugarcrm.git] / tests / modules / Calls / CallTest.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 require_once 'modules/Calls/Call.php';
38
39 class CallTest extends Sugar_PHPUnit_Framework_TestCase
40 {
41     /**
42      * @var Call our call object
43      */
44     private $callid;
45
46     public function setUp()
47     {
48         $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
49     }
50
51     public function tearDown()
52     {
53         if(!empty($this->callid)) {
54             $GLOBALS['db']->query("DELETE FROM calls WHERE id='{$this->callid}'");
55             $GLOBALS['db']->query("DELETE FROM vcals WHERE user_id='{$GLOBALS['current_user']->id}'");
56         }
57         SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
58         unset( $GLOBALS['current_user']);
59         unset( $GLOBALS['mod_strings']);
60     }
61
62     /**
63      * @group bug40999
64      */
65     public function testCallStatus()
66     {
67          $call = new Call();
68          $this->callid = $call->id = create_guid();
69          $call->new_with_id = 1;
70          $call->status = 'Test';
71          $call->save();
72          // then retrieve
73          $call = new Call();
74          $call->retrieve($this->callid);
75          $this->assertEquals('Test', $call->status);
76     }
77
78     /**
79      * @group bug40999
80      */
81     public function testCallEmptyStatus()
82     {
83          $call = new Call();
84          $this->callid = $call->id = create_guid();
85          $call->new_with_id = 1;
86          $call->save();
87          // then retrieve
88          $call = new Call();
89          $call->retrieve($this->callid);
90          $this->assertEquals('Planned', $call->status);
91     }
92
93     /**
94      * @group bug40999
95      * Check if empty status is handled correctly
96      */
97     public function testCallEmptyStatusLang()
98     {
99         $langpack = new SugarTestLangPackCreator();
100         $langpack->setModString('LBL_DEFAULT_STATUS','FAILED!','Calls');
101         $langpack->save();
102         $GLOBALS['mod_strings'] = return_module_language($GLOBALS['current_language'], 'Calls');         
103         
104          $call = new Call();
105          $this->callid = $call->id = create_guid();
106          $call->new_with_id = 1;
107          $call->save();
108          // then retrieve
109          $call = new Call();
110          $call->retrieve($this->callid);
111          $this->assertEquals('Planned', $call->status);
112     }
113
114     /**
115      * @group bug40999
116      * Check if empty status is handled correctly
117      */
118     public function testCallEmptyStatusLangConfig()
119     {
120          $langpack = new SugarTestLangPackCreator();
121          $langpack->setModString('LBL_DEFAULT_STATUS','FAILED!','Calls');
122          $langpack->save();
123          $GLOBALS['mod_strings'] = return_module_language($GLOBALS['current_language'], 'Calls');         
124         
125          $call = new Call();
126          $call->field_defs['status']['default'] = 'My Call';
127          $call = new Call();
128          $this->callid = $call->id = create_guid();
129          $call->new_with_id = 1;
130          $call->save();
131          // then retrieve
132          $call = new Call();
133          $call->retrieve($this->callid);
134          $this->assertEquals('My Call', $call->status);
135     }
136 }