0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-04-30 20:10:40 +00:00
nextcloud_server/tests/lib/AutoLoaderTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.6 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
2013-05-07 23:08:36 +02:00
namespace Test;
class AutoLoaderTest extends TestCase {
2013-05-07 23:08:36 +02:00
/**
* @var \OC\Autoloader $loader
*/
private $loader;
protected function setUp(): void {
parent::setUp();
2015-08-18 15:35:02 +02:00
$this->loader = new \OC\AutoLoader([]);
2013-05-07 23:08:36 +02:00
}
public function testLegacyPath(): void {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/private/legacy/json.php',
], $this->loader->findClass('OC_JSON'));
2013-05-07 23:08:36 +02:00
}
public function testLoadTestTestCase(): void {
$this->assertEquals([
\OC::$SERVERROOT . '/tests/lib/TestCase.php'
], $this->loader->findClass('Test\TestCase'));
}
public function testLoadCore(): void {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/private/legacy/foo/bar.php',
], $this->loader->findClass('OC_Foo_Bar'));
2013-05-07 23:08:36 +02:00
}
public function testLoadPublicNamespace(): void {
2016-05-19 16:04:09 +02:00
$this->assertEquals([], $this->loader->findClass('OCP\Foo\Bar'));
}
public function testLoadAppNamespace(): void {
$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-07 23:08:36 +02:00
}
public function testLoadCoreNamespaceCore(): void {
$this->assertEquals([], $this->loader->findClass('OC\Core\Foo\Bar'));
}
public function testLoadCoreNamespaceSettings(): void {
2016-04-06 11:13:15 +02:00
$this->assertEquals([], $this->loader->findClass('OC\Settings\Foo\Bar'));
}
}