Aleksander Machniak
2012-05-22 bc79c55613714ce0a8cb04de60af396e6726086f
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
#!/usr/bin/env php
<?php
 
/*
 +-----------------------------------------------------------------------+
 | tests/runtests.sh                                                     |
 |                                                                       |
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2009, The Roundcube Dev Team                            |
 |                                                                       |
 | Licensed under the GNU General Public License version 3 or            |
 | any later version with exceptions for skins & plugins.                |
 | See the README file for a full license statement.                     |
 |                                                                       |
 | PURPOSE:                                                              |
 |   Run-script for unit tests based on http://simpletest.org            |
 |   All .php files in this folder will be treated as tests              |
 +-----------------------------------------------------------------------+
 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
 +-----------------------------------------------------------------------+
*/
 
if (php_sapi_name() != 'cli')
  die("Not in shell mode (php-cli)");
 
if (!defined('SIMPLETEST'))   define('SIMPLETEST', '/www/simpletest/');
if (!defined('INSTALL_PATH')) define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
 
define('TESTS_DIR', dirname(__FILE__) . '/');
define('RCMAIL_CONFIG_DIR', TESTS_DIR . 'config');
 
require_once(SIMPLETEST . 'unit_tester.php');
require_once(SIMPLETEST . 'reporter.php');
require_once(INSTALL_PATH . 'program/include/iniset.php');
 
if (count($_SERVER['argv']) > 1) {
  $testfiles = array();
  for ($i=1; $i < count($_SERVER['argv']); $i++)
    $testfiles[] = realpath('./' . $_SERVER['argv'][$i]);
}
else {
  $testfiles = glob(TESTS_DIR . '*.php');
}
 
$test = new TestSuite('Roundcube unit tests');
$reporter = new TextReporter();
 
foreach ($testfiles as $fn) {
  $test->addTestFile($fn);
}
 
$test->run($reporter);
 
?>