aboutsummaryrefslogtreecommitdiff
path: root/mod/diagnostics/testreport.php
blob: 979cca26775ac5e71a88055625c0b3c19fe5ef02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
	/**
	 * Elgg diagnostics - test report
	 * 
	 * @package ElggDiagnostics
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @link http://elgg.com/
	 */

	require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");

	admin_gatekeeper();
	set_context('admin');
	// Set admin user for user block
		set_page_owner($_SESSION['guid']);
		
	// Which test are we executing?
	$test_func = get_input('test_func');

	$title_txt = sprintf(elgg_echo('diagnostics:unittester:report'), $test_func ? $testfunc : elgg_echo('diagnostics:test:executeall'));
		
	$title = elgg_view_title();
	
	$result = null;
	if ($test_func)
		$result = array(execute_elgg_test($test_func));
	else
		$result = execute_elgg_tests();
		
	if ($result)
	{
		foreach ($result as $r)
			$body .= elgg_view('page_elements/contentwrapper', array('body' =>
				elgg_view('diagnostics/testresult', array('function' => $r['function'], 'result' => $r['result']))
			));
	}
	else
		$body = elgg_view('page_elements/contentwrapper', array('body' => 
			elgg_echo('diagnostics:unittester:testnotfound' ) 
		));
	
	page_draw($title_txt, elgg_view_layout("two_column_left_sidebar", '', $title . $body));
?>