aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/AutoLoaderTest.php
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2025-05-19 10:38:05 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2025-05-27 18:06:28 +0200
commit7c251e4f9662defbee9540da6675e994460e0d5b (patch)
tree03c5f21fc0451d7fca17c0c0e0878a6c9d309bd7 /tests/lib/AutoLoaderTest.php
parentc3f16a554e78d6597ed8619e54ad3965b9e13de3 (diff)
downloadnextcloud-server-fix/delete-legacy-autoloader.tar.gz
nextcloud-server-fix/delete-legacy-autoloader.zip
fix: Remove useless legacy autoloaderfix/delete-legacy-autoloader
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests/lib/AutoLoaderTest.php')
-rw-r--r--tests/lib/AutoLoaderTest.php51
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/lib/AutoLoaderTest.php b/tests/lib/AutoLoaderTest.php
deleted file mode 100644
index 9fef8f5280d..00000000000
--- a/tests/lib/AutoLoaderTest.php
+++ /dev/null
@@ -1,51 +0,0 @@
-<?php
-/**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
-
-namespace Test;
-
-class AutoLoaderTest extends TestCase {
- /**
- * @var \OC\Autoloader $loader
- */
- private $loader;
-
- protected function setUp(): void {
- parent::setUp();
- $this->loader = new \OC\AutoLoader([]);
- }
-
- public function testLegacyPath(): void {
- $this->assertEquals([
- \OC::$SERVERROOT . '/lib/private/legacy/json.php',
- ], $this->loader->findClass('OC_JSON'));
- }
-
- public function testLoadCore(): void {
- $this->assertEquals([
- \OC::$SERVERROOT . '/lib/private/legacy/foo/bar.php',
- ], $this->loader->findClass('OC_Foo_Bar'));
- }
-
- public function testLoadPublicNamespace(): void {
- $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]);
- }
-
- public function testLoadCoreNamespaceCore(): void {
- $this->assertEquals([], $this->loader->findClass('OC\Core\Foo\Bar'));
- }
-
- public function testLoadCoreNamespaceSettings(): void {
- $this->assertEquals([], $this->loader->findClass('OC\Settings\Foo\Bar'));
- }
-}