This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/simpletest/main.php

45 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
* Name: SimpleTest integration
* Author: Shish <webmaster@shishnet.org>
* License: GPLv2
* Description: adds unit testing to SCore
*/
require_once('simpletest/web_tester.php');
require_once('simpletest/reporter.php');
class AllTests extends TestSuite {
function AllTests() {
$this->TestSuite('All tests');
foreach(glob("ext/*/test.php") as $file) {
$this->addFile($file);
}
}
}
class SimpleSCoreTest implements Extension {
var $theme;
public function receive_event(Event $event) {
if(is_null($this->theme)) $this->theme = get_theme_object($this);
if(($event instanceof PageRequestEvent) && $event->page_matches("test/all")) {
$event->page->set_title("Test Results");
$event->page->set_heading("Test Results");
$event->page->add_block(new NavBlock());
$all = new AllTests();
$all->run(new SCoreReporter($event->page));
}
if($event instanceof UserBlockBuildingEvent) {
if($event->user->is_admin()) {
$event->add_link("Run Tests", make_link("test/all"));
}
}
}
}
add_event_listener(new SimpleSCoreTest());
?>