summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Sarnowski <tobias@trustedco.de>2012-04-15 15:07:26 +0000
committerTobias Sarnowski <tobias@trustedco.de>2012-04-15 15:07:26 +0000
commit561684d896adf0e59938acc1a03903059c2d63a0 (patch)
tree291486ef6f4f1bda77295ad34093b48cc5eb60ad
parentf1e1cee8a7363fb13b1ce96a898b038c61c60c5a (diff)
downloadrpg-561684d896adf0e59938acc1a03903059c2d63a0.tar.gz
rpg-561684d896adf0e59938acc1a03903059c2d63a0.tar.bz2
initial commit for integration test framework
-rw-r--r--_testing/integrationtests.xml16
-rw-r--r--_testing/integrationtests/basic/basic.test.php14
-rw-r--r--_testing/integrationtests/basic/hooks.test.php20
-rw-r--r--_testing/integrationtests/bootstrap.php104
4 files changed, 154 insertions, 0 deletions
diff --git a/_testing/integrationtests.xml b/_testing/integrationtests.xml
new file mode 100644
index 000000000..f3beae66d
--- /dev/null
+++ b/_testing/integrationtests.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit
+ bootstrap="integrationtests/bootstrap.php"
+ convertNoticesToExceptions="false">
+
+ <testsuites>
+ <testsuite name="DokuWiki Integration Tests">
+ <directory suffix=".test.php">integrationtests/</directory>
+ </testsuite>
+ <testsuite name="Plugin Integration Tests">
+ <directory suffix=".inttest.php">../lib/plugins/*/_testing</directory>
+ </testsuite>
+ </testsuites>
+
+
+</phpunit>
diff --git a/_testing/integrationtests/basic/basic.test.php b/_testing/integrationtests/basic/basic.test.php
new file mode 100644
index 000000000..56cef965f
--- /dev/null
+++ b/_testing/integrationtests/basic/basic.test.php
@@ -0,0 +1,14 @@
+<?php
+
+class BasicTest extends PHPUnit_Framework_TestCase {
+ function testSimpleRun() {
+ $request = new TestRequest();
+
+ $response = $request->execute();
+
+ $this->assertTrue(
+ strpos($response->getContent(), 'DokuWiki') >= 0,
+ 'DokuWiki was not a word in the output'
+ );
+ }
+}
diff --git a/_testing/integrationtests/basic/hooks.test.php b/_testing/integrationtests/basic/hooks.test.php
new file mode 100644
index 000000000..0ba389659
--- /dev/null
+++ b/_testing/integrationtests/basic/hooks.test.php
@@ -0,0 +1,20 @@
+<?php
+
+class HooksTest extends PHPUnit_Framework_TestCase {
+
+ var $hookTriggered = false;
+
+ function hookTriggered() {
+ $this->hookTriggered = true;
+ }
+
+ function testHookTriggering() {
+ global $EVENT_HANDLER;
+ $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', $this, 'hookTriggered');
+
+ $request = new TestRequest();
+ $request->execute();
+
+ $this->assertTrue($this->hookTriggered, 'Hook was not triggered as expected!');
+ }
+}
diff --git a/_testing/integrationtests/bootstrap.php b/_testing/integrationtests/bootstrap.php
new file mode 100644
index 000000000..e7029247f
--- /dev/null
+++ b/_testing/integrationtests/bootstrap.php
@@ -0,0 +1,104 @@
+<?php
+
+/**
+ * Integration Test Library for DokuWiki
+ *
+ * Simulates a full DokuWiki HTTP Request and allows
+ * runtime inspection.
+ */
+
+// load dw
+define('DOKU_INC', dirname(dirname(dirname(__FILE__))).'/');
+require_once(DOKU_INC.'inc/init.php');
+
+// output buffering
+$output_buffer = '';
+
+function ob_start_callback($buffer) {
+ global $output_buffer;
+ $output_buffer .= $buffer;
+}
+
+// Helper class to execute a fake request
+class TestRequest {
+ var $server_vars = array(
+ 'REMOTE_ADDR' => '127.0.0.1',
+ );
+
+ var $get_vars = array();
+ var $post_vars = array();
+
+ var $output = '';
+
+ function __construct($page = '') {
+ $this->setPage($page);
+ }
+
+ function setServerVar($varName, $varValue) {
+ $this->sevrer_vars[$varName] = $varValue;
+ }
+
+ function setGetVar($varName, $varValue) {
+ $this->get_vars[$varName] = $varValue;
+ }
+
+ function setPostVar($varName, $varValue) {
+ $this->post_vars[$varName] = $varValue;
+ }
+
+ function setPage($pageName) {
+ $this->setGetVar('id', $pageName);
+ }
+
+ function execute() {
+ global $output_buffer;
+ $output_buffer = '';
+
+ // fake php environment
+ foreach ($this->server_vars as $key => $value) {
+ $_SERVER[$key] = $value;
+ }
+ $_REQUEST = array();
+ $_GET = array();
+ foreach ($this->get_vars as $key => $value) {
+ $_GET[$key] = $value;
+ $_REQUEST[$key] = $value;
+ }
+ $_POST = array();
+ foreach ($this->post_vars as $key => $value) {
+ $_POST[$key] = $value;
+ $_REQUEST[$key] = $value;
+ }
+
+ // now execute dokuwiki and grep the output
+ header_remove();
+ ob_start('ob_start_callback');
+ include(DOKU_INC.'doku.php');
+ ob_end_flush();
+
+ // it's done, return the page result
+ return new TestResponse(
+ $output_buffer,
+ headers_list()
+ );
+ }
+}
+
+// holds a copy of all produced outputs of a TestRequest
+class TestResponse {
+ var $content;
+ var $headers;
+
+ function __construct($content, $headers) {
+ $this->content = $content;
+ $this->headers = $headers;
+ }
+
+ function getContent() {
+ return $this->content;
+ }
+
+ function getHeaders() {
+ return $this->headers;
+ }
+}