123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?php
- /**
- * @copyright Copyright (c) 2017 Robin Appelman <robin@icewind.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace Test\Files\Cache;
- use OC\DB\QueryBuilder\Literal;
- use OC\Files\Cache\QuerySearchHelper;
- use OC\Files\Search\SearchBinaryOperator;
- use OC\Files\Search\SearchComparison;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\Files\IMimeTypeLoader;
- use OCP\Files\Search\ISearchBinaryOperator;
- use OCP\Files\Search\ISearchComparison;
- use OCP\Files\Search\ISearchOperator;
- use Test\TestCase;
- /**
- * @group DB
- */
- class QuerySearchHelperTest extends TestCase {
- /** @var IQueryBuilder */
- private $builder;
- /** @var IMimeTypeLoader|\PHPUnit_Framework_MockObject_MockObject */
- private $mimetypeLoader;
- /** @var QuerySearchHelper */
- private $querySearchHelper;
- /** @var integer */
- private $numericStorageId;
- public function setUp() {
- parent::setUp();
- $this->builder = \OC::$server->getDatabaseConnection()->getQueryBuilder();
- $this->mimetypeLoader = $this->createMock(IMimeTypeLoader::class);
- $this->mimetypeLoader->expects($this->any())
- ->method('getId')
- ->willReturnMap([
- ['text', 1],
- ['text/plain', 2],
- ['text/xml', 3],
- ['image/jpg', 4],
- ['image/png', 5],
- ['image', 6],
- ]);
- $this->mimetypeLoader->expects($this->any())
- ->method('getMimetypeById')
- ->willReturnMap([
- [1, 'text'],
- [2, 'text/plain'],
- [3, 'text/xml'],
- [4, 'image/jpg'],
- [5, 'image/png'],
- [6, 'image']
- ]);
- $this->querySearchHelper = new QuerySearchHelper($this->mimetypeLoader);
- $this->numericStorageId = 10000;
- $this->builder->select(['fileid'])
- ->from('filecache')
- ->where($this->builder->expr()->eq('storage', new Literal($this->numericStorageId)));
- }
- public function tearDown() {
- parent::tearDown();
- $builder = \OC::$server->getDatabaseConnection()->getQueryBuilder();
- $builder->delete('filecache')
- ->where($builder->expr()->eq('storage', $builder->createNamedParameter($this->numericStorageId, IQueryBuilder::PARAM_INT)));
- $builder->execute();
- }
- private function addCacheEntry(array $data) {
- $data['storage'] = $this->numericStorageId;
- $data['etag'] = 'unimportant';
- $data['storage_mtime'] = $data['mtime'];
- if (!isset($data['path'])) {
- $data['path'] = 'random/' . $this->getUniqueID();
- }
- $data['path_hash'] = md5($data['path']);
- if (!isset($data['mtime'])) {
- $data['mtime'] = 100;
- }
- if (!isset($data['size'])) {
- $data['size'] = 100;
- }
- $data['name'] = basename($data['path']);
- $data['parent'] = -1;
- if (isset($data['mimetype'])) {
- list($mimepart,) = explode('/', $data['mimetype']);
- $data['mimepart'] = $this->mimetypeLoader->getId($mimepart);
- $data['mimetype'] = $this->mimetypeLoader->getId($data['mimetype']);
- } else {
- $data['mimepart'] = 1;
- $data['mimetype'] = 1;
- }
- $builder = \OC::$server->getDatabaseConnection()->getQueryBuilder();
- $values = [];
- foreach ($data as $key => $value) {
- $values[$key] = $builder->createNamedParameter($value);
- }
- $builder->insert('filecache')
- ->values($values)
- ->execute();
- }
- private function search(ISearchOperator $operator) {
- $dbOperator = $this->querySearchHelper->searchOperatorToDBExpr($this->builder, $operator);
- $this->builder->andWhere($dbOperator);
- return $this->builder->execute()->fetchAll(\PDO::FETCH_COLUMN);
- }
- public function comparisonProvider() {
- return [
- [new SearchComparison(ISearchComparison::COMPARE_GREATER_THAN, 'mtime', 125), [1002]],
- [new SearchComparison(ISearchComparison::COMPARE_LESS_THAN, 'mtime', 125), [1001]],
- [new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'size', 125), []],
- [new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'size', 50), [1001, 1002]],
- [new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'name', 'foobar'), [1001]],
- [new SearchComparison(ISearchComparison::COMPARE_LIKE, 'name', 'foo%'), [1001, 1002]],
- [new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'mimetype', 'image/jpg'), [1001]],
- [new SearchComparison(ISearchComparison::COMPARE_LIKE, 'mimetype', 'image/%'), [1001, 1002]],
- [new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_AND, [
- new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'size', 50),
- new SearchComparison(ISearchComparison::COMPARE_LESS_THAN, 'mtime', 125), [1001]
- ]), [1001]],
- [new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_OR, [
- new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'mtime', 100),
- new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'mtime', 150),
- ]), [1001, 1002]],
- [new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_NOT, [
- new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'mtime', 150),
- ]), [1001]],
- [new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_NOT, [
- new SearchComparison(ISearchComparison::COMPARE_GREATER_THAN, 'mtime', 125),
- ]), [1001]],
- [new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_NOT, [
- new SearchComparison(ISearchComparison::COMPARE_LESS_THAN, 'mtime', 125),
- ]), [1002]],
- [new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_NOT, [
- new SearchComparison(ISearchComparison::COMPARE_LIKE, 'name', '%bar'),
- ]), [1002]],
- ];
- }
- /**
- * @dataProvider comparisonProvider
- *
- * @param ISearchOperator $operator
- * @param array $fileIds
- */
- public function testComparison(ISearchOperator $operator, array $fileIds) {
- $this->addCacheEntry([
- 'path' => 'foobar',
- 'fileid' => 1001,
- 'mtime' => 100,
- 'size' => 50,
- 'mimetype' => 'image/jpg'
- ]);
- $this->addCacheEntry([
- 'path' => 'fooasd',
- 'fileid' => 1002,
- 'mtime' => 150,
- 'size' => 50,
- 'mimetype' => 'image/png'
- ]);
- $results = $this->search($operator);
- sort($fileIds);
- sort($results);
- $this->assertEquals($fileIds, $results);
- }
- }
|