]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/Trackers/store/Bug41051Test.php
Release 6.2.3
[Github/sugarcrm.git] / tests / modules / Trackers / store / Bug41051Test.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
39  
40 require_once('modules/Trackers/store/TrackerSessionsDatabaseStore.php');
41 require_once('modules/Trackers/TrackerManager.php');
42
43 class Bug41051Test extends Sugar_PHPUnit_Framework_TestCase {
44         
45 var $disabledMonitors;  
46 var $isPaused;
47
48 public function setup()
49 {
50         $trackerManager = TrackerManager::getInstance();
51         $this->disabledMonitors = $trackerManager->getDisabledMonitors();
52         $this->isPaused = $trackerManager->isPaused();
53     $trackerManager->isPaused = false;  
54         $trackerManager->setDisabledMonitors(array());
55     $GLOBALS['db']->query("DELETE FROM tracker_sessions WHERE session_id = 'Bug41051Test'");
56 }
57
58 public function tearDown()
59 {
60 /*      $trackerManager = TrackerManager::getInstance();
61         $trackerManager->isPaused = $this->isPaused;
62         $trackerManager->setDisabledMonitors($this->disabledMonitors);
63         $GLOBALS['db']->query("DELETE FROM tracker_sessions WHERE session_id = 'Bug41051Test'");
64 */
65 }
66
67 public function testTrackerSessionDatabaseStore()
68 {
69         $trackerManager = TrackerManager::getInstance();
70         if($monitor = $trackerManager->getMonitor('tracker_sessions'))
71         {
72                 $monitor->setValue('session_id', 'Bug41051Test'); 
73                 $monitor->setValue('user_id', 'Bug41051Test');
74                 $monitor->setValue('date_start', TimeDate::getInstance()->nowDb());
75                 $monitor->setValue('date_end', TimeDate::getInstance()->nowDb());
76                 $monitor->setValue('seconds', '10');
77                 $monitor->setValue('round_trips', 1);
78                 $monitor->setValue('active', 0);
79                 $trackerManager->saveMonitor($monitor, true);
80                 
81                 $seconds = $GLOBALS['db']->getOne("SELECT seconds FROM tracker_sessions WHERE session_id = 'Bug41051Test'");
82                 $this->assertEquals('10', $seconds, 'Assert that new database entry is created');
83                 
84                 $seconds = $GLOBALS['db']->getOne("UPDATE tracker_sessions SET seconds='10' WHERE session_id = 'Bug41051Test'");
85                 if($monitor = $trackerManager->getMonitor('tracker_sessions'))
86                 {
87                         $monitor->setValue('session_id', 'Bug41051Test');
88                         $monitor->setValue('round_trips', 0);
89                         $monitor->setValue('seconds', '');
90                         $trackerManager->save($monitor, true);
91                         
92                         $seconds = $GLOBALS['db']->getOne("SELECT seconds FROM tracker_sessions WHERE session_id = 'Bug41051Test'");
93                         $this->assertEquals('0', $seconds, 'Assert that new database entry is modified as expected');
94                 }
95                 
96                 $seconds = $GLOBALS['db']->getOne("UPDATE tracker_sessions SET seconds='10' WHERE session_id = 'Bug41051Test'");
97                 if($monitor = $trackerManager->getMonitor('tracker_sessions'))
98                 {
99                         $monitor->setValue('session_id', 'Bug41051Test');
100                         $monitor->setValue('round_trips', 0);
101                         $monitor->setValue('seconds', 0);
102                         $trackerManager->save($monitor, true);
103                                 
104                         $seconds = $GLOBALS['db']->getOne("SELECT seconds FROM tracker_sessions WHERE session_id = 'Bug41051Test'");
105                         $this->assertEquals('0', $seconds, 'Assert that new database entry is modified as expected');
106                 }
107                 
108                 
109         } else {
110                 $this->markTestSkipped = true;
111         }       
112 }
113
114 }