summaryrefslogtreecommitdiffstats
path: root/pts-core/objects/pts_test_result_info_details.php
blob: f1988a32e36da54e559d3ab8538e78e513f2e8d6 (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
<?php

/*
	Phoronix Test Suite
	URLs: http://www.phoronix.com, http://www.phoronix-test-suite.com/
	Copyright (C) 2008, Phoronix Media
	Copyright (C) 2008, Michael Larabel

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 3 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

class pts_test_result_info_details
{
	var $saved_results_file;
	var $saved_identifier;
	var $title;
	var $suite;
	var $unique_tests_r;
	var $identifiers_r;

	public function __construct($saved_results_file)
	{
		$xml_parser = new tandem_XmlReader($saved_results_file);
		$this->saved_results_file = $saved_results_file;
		$this->saved_identifier = array_pop(explode("/", dirname($saved_results_file)));
		$this->title = $xml_parser->getXMLValue(P_RESULTS_SUITE_TITLE);
		$this->suite = $xml_parser->getXMLValue(P_RESULTS_SUITE_NAME);
		$this->unique_tests_r = array_unique($xml_parser->getXMLArrayValues(P_RESULTS_TEST_TITLE));
		$raw_results = $xml_parser->getXMLArrayValues(P_RESULTS_RESULTS_GROUP);
		$results_xml = new tandem_XmlReader($raw_results[0]);
		$this->identifiers_r = $results_xml->getXMLArrayValues(S_RESULTS_RESULTS_GROUP_IDENTIFIER);
	}
	public function __toString()
	{
		$str = "\nTitle: " . $this->title . "\nIdentifier: " . $this->saved_identifier . "\nTest: " . $this->suite . "\n";
		$str .= "\nTest Result Identifiers:\n";
		foreach($this->identifiers_r as $id)
		{
			$str .= "- " . $id . "\n";
		}

		if(count($this->unique_tests_r) > 1)
		{
			$str .= "\nContained Tests:\n";
			foreach($this->unique_tests_r as $test)
			{
				$str .= "- " . $test . "\n";
			}
		}

		return $str;
	}
}

?>