source: trunk/tests/AppTest.php @ 541

Last change on this file since 541 was 541, checked in by anonymous, 9 years ago

v2.2.0-3: Fixed auth password hashing verification issues. Updated hyperlinkTxt() with option. Updated tests.

File size: 6.5 KB
Line 
1<?php
2/**
3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
5 * Copyright 2001-2012 Strangecode, LLC
6 *
7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
24 * PHPUnit test case for codebase/lib/App.inc.php
25 *
26 * The method skeletons below need to be filled in with
27 * real data so that the tests will run correctly. Replace
28 * all EXPECTED_VAL and PARAM strings with real data.
29 *
30 * Created with PHPUnit_Skeleton on 2005-08-09
31 */
32
33class AppTest extends PHPUnit_Framework_TestCase {
34
35    var $App;
36
37    static $shared_session;
38
39    function setUp()
40    {
41        require dirname(__FILE__) . '/_config.inc.php';
42        $this->App =& $app;
43        $_SESSION = AppTest::$shared_session;
44    }
45
46    function tearDown()
47    {
48        unset($this->App);
49        AppTest::$shared_session = $_SESSION;
50    }
51
52    function test_getinstance()
53    {
54        $thisapp =& App::getInstance();
55        $this->assertTrue(serialize($thisapp) == serialize($this->App), 'Objects do not match across instantiations.');
56    }
57
58    function test_setParam()
59    {
60        $this->App->setParam(array(
61            'test_config_value' => 1234
62        ));
63        $this->assertTrue(1234 === $this->App->getParam('test_config_value'));
64    }
65
66    function test_getParam()
67    {
68        //$this->App->setParam('test_config_value2', 'okay');
69        $this->App->setParam(array(
70            'test_config_value2' => 'okay'
71        ));
72        $result = $this->App->getParam('test_config_value2');
73        $this->assertEquals('okay', $result);
74    }
75
76    function test_start()
77    {
78        unset($_SESSION);
79        $this->App->stop();
80        $this->App->start();
81
82        $this->assertEquals(ini_get('error_reporting'), E_ALL, 'Error reporting not set to E_ALL.');
83        $this->assertTrue($this->App->db->dbh && is_resource($this->App->db->dbh), 'DB handler not a resource');
84        $this->assertTrue(isset($_SESSION), '$_SESSION is not set.');
85        $_SESSION['sess_test_value'] = 'okay';
86        $this->assertEquals($_SESSION['sess_test_value'], 'okay', '$_SESSION not storing values.');
87        $this->assertTrue(session_name() == 'StrangecodeTestSession', 'Session_name not set correctly.');
88    }
89
90    function test_stop()
91    {
92    }
93
94    function test_dbquery()
95    {
96        $db =& DB::getInstance();
97
98        $qid = $db->query("SELECT 2 + 2");
99        list($result) = mysql_fetch_row($qid);
100        $this->assertEquals('4', $result);
101    }
102
103    function test_raisemsg()
104    {
105        $app =& App::getInstance();
106        $expected = 'My message';
107        $app->raiseMsg($expected, MSG_NOTICE, __FILE__, __LINE__);
108        $msg = current($_SESSION['_app']['testapp']['messages']);
109        $this->assertEquals($expected, $msg['message']);
110    }
111
112    function test_printraisedmessages()
113    {
114        $app =& App::getInstance();
115        ob_start();
116        $this->test_raisemsg();  //had to add this line for phpunit ver. 3.7 ///
117        $app->printraisedmessages();
118        $result = ob_get_clean();
119        $this->assertContains('My message', $result, 'Raised message not found in output.');
120    }
121
122    function test_logmsg()
123    {
124        $app =& App::getInstance();
125        $file = $this->App->getParam('log_directory') . '/' . $this->App->getParam('log_filename');
126        $app->logMsg('Test log message', LOG_DEBUG, __FILE__, __LINE__);
127        if ($result = file($file)) {
128            $result = end($result);
129        } else {
130            $result = '';
131        }
132        $this->assertContains('Test log message', $result, 'Test message not recorded in log: ' . $file);
133    }
134
135    function test_ohref()
136    {
137        $app =& App::getInstance();
138        $_GET['arg1'] = 'A';
139        $result = $app->ohref('/some/url.php', array('arg1'), true);
140        $this->assertContains(session_name(), $result, 'SSID not found in URL.');
141        $this->assertContains('arg1=A', $result, 'Argument not passed through.');
142    }
143
144    function test_printhiddensession()
145    {
146        $app =& App::getInstance();
147        $app->setParam(array('session_use_trans_sid' => true));
148        ob_start();
149        $app->printhiddensession();
150        $result = ob_get_clean();
151        $this->assertContains(session_name(), $result);
152    }
153
154//     function test_dieurl()
155//     {
156//         $app =& App::getInstance();
157//         $app->dieURL('/die/to/this/url.php');
158//     }
159//
160//     function test_dieboomerangurl()
161//     {
162//         $result = $this->App->dieboomerangurl(PARAM);
163//         $expected = EXPECTED_VAL;
164//         $this->assertEquals($expected, $result);
165//     }
166//
167//     function test_setboomerangurl()
168//     {
169//         $result = $this->App->setboomerangurl(PARAM);
170//         $expected = EXPECTED_VAL;
171//         $this->assertEquals($expected, $result);
172//     }
173//
174//     function test_getboomerangurl()
175//     {
176//         $result = $this->App->getboomerangurl(PARAM);
177//         $expected = EXPECTED_VAL;
178//         $this->assertEquals($expected, $result);
179//     }
180//
181//     function test_deleteboomerangurl()
182//     {
183//         $result = $this->App->deleteboomerangurl(PARAM);
184//         $expected = EXPECTED_VAL;
185//         $this->assertEquals($expected, $result);
186//     }
187//
188//     function test_validboomerangurl()
189//     {
190//         $result = $this->App->validboomerangurl(PARAM);
191//         $expected = EXPECTED_VAL;
192//         $this->assertEquals($expected, $result);
193//     }
194//
195//     function test_sslon()
196//     {
197//         $result = $this->App->sslon(PARAM);
198//         $expected = EXPECTED_VAL;
199//         $this->assertEquals($expected, $result);
200//     }
201//
202//     function test_ssloff()
203//     {
204//         $result = $this->App->ssloff(PARAM);
205//         $expected = EXPECTED_VAL;
206//         $this->assertEquals($expected, $result);
207//     }
208
209}
210// Running the test.
211/*
212$suite = new PHPUnit_TestSuite('AppTest');
213$result = PHPUnit::run($suite);
214echo $result->toString();
215 */
Note: See TracBrowser for help on using the repository browser.