source: trunk/tests/AppTest.php

Last change on this file was 720, checked in by anonymous, 4 years ago

Update CSS reset with inspiration from https://github.com/hankchizljaw/modern-css-reset

File size: 6.4 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        $this->App->cli = false;
44        $_SESSION = AppTest::$shared_session;
45    }
46
47    function tearDown()
48    {
49        unset($this->App);
50        AppTest::$shared_session = $_SESSION;
51    }
52
53    function test_getinstance()
54    {
55        $thisapp =& App::getInstance();
56        $this->assertTrue($thisapp === $this->App, 'Objects do not match across instantiations.');
57    }
58
59    function test_setParam()
60    {
61        $this->App->setParam(array(
62            'test_config_value' => 1234
63        ));
64        $this->assertTrue(1234 === $this->App->getParam('test_config_value'));
65    }
66
67    function test_getParam()
68    {
69        //$this->App->setParam('test_config_value2', 'okay');
70        $this->App->setParam(array(
71            'test_config_value2' => 'okay'
72        ));
73        $result = $this->App->getParam('test_config_value2');
74        $this->assertEquals('okay', $result);
75    }
76
77    function test_start()
78    {
79        unset($_SESSION);
80        $this->App->stop();
81        $this->App->start();
82        $this->assertEquals(ini_get('error_reporting'), E_ALL, 'Error reporting not set to E_ALL.');
83        $this->assertTrue(isset($_SESSION), '$_SESSION is not set.');
84        $_SESSION['sess_test_value'] = 'okay';
85        $this->assertEquals($_SESSION['sess_test_value'], 'okay', '$_SESSION not storing values.');
86        $this->assertTrue(session_name() == 'StrangecodeTestSession', 'Session_name not set correctly.');
87    }
88
89    function test_stop()
90    {
91    }
92
93    function test_dbquery()
94    {
95        $db =& DB::getInstance();
96
97        $qid = $db->query("SELECT 2 + 2");
98        list($result) = mysql_fetch_row($qid);
99        $this->assertEquals('4', $result);
100    }
101
102    function test_raisemsg()
103    {
104        $app =& App::getInstance();
105        $expected = 'My message';
106        $app->raiseMsg($expected, MSG_NOTICE, __FILE__, __LINE__);
107        $msg = current($_SESSION['_app']['testapp']['messages']);
108        $this->assertEquals($expected, $msg['message']);
109    }
110
111    function test_printraisedmessages()
112    {
113        $app =& App::getInstance();
114        ob_start();
115        $this->test_raisemsg();  //had to add this line for phpunit ver. 3.7
116        $app->printraisedmessages();
117        $result = ob_get_clean();
118        $this->assertContains('My message', $result, 'Raised message not found in output.');
119    }
120
121    function test_logmsg()
122    {
123        $app =& App::getInstance();
124        $file = $this->App->getParam('log_directory') . '/' . $this->App->getParam('log_filename');
125        $app->logMsg('Test log message', LOG_DEBUG, __FILE__, __LINE__);
126        if ($result = file($file)) {
127            $result = end($result);
128        } else {
129            $result = '';
130        }
131        $this->assertContains('Test log message', $result, 'Test message not recorded in log: ' . $file);
132    }
133
134    function test_ohref()
135    {
136        $app =& App::getInstance();
137        $_REQUEST['arg1'] = 'A';
138        $result = $app->ohref('/some/url.php', array('arg1'), true);
139        $this->assertContains(session_name(), $result, 'SSID not found in URL.');
140        $this->assertContains('arg1=A', $result, 'Argument not passed through.');
141    }
142
143    function test_printhiddensession()
144    {
145        $app =& App::getInstance();
146        $app->setParam(array('session_use_trans_sid' => true));
147        ob_start();
148        $app->printhiddensession();
149        $result = ob_get_clean();
150        $this->assertContains(session_name(), $result);
151    }
152
153//     function test_dieurl()
154//     {
155//         $app =& App::getInstance();
156//         $app->dieURL('/die/to/this/url.php');
157//     }
158//
159//     function test_dieboomerangurl()
160//     {
161//         $result = $this->App->dieboomerangurl(PARAM);
162//         $expected = EXPECTED_VAL;
163//         $this->assertEquals($expected, $result);
164//     }
165//
166//     function test_setboomerangurl()
167//     {
168//         $result = $this->App->setboomerangurl(PARAM);
169//         $expected = EXPECTED_VAL;
170//         $this->assertEquals($expected, $result);
171//     }
172//
173//     function test_getboomerangurl()
174//     {
175//         $result = $this->App->getboomerangurl(PARAM);
176//         $expected = EXPECTED_VAL;
177//         $this->assertEquals($expected, $result);
178//     }
179//
180//     function test_deleteboomerangurl()
181//     {
182//         $result = $this->App->deleteboomerangurl(PARAM);
183//         $expected = EXPECTED_VAL;
184//         $this->assertEquals($expected, $result);
185//     }
186//
187//     function test_validboomerangurl()
188//     {
189//         $result = $this->App->validboomerangurl(PARAM);
190//         $expected = EXPECTED_VAL;
191//         $this->assertEquals($expected, $result);
192//     }
193//
194//     function test_sslon()
195//     {
196//         $result = $this->App->sslon(PARAM);
197//         $expected = EXPECTED_VAL;
198//         $this->assertEquals($expected, $result);
199//     }
200//
201//     function test_ssloff()
202//     {
203//         $result = $this->App->ssloff(PARAM);
204//         $expected = EXPECTED_VAL;
205//         $this->assertEquals($expected, $result);
206//     }
207
208}
209// Running the test.
210/*
211$suite = new PHPUnit_TestSuite('AppTest');
212$result = PHPUnit::run($suite);
213echo $result->toString();
214 */
Note: See TracBrowser for help on using the repository browser.