]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/SugarLogger/SugarLoggerTest.php
Release 6.2.0
[Github/sugarcrm.git] / tests / include / SugarLogger / SugarLoggerTest.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 class SugarLoggerTest extends Sugar_PHPUnit_Framework_TestCase
39 {
40     public function tearDown()
41     {
42         // reset the logger level
43         $level = SugarConfig::getInstance()->get('logger.level');
44         if (!empty($level))
45             $GLOBALS['log']->setLevel($level);
46     }
47     
48     public function providerWriteLogEntries()
49     {
50         return array(
51             array('debug','debug','foo1',true,'[DEBUG] foo1'),
52             array('debug','info','foo2',true,'[INFO] foo2'),
53             array('debug','warn','foo3',true,'[WARN] foo3'),
54             array('debug','error','foo4',true,'[ERROR] foo4'),
55             array('debug','fatal','foo5',true,'[FATAL] foo5'),
56             array('debug','security','foo6',true,'[SECURITY] foo6'),
57             array('fatal','warn','foo7',false,'[WARN] foo7'),
58             );
59     }
60     
61     /**
62      * @dataProvider providerWriteLogEntries
63      */
64     public function testWriteLogEntries(
65         $currentLevel,
66         $logLevel,
67         $logMessage,
68         $shouldMessageBeWritten,
69         $messageWritten
70         ) 
71     {
72         $GLOBALS['log']->setLevel($currentLevel);
73         $GLOBALS['log']->$logLevel($logMessage);
74         
75         $config = SugarConfig::getInstance();
76         $ext = $config->get('logger.file.ext');
77         $logfile = $config->get('logger.file.name');
78         $log_dir = $config->get('log_dir'); 
79         $log_dir = $log_dir . (empty($log_dir)?'':'/');
80         
81         $logFile = file_get_contents($log_dir . $logfile . $ext);
82         
83         if ( $shouldMessageBeWritten )
84             $this->assertContains($messageWritten,$logFile);
85         else
86             $this->assertNotContains($messageWritten,$logFile);
87     }
88     
89     public function testAssertLogging()
90     {
91         $GLOBALS['log']->setLevel('debug');
92         $GLOBALS['log']->assert('this was asserted true',true);
93         $GLOBALS['log']->assert('this was asserted false',false);
94         
95         $config = SugarConfig::getInstance();
96         $ext = $config->get('logger.file.ext');
97         $logfile = $config->get('logger.file.name');
98         $log_dir = $config->get('log_dir'); 
99         $log_dir = $log_dir . (empty($log_dir)?'':'/');
100         
101         $logFile = file_get_contents($log_dir . $logfile . $ext);
102         
103         $this->assertContains('[DEBUG] this was asserted false',$logFile);
104         $this->assertNotContains('[DEBUG] this was asserted true',$logFile);
105     }
106 }