Move files_trashbin to PSR-4 (#24570)

This commit is contained in:
Joas Schilling 2016-05-12 09:48:53 +02:00 committed by Thomas Müller
parent 56f4c4bed9
commit d5dee80580
18 changed files with 16 additions and 14 deletions

View File

@ -14,6 +14,7 @@ To prevent a user from running out of disk space, the ownCloud Deleted files app
<types> <types>
<filesystem/> <filesystem/>
</types> </types>
<namespace>Files_Trashbin</namespace>
<dependencies> <dependencies>
<owncloud min-version="9.1" max-version="9.1" /> <owncloud min-version="9.1" max-version="9.1" />
</dependencies> </dependencies>

View File

@ -19,11 +19,11 @@
* *
*/ */
namespace OCA\Files_Trashbin\Tests\BackgroundJob\ExpireTrash; namespace OCA\Files_Trashbin\Tests\BackgroundJob;
use \OCA\Files_Trashbin\BackgroundJob\ExpireTrash; use \OCA\Files_Trashbin\BackgroundJob\ExpireTrash;
class ExpireTrash_Test extends \Test\TestCase { class ExpireTrashTest extends \Test\TestCase {
public function testConstructAndRun() { public function testConstructAndRun() {
$backgroundJob = new ExpireTrash( $backgroundJob = new ExpireTrash(
$this->getMock('OCP\IUserManager'), $this->getMock('OCP\IUserManager'),

View File

@ -20,9 +20,10 @@
* *
*/ */
use \OCA\Files_Trashbin\Expiration; use OCA\Files_Trashbin\Expiration;
use \OCA\Files_Trashbin\Tests;
class Expiration_Test extends \PHPUnit_Framework_TestCase { class ExpirationTest extends \Test\TestCase {
const SECONDS_PER_DAY = 86400; //60*60*24 const SECONDS_PER_DAY = 86400; //60*60*24
const FAKE_TIME_NOW = 1000000; const FAKE_TIME_NOW = 1000000;

View File

@ -24,7 +24,7 @@
* *
*/ */
namespace OCA\Files_trashbin\Tests\Storage; namespace OCA\Files_Trashbin\Tests;
use OC\Files\Storage\Temporary; use OC\Files\Storage\Temporary;
use OC\Files\Filesystem; use OC\Files\Filesystem;
@ -34,9 +34,9 @@ use OC\Files\Filesystem;
* *
* @group DB * @group DB
* *
* @package OCA\Files_trashbin\Tests\Storage * @package OCA\Files_Trashbin\Tests
*/ */
class Storage extends \Test\TestCase { class StorageTest extends \Test\TestCase {
/** /**
* @var string * @var string
*/ */

View File

@ -26,14 +26,14 @@
* *
*/ */
use OCA\Files_Trashbin; use OCA\Files_Trashbin\Tests;
/** /**
* Class Test_Encryption * Class Test_Encryption
* *
* @group DB * @group DB
*/ */
class Test_Trashbin extends \Test\TestCase { class TrashbinTest extends \Test\TestCase {
const TEST_TRASHBIN_USER1 = "test-trashbin-user1"; const TEST_TRASHBIN_USER1 = "test-trashbin-user1";
const TEST_TRASHBIN_USER2 = "test-trashbin-user2"; const TEST_TRASHBIN_USER2 = "test-trashbin-user2";
@ -74,11 +74,11 @@ class Test_Trashbin extends \Test\TestCase {
$config = \OC::$server->getConfig(); $config = \OC::$server->getConfig();
//configure trashbin //configure trashbin
self::$rememberRetentionObligation = $config->getSystemValue('trashbin_retention_obligation', Files_Trashbin\Expiration::DEFAULT_RETENTION_OBLIGATION); self::$rememberRetentionObligation = $config->getSystemValue('trashbin_retention_obligation', \OCA\Files_Trashbin\Expiration::DEFAULT_RETENTION_OBLIGATION);
$config->setSystemValue('trashbin_retention_obligation', 'auto, 2'); $config->setSystemValue('trashbin_retention_obligation', 'auto, 2');
// register hooks // register hooks
Files_Trashbin\Trashbin::registerHooks(); \OCA\Files_Trashbin\Trashbin::registerHooks();
// create test user // create test user
self::loginHelper(self::TEST_TRASHBIN_USER2, true); self::loginHelper(self::TEST_TRASHBIN_USER2, true);
@ -675,7 +675,7 @@ class Test_Trashbin extends \Test\TestCase {
// just a dummy class to make protected methods available for testing // just a dummy class to make protected methods available for testing
class TrashbinForTesting extends Files_Trashbin\Trashbin { class TrashbinForTesting extends \OCA\Files_Trashbin\Trashbin {
/** /**
* @param OCP\Files\FileInfo[] $files * @param OCP\Files\FileInfo[] $files
@ -683,7 +683,7 @@ class TrashbinForTesting extends Files_Trashbin\Trashbin {
*/ */
public function dummyDeleteExpiredFiles($files, $limit) { public function dummyDeleteExpiredFiles($files, $limit) {
// dummy value for $retention_obligation because it is not needed here // dummy value for $retention_obligation because it is not needed here
return parent::deleteExpiredFiles($files, \Test_Trashbin::TEST_TRASHBIN_USER1, $limit, 0); return parent::deleteExpiredFiles($files, TrashbinTest::TEST_TRASHBIN_USER1, $limit, 0);
} }
/** /**
@ -691,6 +691,6 @@ class TrashbinForTesting extends Files_Trashbin\Trashbin {
* @param integer $availableSpace * @param integer $availableSpace
*/ */
public function dummyDeleteFiles($files, $availableSpace) { public function dummyDeleteFiles($files, $availableSpace) {
return parent::deleteFiles($files, \Test_Trashbin::TEST_TRASHBIN_USER1, $availableSpace); return parent::deleteFiles($files, TrashbinTest::TEST_TRASHBIN_USER1, $availableSpace);
} }
} }