summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/index.php
blob: d104f10e46e93c11682cbe3874ee63ed16571d4c (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
<?php

require('config.php');
header("Content-Type: text/html; charset=UTF-8");
class BrowserTestConfig extends PradoTestConfig
{
	//functional test groups
	public function unit_test_groups()
	{
		$groups = array();

		//tests for quickstart samples
		$this->get_directories(dirname(__FILE__).'/quickstart_tests', $groups);

		//tests to verify tickets
		$this->get_directories($this->tests_directory(),$groups);
		
		return $groups;
	}

	protected function get_directories($base,&$groups)
	{
		$groups[] = realpath($base);
		$dirs = new DirectoryIterator($base);
		foreach($dirs as $dir)
			if(!$dir->isDot() && $dir->isDir() 
				&& !preg_match("/\.svn/", $dir->getPathName()))
				$this->get_directories($dir->getPathName(), $groups);
	}
}


$root = dirname(__FILE__);
$server = SimpleSeleniumProxyServer::getInstance($root);

$tester = new PradoSimpleTester(new BrowserTestConfig());
$browser_tests = $tester->getTests();
$browser_tests->run(new SimpleReporter());

$server->handleRequest();

?>