123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace Test\Repair;
- use OC\Repair\RepairDavShares;
- use OCP\DB\IResult;
- use OCP\DB\QueryBuilder\IExpressionBuilder;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\IGroupManager;
- use OCP\Migration\IOutput;
- use Psr\Log\LoggerInterface;
- use Test\TestCase;
- use function in_array;
- class RepairDavSharesTest extends TestCase {
- /** @var IOutput|\PHPUnit\Framework\MockObject\MockObject */
- protected $output;
- /** @var IConfig|\PHPUnit\Framework\MockObject\MockObject */
- protected $config;
- /** @var IDBConnection|\PHPUnit\Framework\MockObject\MockObject */
- protected $dbc;
- /** @var IGroupManager|\PHPUnit\Framework\MockObject\MockObject */
- protected $groupManager;
- /** @var \PHPUnit\Framework\MockObject\MockObject|LoggerInterface */
- protected $logger;
- /** @var RepairDavSharesTest */
- protected $repair;
- public function setUp(): void {
- parent::setUp();
- $this->output = $this->createMock(IOutput::class);
- $this->config = $this->createMock(IConfig::class);
- $this->dbc = $this->createMock(IDBConnection::class);
- $this->groupManager = $this->createMock(IGroupManager::class);
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->repair = new RepairDavShares(
- $this->config,
- $this->dbc,
- $this->groupManager,
- $this->logger
- );
- }
- public function testRun() {
- $this->config->expects($this->any())
- ->method('getSystemValueString')
- ->with('version', '0.0.0')
- ->willReturn('20.0.2');
- $this->output->expects($this->atLeastOnce())
- ->method('info');
- $existingGroups = [
- 'Innocent',
- 'Wants Repair',
- 'Well förmed',
- 'family+friends',
- 'family friends',
- ];
- $shareResultData = [
- [
- // No update, nothing to escape
- 'id' => 0,
- 'principaluri' => 'principals/groups/Innocent',
- ],
- [
- // Update
- 'id' => 1,
- 'principaluri' => 'principals/groups/Wants Repair',
- ],
- [
- // No update, already proper
- 'id' => 2,
- 'principaluri' => 'principals/groups/Well+f%C3%B6rmed',
- ],
- [
- // No update, unknown group
- 'id' => 3,
- 'principaluri' => 'principals/groups/Not known',
- ],
- [
- // No update, unknown group
- 'id' => 4,
- 'principaluri' => 'principals/groups/Also%2F%2FNot%23Known',
- ],
- [
- // No update, group exists in both forms
- 'id' => 5,
- 'principaluri' => 'principals/groups/family+friends',
- ],
- [
- // No update, already proper
- 'id' => 6,
- 'principaluri' => 'principals/groups/family%2Bfriends',
- ],
- [
- // Update
- 'id' => 7,
- 'principaluri' => 'principals/groups/family friends',
- ],
- ];
- $shareResults = $this->createMock(IResult::class);
- $shareResults->expects($this->any())
- ->method('fetch')
- ->willReturnCallback(function () use (&$shareResultData) {
- return array_pop($shareResultData);
- });
- $expressionBuilder = $this->createMock(IExpressionBuilder::class);
- $selectMock = $this->createMock(IQueryBuilder::class);
- $selectMock->expects($this->any())
- ->method('expr')
- ->willReturn($expressionBuilder);
- $selectMock->expects($this->once())
- ->method('select')
- ->willReturnSelf();
- $selectMock->expects($this->once())
- ->method('from')
- ->willReturnSelf();
- $selectMock->expects($this->once())
- ->method('where')
- ->willReturnSelf();
- $selectMock->expects($this->once())
- ->method('execute')
- ->willReturn($shareResults);
- $updateMock = $this->createMock(IQueryBuilder::class);
- $updateMock->expects($this->any())
- ->method('expr')
- ->willReturn($expressionBuilder);
- $updateMock->expects($this->once())
- ->method('update')
- ->willReturnSelf();
- $updateMock->expects($this->any())
- ->method('set')
- ->willReturnSelf();
- $updateMock->expects($this->once())
- ->method('where')
- ->willReturnSelf();
- $updateMock->expects($this->exactly(4))
- ->method('setParameter')
- ->withConsecutive(
- ['updatedPrincipalUri', 'principals/groups/' . urlencode('family friends')],
- ['shareId', 7],
- ['updatedPrincipalUri', 'principals/groups/' . urlencode('Wants Repair')],
- ['shareId', 1],
- )
- ->willReturnSelf();
- $updateMock->expects($this->exactly(2))
- ->method('execute');
- $this->dbc->expects($this->atLeast(2))
- ->method('getQueryBuilder')
- ->willReturnOnConsecutiveCalls($selectMock, $updateMock);
- $this->groupManager->expects($this->any())
- ->method('groupExists')
- ->willReturnCallback(function (string $gid) use ($existingGroups) {
- return in_array($gid, $existingGroups);
- });
- $this->repair->run($this->output);
- }
- }
|