summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-sctp.php
blob: ce0a377831678287a83d7adb66d8fd51d0210c40 (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
<?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
	pts-functions-sctp.php: Functions For Self-Contained Test Profiles

	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/>.
*/

function pts_sctp_test_directory()
{
	return SCTP_DIR . basename(SCTP_FILE, ".sctp") . "/";
}
function pts_remove_sctp_test_files()
{
	return pts_remove(pts_sctp_test_directory());
}
function pts_generate_sctp_layer()
{
	$xml_parser = new tandem_XmlReader(SCTP_FILE);
	$test_directory = pts_sctp_test_directory();

	if(!$xml_parser->isDefined(P_TEST_TITLE))
	{
		pts_exit("\n" . SCTP_FILE . " is not a valid self-contained test profile!\n");
	}

	if(!is_dir($test_directory))
	{
		mkdir($test_directory);
	}

	$sctp_stages = array("install" => P_TEST_SCTP_INSTALLSCRIPT, "downloads" => P_TEST_SCTP_DOWNLOADS, "parse-results" => P_TEST_SCTP_RESULTSPARSER, 
	"pre" => P_TEST_SCTP_PRERUN, "interim" => P_TEST_SCTP_INTERIMRUN, "post" => P_TEST_SCTP_POSTRUN, "validate-result" => P_TEST_SCTP_VALIDATE_RESULT, 
	"validate-install" => P_TEST_SCTP_VALIDATE_INSTALL);

	foreach($sctp_stages as $stage_file => $stage_point)
	{
		$object = $xml_parser->getXMLValue($stage_point);

		if(!empty($object))
		{
			$object_type = pts_evaluate_script_type($object);
			$object = trim($object);

			if($stage_file == "downloads")
			{
				$object_type = "XML";
				$download_counter = 0;
				$downloads_xml = new tandem_XmlWriter();

				foreach(explode(",", $object) as $download_segment)
				{
					$downloads_xml->addXmlObject(P_DOWNLOADS_PACKAGE_URL, $download_counter, trim($download_segment));
					$download_counter++;
				}
				$object = $downloads_xml->getXML();
			}

			if($object_type == "PHP")
			{
				file_put_contents($test_directory . $stage_file . ".php", $object);
			}
			else if($object_type == "SH")
			{
				file_put_contents($test_directory . $stage_file . ".sh", $object);
				chmod($test_directory . $stage_file . ".sh", 0755);
			}
			else if($object_type == "XML")
			{
				file_put_contents($test_directory . $stage_file . ".xml", $object);
			}
		}
	}
}

?>