summaryrefslogtreecommitdiff
path: root/tests/test_tools/selenium/php/results.php
blob: 77dab43bb4b55b364b7c9aed5e9c3b40fcecf67d (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php

class SeleniumTestCaseResult
{
	public $name;
	public $commands = array();
	public $result = 'passed';
	public $failures = array();
}

class SeleniumTestResult
{
	public $result = 'passed';
	public $totalTime = 0;
	public $numTestPasses = 0;
	public $numTestFailures = 0;
	public $numCommandPasses = 0;
	public $numCommandFailures = 0;
	public $numCommandErrors = 0;
	public $suites = array();
	public $browser = '';
	public $date;

	public function __construct()
	{
		$this->parse_data();
		$this->browser = $_SERVER['HTTP_USER_AGENT'];
		$this->date = time();
	}

	protected function parse_data()
	{
		$this->result = $_POST['result']; // failed || passed
		$this->totalTime = $_POST['totalTime'];
		$this->numTestPasses = $_POST['numTestPasses'];
		$this->numTestFailures = $_POST['numTestFailures'];
		$this->numCommandPasses = $_POST['numCommandPasses'];
		$this->numCommandFailures = $_POST['numCommandFailures'];
		$this->numCommandErrors = $_POST['numCommandErrors'];

		foreach($_POST['tests'] as $test)
		{
			$case = new SeleniumTestCaseResult();
			$case->name = $test['testcase'];
			$case->commands = $test['commands'];
			for($i = 0; $i < count($case->commands); $i++)
			{
				//$trace = $case->commands[$i]['trace'];
				//$trace = html_entity_decode($trace);
				//$case->commands[$i]['trace'] = @unserialize($trace);
				if($case->commands[$i]['result'] == 'failed')
				{
					$case->result = 'failed';
					array_push($case->failures, $case->commands[$i]);
				}
			}

			$this->suites[$case->name] = $case;
		}

	}
}

class SeleniumHtmlReporter
{
	protected $test;

	public function __construct($result)
	{
		$this->test = $result;
	}

	protected function renderHeader()
	{
		$contents = <<<EOD
<html>
<head>
<title>Functional Test Results</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<style type="text/css">
body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;}
.failed { background-color: red; } .error0 { background-color: lightgray; }
.info { padding: 0.5em; margin-top: 1em; color: white; }
.passed { background-color: green; }
.error_case div { padding: 0.3em 0.2em; margin: 0.5em 0; }
.error_msg { padding: 0.5em; border-bottom:1px solid #ccc; }
.msg { color:#c00; }
.function { font-family:"Lucida Console";color: gray;}
.file { border-bottom: 1px dashed gray; }
.env { color: gray; font-size:10pt; padding: 0.5em; }
.odd { background-color: #fee; }
</style>
</head>
<body>
EOD;
		return $contents;
	}

	public function render()
	{
		echo $this->renderHeader();
		echo $this->renderBody();
		echo $this->renderFooter();
	}

	protected function renderBody()
	{
		/* SeleniumTestResult */
		$test = $this->test;
		$total = count($test->suites);
		$date = @strftime('%Y-%m-%d %H:%M',$test->date);
$contents = <<<EOD
<h1 class="suite">Functional Test Results</h1>
<div class="info {$test->result}">
	<strong>{$total}</strong> test cases completed,
	<strong>{$test->numTestPasses}</strong> passes 
	({$test->numCommandPasses} commands), and
	<strong>{$test->numTestFailures}</strong> fails
	({$test->numCommandErrors} commands).
</div>
<div class="env">
	{$date}, {$test->browser}
</div>
EOD;
		$count = 1;
		foreach($test->suites as $suite)
		{
			foreach($suite->failures as $error)
				$contents .= $this->getErrorMsg($suite, $error, $count++);
		}

		return $contents;
	}


	protected function getErrorMsg($suite, $info, $count)
	{
		$parity = $count%2==0 ? 'even' : 'odd';
		$command = explode("|",$info['command']);
$msg = <<<EOD
	<div class="error_msg {$parity}">
		<strong>#{$count}.</strong>
		&quot;<span class="msg">{$info['msg']}</span>&quot; in
		<span class="function">
			{$suite->name}::{$command[1]}('{$command[2]}');
		</span>
	</div>
EOD;

		return $msg;
	}

	protected function renderFooter()
	{
		return "</body></html>";
	}
}


?>