nextcloud/tests/lib/autoloader.php

79 lines
2.1 KiB
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2013-05-08 01:08:36 +04:00
namespace Test;
class AutoLoader extends TestCase {
2013-05-08 01:08:36 +04:00
/**
* @var \OC\Autoloader $loader
*/
private $loader;
protected function setUp() {
parent::setUp();
2015-08-18 16:35:02 +03:00
$this->loader = new \OC\AutoLoader([]);
2013-05-08 01:08:36 +04:00
}
public function testLeadingSlashOnClassName() {
$this->assertEquals([
2016-05-13 12:33:21 +03:00
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
], $this->loader->findClass('\OCP\Files\Storage\Local'));
2013-05-08 01:08:36 +04:00
}
public function testNoLeadingSlashOnClassName() {
$this->assertEquals([
2016-05-13 12:33:21 +03:00
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
], $this->loader->findClass('OCP\Files\Storage\Local'));
2013-05-08 01:08:36 +04:00
}
public function testLegacyPath() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/private/legacy/files.php',
], $this->loader->findClass('OC_Files'));
2013-05-08 01:08:36 +04:00
}
public function testLoadTestNamespace() {
$this->assertEquals([
\OC::$SERVERROOT . '/tests/lib/foo/bar.php'
], $this->loader->findClass('Test\Foo\Bar'));
}
public function testLoadTest() {
$this->assertEquals([
\OC::$SERVERROOT . '/tests/lib/foo/bar.php'
], $this->loader->findClass('Test_Foo_Bar'));
}
public function testLoadCore() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/private/legacy/foo/bar.php',
], $this->loader->findClass('OC_Foo_Bar'));
2013-05-08 01:08:36 +04:00
}
public function testLoadPublicNamespace() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/public/foo/bar.php',
], $this->loader->findClass('OCP\Foo\Bar'));
}
public function testLoadAppNamespace() {
$result = $this->loader->findClass('OCA\Files\Foobar');
$this->assertEquals(2, count($result));
$this->assertStringEndsWith('apps/files/foobar.php', $result[0]);
$this->assertStringEndsWith('apps/files/lib/foobar.php', $result[1]);
2013-05-08 01:08:36 +04:00
}
public function testLoadCoreNamespaceCore() {
$this->assertEquals([], $this->loader->findClass('OC\Core\Foo\Bar'));
}
public function testLoadCoreNamespaceSettings() {
2016-04-06 12:13:15 +03:00
$this->assertEquals([], $this->loader->findClass('OC\Settings\Foo\Bar'));
}
}