File: remote_test.php

package info (click to toggle)
postfixadmin 2.3.5-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,200 kB
  • sloc: php: 25,767; xml: 14,485; perl: 964; sh: 664; python: 169; makefile: 84
file content (20 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
    // $Id: remote_test.php,v 1.6 2006/11/20 23:44:37 lastcraft Exp $
    require_once('../remote.php');
    require_once('../reporter.php');

    // The following URL will depend on your own installation.
    if (isset($_SERVER['SCRIPT_URI'])) {
        $base_uri = $_SERVER['SCRIPT_URI'];
    } elseif (isset($_SERVER['HTTP_HOST']) && isset($_SERVER['PHP_SELF'])) {
        $base_uri = 'http://'. $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
    };
    $test_url = str_replace('remote_test.php', 'visual_test.php', $base_uri);

    $test = &new TestSuite('Remote tests');
    $test->addTestCase(new RemoteTestCase($test_url . '?xml=yes', $test_url . '?xml=yes&dry=yes'));
    if (SimpleReporter::inCli()) {
        exit ($test->run(new TextReporter()) ? 0 : 1);
    }
    $test->run(new HtmlReporter());
?>