Skip to content
Snippets Groups Projects
autoloader.php 1.94 KiB
Newer Older
<?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.
 */

Robin Appelman's avatar
Robin Appelman committed
namespace Test;
class AutoLoader extends TestCase {
Robin Appelman's avatar
Robin Appelman committed
	/**
	 * @var \OC\Autoloader $loader
	 */
	private $loader;

	protected function setUp() {
		parent::setUp();
Robin Appelman's avatar
Robin Appelman committed
		$this->loader = new \OC\AutoLoader();
	}

	public function testLeadingSlashOnClassName() {
Morris Jobke's avatar
Morris Jobke committed
		$this->assertEquals(array('private/files/storage/local.php', 'files/storage/local.php'), $this->loader->findClass('\OC\Files\Storage\Local'));
Robin Appelman's avatar
Robin Appelman committed
	}

	public function testNoLeadingSlashOnClassName() {
Morris Jobke's avatar
Morris Jobke committed
		$this->assertEquals(array('private/files/storage/local.php', 'files/storage/local.php'), $this->loader->findClass('OC\Files\Storage\Local'));
Robin Appelman's avatar
Robin Appelman committed
	}

	public function testLegacyPath() {
		$this->assertEquals(array('private/legacy/files.php', 'private/files.php'), $this->loader->findClass('OC_Files'));
	public function testLoadTestNamespace() {
		$this->assertEquals(array('tests/lib/foo/bar.php'), $this->loader->findClass('Test\Foo\Bar'));
	public function testLoadTest() {
		$this->assertEquals(array('tests/lib/foo/bar.php'), $this->loader->findClass('Test_Foo_Bar'));
	public function testLoadCoreNamespace() {
Morris Jobke's avatar
Morris Jobke committed
		$this->assertEquals(array('private/foo/bar.php', 'foo/bar.php'), $this->loader->findClass('OC\Foo\Bar'));
	public function testLoadCore() {
		$this->assertEquals(array('private/legacy/foo/bar.php', 'private/foo/bar.php'), $this->loader->findClass('OC_Foo_Bar'));
	public function testLoadPublicNamespace() {
		$this->assertEquals(array('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]);
Robin Appelman's avatar
Robin Appelman committed
	}