42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
$options = getopt("d:");
|
|
$db = $options["d"];
|
|
|
|
require_once('lib/simpletest/autorun.php');
|
|
require_once('lib/simpletest/unit_tester.php');
|
|
require_once('lib/simpletest/web_tester.php');
|
|
require_once('lib/simpletest/reporter.php');
|
|
|
|
class ShimmieSimpleTestCase extends WebTestCase {
|
|
|
|
function testInstallShimmie()
|
|
{
|
|
$this->get('http://127.0.0.1/');
|
|
$this->assertResponse(200);
|
|
$this->assertTitle("Shimmie Installation");
|
|
$this->assertText("Database Install");
|
|
|
|
$this->setField("database_type", $this->database);
|
|
$this->assertField("database_host", "localhost");
|
|
|
|
if ($db === "mysql") {
|
|
$this->setField("database_user", "root");
|
|
$this->setField("database_password", "");
|
|
} elseif ($db === "pgsql") {
|
|
$this->setField("database_user", "postgres");
|
|
$this->setField("database_password", "");
|
|
}
|
|
|
|
$this->assertField("database_name", "shimmie");
|
|
$this->clickSubmit("Go!");
|
|
|
|
if (!$this->assertTitle("Welcome to Shimmie")) {
|
|
$this->showSource();
|
|
}
|
|
|
|
$this->assertText("Welcome to Shimmie");
|
|
$this->assertText("This message will go away once your first image");
|
|
}
|
|
|
|
}
|