summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-19 15:45:34 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-19 15:45:34 +0200
commitf8180391fd668ec8e4cb6366bf43682ced99509b (patch)
tree39c4b7fa0cda368a95a2df040b16b129a645ee62
parentffa463382231cac2446b0a39520b53068e4581b9 (diff)
downloadnextcloud-server-f8180391fd668ec8e4cb6366bf43682ced99509b.tar.gz
nextcloud-server-f8180391fd668ec8e4cb6366bf43682ced99509b.zip
Create a Fallback in the old autoloader for PSR-4 Test\TestCase
-rw-r--r--lib/autoloader.php4
-rw-r--r--tests/lib/TestCase.php (renamed from tests/lib/testcase.php)0
-rw-r--r--tests/lib/autoloader.php6
3 files changed, 10 insertions, 0 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php
index ff9db924cdd..215da536e5b 100644
--- a/lib/autoloader.php
+++ b/lib/autoloader.php
@@ -113,6 +113,10 @@ class Autoloader {
// If not found in the root of the app directory, insert '/lib' after app id and try again.
$paths[] = $appPath . '/lib/' . strtolower(str_replace('\\', '/', $rest) . '.php');
}
+ } elseif ($class === 'Test\\TestCase') {
+ // This File is considered public API, so we make sure that the class
+ // can still be loaded, although the PSR-4 paths have not been loaded.
+ $paths[] = \OC::$SERVERROOT . '/tests/lib/TestCase.php';
} elseif (strpos($class, 'Test\\') === 0) {
$paths[] = \OC::$SERVERROOT . '/tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php');
}
diff --git a/tests/lib/testcase.php b/tests/lib/TestCase.php
index 7ed121d3556..7ed121d3556 100644
--- a/tests/lib/testcase.php
+++ b/tests/lib/TestCase.php
diff --git a/tests/lib/autoloader.php b/tests/lib/autoloader.php
index 5268ef424d3..3669f514bee 100644
--- a/tests/lib/autoloader.php
+++ b/tests/lib/autoloader.php
@@ -37,6 +37,12 @@ class AutoLoader extends TestCase {
], $this->loader->findClass('OC_Files'));
}
+ public function testLoadTestTestCase() {
+ $this->assertEquals([
+ \OC::$SERVERROOT . '/tests/lib/TestCase.php'
+ ], $this->loader->findClass('Test\TestCase'));
+ }
+
public function testLoadTestNamespace() {
$this->assertEquals([
\OC::$SERVERROOT . '/tests/lib/foo/bar.php'