2015-09-17 17:01:11 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015 Vincent Petry <pvince81@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2015-10-01 09:32:24 +03:00
|
|
|
|
2015-09-17 17:01:11 +03:00
|
|
|
namespace Test\Repair;
|
|
|
|
|
2015-10-01 09:32:24 +03:00
|
|
|
|
|
|
|
use OC\Repair\RepairInvalidShares;
|
|
|
|
use OC\Share\Constants;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
2015-09-17 17:01:11 +03:00
|
|
|
/**
|
|
|
|
* Tests for repairing invalid shares
|
|
|
|
*
|
2015-11-03 03:52:41 +03:00
|
|
|
* @group DB
|
|
|
|
*
|
2015-09-17 17:01:11 +03:00
|
|
|
* @see \OC\Repair\RepairInvalidShares
|
|
|
|
*/
|
2015-10-01 09:32:24 +03:00
|
|
|
class RepairInvalidSharesTest extends TestCase {
|
2015-09-17 17:01:11 +03:00
|
|
|
|
|
|
|
/** @var \OC\RepairStep */
|
|
|
|
private $repair;
|
|
|
|
|
|
|
|
/** @var \OCP\IDBConnection */
|
|
|
|
private $connection;
|
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$config = $this->getMockBuilder('OCP\IConfig')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$config->expects($this->any())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('version')
|
|
|
|
->will($this->returnValue('8.0.0.0'));
|
|
|
|
|
|
|
|
$this->connection = \OC::$server->getDatabaseConnection();
|
2015-10-01 09:32:24 +03:00
|
|
|
$this->deleteAllShares();
|
2015-09-17 17:01:11 +03:00
|
|
|
|
2015-10-01 09:32:24 +03:00
|
|
|
/** @var \OCP\IConfig $config */
|
|
|
|
$this->repair = new RepairInvalidShares($config, $this->connection);
|
2015-09-17 17:01:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown() {
|
2015-10-01 09:32:24 +03:00
|
|
|
$this->deleteAllShares();
|
2015-09-17 17:01:11 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
2015-10-01 09:32:24 +03:00
|
|
|
protected function deleteAllShares() {
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->delete('share')->execute();
|
|
|
|
}
|
|
|
|
|
2015-09-17 17:01:11 +03:00
|
|
|
/**
|
|
|
|
* Test remove expiration date for non-link shares
|
|
|
|
*/
|
|
|
|
public function testRemoveExpirationDateForNonLinkShares() {
|
|
|
|
// user share with bogus expiration date
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->insert('share')
|
|
|
|
->values([
|
2015-10-01 09:32:24 +03:00
|
|
|
'share_type' => $qb->expr()->literal(Constants::SHARE_TYPE_USER),
|
2015-09-17 17:01:11 +03:00
|
|
|
'share_with' => $qb->expr()->literal('recipientuser1'),
|
|
|
|
'uid_owner' => $qb->expr()->literal('user1'),
|
|
|
|
'item_type' => $qb->expr()->literal('folder'),
|
|
|
|
'item_source' => $qb->expr()->literal(123),
|
|
|
|
'item_target' => $qb->expr()->literal('/123'),
|
|
|
|
'file_source' => $qb->expr()->literal(123),
|
|
|
|
'file_target' => $qb->expr()->literal('/test'),
|
|
|
|
'permissions' => $qb->expr()->literal(1),
|
|
|
|
'stime' => $qb->expr()->literal(time()),
|
|
|
|
'expiration' => $qb->expr()->literal('2015-09-25 00:00:00')
|
|
|
|
])
|
|
|
|
->execute();
|
|
|
|
|
2015-10-20 11:11:25 +03:00
|
|
|
$bogusShareId = $this->getLastShareId();
|
2015-09-17 17:01:11 +03:00
|
|
|
|
|
|
|
// link share with expiration date
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->insert('share')
|
|
|
|
->values([
|
2015-10-01 09:32:24 +03:00
|
|
|
'share_type' => $qb->expr()->literal(Constants::SHARE_TYPE_LINK),
|
2015-09-17 17:01:11 +03:00
|
|
|
'uid_owner' => $qb->expr()->literal('user1'),
|
|
|
|
'item_type' => $qb->expr()->literal('folder'),
|
|
|
|
'item_source' => $qb->expr()->literal(123),
|
|
|
|
'item_target' => $qb->expr()->literal('/123'),
|
|
|
|
'file_source' => $qb->expr()->literal(123),
|
|
|
|
'file_target' => $qb->expr()->literal('/test'),
|
|
|
|
'permissions' => $qb->expr()->literal(1),
|
|
|
|
'stime' => $qb->expr()->literal(time()),
|
|
|
|
'expiration' => $qb->expr()->literal('2015-09-25 00:00:00'),
|
|
|
|
'token' => $qb->expr()->literal('abcdefg')
|
|
|
|
])->execute();
|
|
|
|
|
|
|
|
$this->repair->run();
|
|
|
|
|
|
|
|
$results = $this->connection->getQueryBuilder()
|
|
|
|
->select('*')
|
|
|
|
->from('share')
|
|
|
|
->orderBy('share_type', 'ASC')
|
|
|
|
->execute()
|
|
|
|
->fetchAll();
|
|
|
|
|
|
|
|
$this->assertCount(2, $results);
|
|
|
|
|
|
|
|
$userShare = $results[0];
|
|
|
|
$linkShare = $results[1];
|
|
|
|
$this->assertEquals($bogusShareId, $userShare['id'], 'sanity check');
|
|
|
|
$this->assertNull($userShare['expiration'], 'bogus expiration date was removed');
|
|
|
|
$this->assertNotNull($linkShare['expiration'], 'valid link share expiration date still there');
|
|
|
|
}
|
2015-10-19 16:39:39 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test remove shares where the parent share does not exist anymore
|
|
|
|
*/
|
|
|
|
public function testSharesNonExistingParent() {
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$shareValues = [
|
|
|
|
'share_type' => $qb->expr()->literal(Constants::SHARE_TYPE_USER),
|
|
|
|
'share_with' => $qb->expr()->literal('recipientuser1'),
|
|
|
|
'uid_owner' => $qb->expr()->literal('user1'),
|
|
|
|
'item_type' => $qb->expr()->literal('folder'),
|
|
|
|
'item_source' => $qb->expr()->literal(123),
|
|
|
|
'item_target' => $qb->expr()->literal('/123'),
|
|
|
|
'file_source' => $qb->expr()->literal(123),
|
|
|
|
'file_target' => $qb->expr()->literal('/test'),
|
|
|
|
'permissions' => $qb->expr()->literal(1),
|
|
|
|
'stime' => $qb->expr()->literal(time()),
|
|
|
|
'expiration' => $qb->expr()->literal('2015-09-25 00:00:00')
|
|
|
|
];
|
|
|
|
|
|
|
|
// valid share
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->insert('share')
|
|
|
|
->values($shareValues)
|
|
|
|
->execute();
|
|
|
|
$parent = $this->getLastShareId();
|
|
|
|
|
|
|
|
// share with existing parent
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->insert('share')
|
|
|
|
->values(array_merge($shareValues, [
|
|
|
|
'parent' => $qb->expr()->literal($parent),
|
|
|
|
]))->execute();
|
|
|
|
$validChild = $this->getLastShareId();
|
|
|
|
|
|
|
|
// share with non-existing parent
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->insert('share')
|
|
|
|
->values(array_merge($shareValues, [
|
|
|
|
'parent' => $qb->expr()->literal($parent + 100),
|
|
|
|
]))->execute();
|
|
|
|
$invalidChild = $this->getLastShareId();
|
|
|
|
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$result = $query->select('id')
|
|
|
|
->from('share')
|
|
|
|
->orderBy('id', 'ASC')
|
|
|
|
->execute();
|
|
|
|
$rows = $result->fetchAll();
|
2015-11-19 19:18:22 +03:00
|
|
|
$this->assertEquals([['id' => $parent], ['id' => $validChild], ['id' => $invalidChild]], $rows);
|
2015-10-19 16:39:39 +03:00
|
|
|
$result->closeCursor();
|
|
|
|
|
|
|
|
$this->repair->run();
|
|
|
|
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$result = $query->select('id')
|
|
|
|
->from('share')
|
|
|
|
->orderBy('id', 'ASC')
|
|
|
|
->execute();
|
|
|
|
$rows = $result->fetchAll();
|
2015-11-19 19:18:22 +03:00
|
|
|
$this->assertEquals([['id' => $parent], ['id' => $validChild]], $rows);
|
2015-10-19 16:39:39 +03:00
|
|
|
$result->closeCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
protected function getLastShareId() {
|
2015-11-19 19:18:22 +03:00
|
|
|
return $this->connection->lastInsertId('*PREFIX*share');
|
2015-10-19 16:39:39 +03:00
|
|
|
}
|
2015-09-17 17:01:11 +03:00
|
|
|
}
|
|
|
|
|