* This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ namespace Test; class AutoLoader extends TestCase { /** * @var \OC\Autoloader $loader */ private $loader; protected function setUp() { parent::setUp(); $this->loader = new \OC\AutoLoader([]); } public function testLeadingSlashOnClassName() { $this->assertEquals([ \OC::$SERVERROOT . '/lib/private/files/storage/local.php', ], $this->loader->findClass('\OC\Files\Storage\Local')); } public function testNoLeadingSlashOnClassName() { $this->assertEquals([ \OC::$SERVERROOT . '/lib/private/files/storage/local.php', ], $this->loader->findClass('OC\Files\Storage\Local')); } public function testLegacyPath() { $this->assertEquals([ \OC::$SERVERROOT . '/lib/private/legacy/files.php', \OC::$SERVERROOT . '/lib/private/files.php', ], $this->loader->findClass('OC_Files')); } 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 testLoadCoreNamespace() { $this->assertEquals([ \OC::$SERVERROOT . '/lib/private/foo/bar.php', ], $this->loader->findClass('OC\Foo\Bar')); } public function testLoadCore() { $this->assertEquals([ \OC::$SERVERROOT . '/lib/private/legacy/foo/bar.php', \OC::$SERVERROOT . '/lib/private/foo/bar.php', ], $this->loader->findClass('OC_Foo_Bar')); } 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]); } public function testLoadCoreNamespaceCore() { $this->assertEquals([ \OC::$SERVERROOT . '/core/foo/bar.php', ], $this->loader->findClass('OC\Core\Foo\Bar')); } public function testLoadCoreNamespaceSettings() { $this->assertEquals([ \OC::$SERVERROOT . '/settings/foo/bar.php', ], $this->loader->findClass('OC\Settings\Foo\Bar')); } public function testLoadCoreNamespaceRepair() { $this->assertEquals([ \OC::$SERVERROOT . '/lib/private/repair/foo/bar.php', ], $this->loader->findClass('OC\Repair\Foo\Bar')); } }