Merge pull request #10041 from liamdennehy/10001/trashbin-defaults
Safe default behaviour when no users are specified on trashbin:cleanup
This commit is contained in:
commit
9b6c0ac13c
2 changed files with 57 additions and 10 deletions
|
@ -29,8 +29,10 @@ use OCP\IUserBackend;
|
||||||
use OCP\IUserManager;
|
use OCP\IUserManager;
|
||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputArgument;
|
use Symfony\Component\Console\Input\InputArgument;
|
||||||
|
use Symfony\Component\Console\Input\InputOption;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Symfony\Component\Console\Exception\InvalidOptionException;
|
||||||
|
|
||||||
class CleanUp extends Command {
|
class CleanUp extends Command {
|
||||||
|
|
||||||
|
@ -62,13 +64,21 @@ class CleanUp extends Command {
|
||||||
->addArgument(
|
->addArgument(
|
||||||
'user_id',
|
'user_id',
|
||||||
InputArgument::OPTIONAL | InputArgument::IS_ARRAY,
|
InputArgument::OPTIONAL | InputArgument::IS_ARRAY,
|
||||||
'remove deleted files of the given user(s), if no user is given all deleted files will be removed'
|
'remove deleted files of the given user(s)'
|
||||||
|
)
|
||||||
|
->addOption(
|
||||||
|
'all-users',
|
||||||
|
null,
|
||||||
|
InputOption::VALUE_NONE,
|
||||||
|
'run action on all users'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output) {
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
||||||
$users = $input->getArgument('user_id');
|
$users = $input->getArgument('user_id');
|
||||||
if (!empty($users)) {
|
if ((!empty($users)) and ($input->getOption('all-users'))) {
|
||||||
|
throw new InvalidOptionException('Either specify a user_id or --all-users');
|
||||||
|
} elseif (!empty($users)) {
|
||||||
foreach ($users as $user) {
|
foreach ($users as $user) {
|
||||||
if ($this->userManager->userExists($user)) {
|
if ($this->userManager->userExists($user)) {
|
||||||
$output->writeln("Remove deleted files of <info>$user</info>");
|
$output->writeln("Remove deleted files of <info>$user</info>");
|
||||||
|
@ -77,8 +87,8 @@ class CleanUp extends Command {
|
||||||
$output->writeln("<error>Unknown user $user</error>");
|
$output->writeln("<error>Unknown user $user</error>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} elseif ($input->getOption('all-users')) {
|
||||||
$output->writeln('Remove all deleted files');
|
$output->writeln('Remove deleted files for all users');
|
||||||
foreach ($this->userManager->getBackends() as $backend) {
|
foreach ($this->userManager->getBackends() as $backend) {
|
||||||
$name = get_class($backend);
|
$name = get_class($backend);
|
||||||
if ($backend instanceof IUserBackend) {
|
if ($backend instanceof IUserBackend) {
|
||||||
|
@ -96,6 +106,8 @@ class CleanUp extends Command {
|
||||||
$offset += $limit;
|
$offset += $limit;
|
||||||
} while (count($users) >= $limit);
|
} while (count($users) >= $limit);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
throw new InvalidOptionException('Either specify a user_id or --all-users');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@ namespace OCA\Files_Trashbin\Tests\Command;
|
||||||
|
|
||||||
|
|
||||||
use OCA\Files_Trashbin\Command\CleanUp;
|
use OCA\Files_Trashbin\Command\CleanUp;
|
||||||
|
use Symfony\Component\Console\Exception\InvalidOptionException;
|
||||||
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
use Test\TestCase;
|
use Test\TestCase;
|
||||||
use OC\User\Manager;
|
use OC\User\Manager;
|
||||||
use OCP\Files\IRootFolder;
|
use OCP\Files\IRootFolder;
|
||||||
|
@ -183,8 +186,7 @@ class CleanUpTest extends TestCase {
|
||||||
->setMethods(['removeDeletedFiles'])
|
->setMethods(['removeDeletedFiles'])
|
||||||
->setConstructorArgs([$this->rootFolder, $this->userManager, $this->dbConnection])
|
->setConstructorArgs([$this->rootFolder, $this->userManager, $this->dbConnection])
|
||||||
->getMock();
|
->getMock();
|
||||||
$backend = $this->getMockBuilder(\OCP\UserInterface::class)
|
$backend = $this->createMock(\OCP\UserInterface::class);
|
||||||
->disableOriginalConstructor()->getMock();
|
|
||||||
$backend->expects($this->once())->method('getUsers')
|
$backend->expects($this->once())->method('getUsers')
|
||||||
->with('', 500, 0)
|
->with('', 500, 0)
|
||||||
->willReturn($backendUsers);
|
->willReturn($backendUsers);
|
||||||
|
@ -193,17 +195,50 @@ class CleanUpTest extends TestCase {
|
||||||
->willReturnCallback(function ($user) use ($backendUsers) {
|
->willReturnCallback(function ($user) use ($backendUsers) {
|
||||||
$this->assertTrue(in_array($user, $backendUsers));
|
$this->assertTrue(in_array($user, $backendUsers));
|
||||||
});
|
});
|
||||||
$inputInterface = $this->getMockBuilder('\Symfony\Component\Console\Input\InputInterface')
|
$inputInterface = $this->createMock(InputInterface::class);
|
||||||
->disableOriginalConstructor()->getMock();
|
|
||||||
$inputInterface->expects($this->once())->method('getArgument')
|
$inputInterface->expects($this->once())->method('getArgument')
|
||||||
->with('user_id')
|
->with('user_id')
|
||||||
->willReturn($userIds);
|
->willReturn($userIds);
|
||||||
$outputInterface = $this->getMockBuilder('\Symfony\Component\Console\Output\OutputInterface')
|
$inputInterface->method('getOption')
|
||||||
->disableOriginalConstructor()->getMock();
|
->with('all-users')
|
||||||
|
->willReturn(true);
|
||||||
|
$outputInterface = $this->createMock(OutputInterface::class);
|
||||||
$this->userManager->expects($this->once())
|
$this->userManager->expects($this->once())
|
||||||
->method('getBackends')
|
->method('getBackends')
|
||||||
->willReturn([$backend]);
|
->willReturn([$backend]);
|
||||||
$this->invokePrivate($instance, 'execute', [$inputInterface, $outputInterface]);
|
$this->invokePrivate($instance, 'execute', [$inputInterface, $outputInterface]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testExecuteNoUsersAndNoAllUsers() {
|
||||||
|
$inputInterface = $this->createMock(InputInterface::class);
|
||||||
|
$inputInterface->expects($this->once())->method('getArgument')
|
||||||
|
->with('user_id')
|
||||||
|
->willReturn([]);
|
||||||
|
$inputInterface->method('getOption')
|
||||||
|
->with('all-users')
|
||||||
|
->willReturn(false);
|
||||||
|
$outputInterface = $this->createMock(OutputInterface::class);
|
||||||
|
|
||||||
|
$this->expectException(InvalidOptionException::class);
|
||||||
|
$this->expectExceptionMessage('Either specify a user_id or --all-users');
|
||||||
|
|
||||||
|
$this->invokePrivate($this->cleanup, 'execute', [$inputInterface, $outputInterface]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testExecuteUsersAndAllUsers() {
|
||||||
|
$inputInterface = $this->createMock(InputInterface::class);
|
||||||
|
$inputInterface->expects($this->once())->method('getArgument')
|
||||||
|
->with('user_id')
|
||||||
|
->willReturn(['user1', 'user2']);
|
||||||
|
$inputInterface->method('getOption')
|
||||||
|
->with('all-users')
|
||||||
|
->willReturn(true);
|
||||||
|
$outputInterface = $this->createMock(OutputInterface::class);
|
||||||
|
|
||||||
|
$this->expectException(InvalidOptionException::class);
|
||||||
|
$this->expectExceptionMessage('Either specify a user_id or --all-users');
|
||||||
|
|
||||||
|
$this->invokePrivate($this->cleanup, 'execute', [$inputInterface, $outputInterface]);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue