2017-08-30 11:56:02 +03:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* @copyright Copyright (c) 2017 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
|
*
|
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
|
*
|
|
|
|
|
* @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 Tests\Core\Controller;
|
|
|
|
|
|
|
|
|
|
use OC\Core\Controller\AutoCompleteController;
|
|
|
|
|
use OCP\Collaboration\AutoComplete\IManager;
|
|
|
|
|
use OCP\Collaboration\Collaborators\ISearch;
|
|
|
|
|
use OCP\IRequest;
|
2019-02-26 16:16:59 +03:00
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2017-08-30 11:56:02 +03:00
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
|
|
class AutoCompleteControllerTest extends TestCase {
|
2019-02-26 16:16:59 +03:00
|
|
|
|
/** @var ISearch|MockObject */
|
2017-08-30 11:56:02 +03:00
|
|
|
|
protected $collaboratorSearch;
|
2019-02-26 16:16:59 +03:00
|
|
|
|
/** @var IManager|MockObject */
|
2017-08-30 11:56:02 +03:00
|
|
|
|
protected $autoCompleteManager;
|
2019-02-26 16:16:59 +03:00
|
|
|
|
/** @var EventDispatcherInterface|MockObject */
|
|
|
|
|
protected $dispatcher;
|
2017-08-30 11:56:02 +03:00
|
|
|
|
/** @var AutoCompleteController */
|
|
|
|
|
protected $controller;
|
|
|
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
|
|
/** @var IRequest $request */
|
|
|
|
|
$request = $this->createMock(IRequest::class);
|
|
|
|
|
$this->collaboratorSearch = $this->createMock(ISearch::class);
|
|
|
|
|
$this->autoCompleteManager = $this->createMock(IManager::class);
|
2019-02-26 16:16:59 +03:00
|
|
|
|
$this->dispatcher = $this->createMock(EventDispatcherInterface::class);
|
2017-08-30 11:56:02 +03:00
|
|
|
|
|
|
|
|
|
$this->controller = new AutoCompleteController(
|
|
|
|
|
'core',
|
|
|
|
|
$request,
|
|
|
|
|
$this->collaboratorSearch,
|
2019-02-26 16:16:59 +03:00
|
|
|
|
$this->autoCompleteManager,
|
|
|
|
|
$this->dispatcher
|
2017-08-30 11:56:02 +03:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-28 15:30:51 +03:00
|
|
|
|
public function searchDataProvider() {
|
|
|
|
|
return [
|
|
|
|
|
[ #0 – regular search
|
|
|
|
|
// searchResults
|
|
|
|
|
[
|
|
|
|
|
'exact' => [
|
|
|
|
|
'users' => [],
|
|
|
|
|
'robots' => [],
|
|
|
|
|
],
|
|
|
|
|
'users' => [
|
|
|
|
|
['label' => 'Alice A.', 'value' => ['shareWith' => 'alice']],
|
|
|
|
|
['label' => 'Bob Y.', 'value' => ['shareWith' => 'bob']],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
// expected
|
|
|
|
|
[
|
|
|
|
|
[ 'id' => 'alice', 'label' => 'Alice A.', 'source' => 'users'],
|
|
|
|
|
[ 'id' => 'bob', 'label' => 'Bob Y.', 'source' => 'users'],
|
|
|
|
|
],
|
|
|
|
|
'',
|
|
|
|
|
'files',
|
|
|
|
|
'42',
|
|
|
|
|
null
|
2017-08-30 11:56:02 +03:00
|
|
|
|
],
|
2017-11-28 15:30:51 +03:00
|
|
|
|
[ #1 – missing itemtype and id
|
|
|
|
|
[
|
|
|
|
|
'exact' => [
|
|
|
|
|
'users' => [],
|
|
|
|
|
'robots' => [],
|
|
|
|
|
],
|
|
|
|
|
'users' => [
|
|
|
|
|
['label' => 'Alice A.', 'value' => ['shareWith' => 'alice']],
|
|
|
|
|
['label' => 'Bob Y.', 'value' => ['shareWith' => 'bob']],
|
|
|
|
|
],
|
2017-10-31 16:58:48 +03:00
|
|
|
|
],
|
2017-11-28 15:30:51 +03:00
|
|
|
|
// expected
|
|
|
|
|
[
|
|
|
|
|
[ 'id' => 'alice', 'label' => 'Alice A.', 'source' => 'users'],
|
|
|
|
|
[ 'id' => 'bob', 'label' => 'Bob Y.', 'source' => 'users'],
|
|
|
|
|
],
|
|
|
|
|
'',
|
|
|
|
|
null,
|
|
|
|
|
null,
|
|
|
|
|
null
|
2017-10-31 16:58:48 +03:00
|
|
|
|
],
|
2017-11-28 15:30:51 +03:00
|
|
|
|
[ #2 – with sorter
|
|
|
|
|
[
|
|
|
|
|
'exact' => [
|
|
|
|
|
'users' => [],
|
|
|
|
|
'robots' => [],
|
|
|
|
|
],
|
|
|
|
|
'users' => [
|
|
|
|
|
['label' => 'Alice A.', 'value' => ['shareWith' => 'alice']],
|
|
|
|
|
['label' => 'Bob Y.', 'value' => ['shareWith' => 'bob']],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
// expected
|
|
|
|
|
[
|
|
|
|
|
[ 'id' => 'alice', 'label' => 'Alice A.', 'source' => 'users'],
|
|
|
|
|
[ 'id' => 'bob', 'label' => 'Bob Y.', 'source' => 'users'],
|
|
|
|
|
],
|
|
|
|
|
'',
|
|
|
|
|
'files',
|
|
|
|
|
'42',
|
|
|
|
|
'karma|bus-factor'
|
2017-10-31 16:58:48 +03:00
|
|
|
|
],
|
2017-11-28 15:30:51 +03:00
|
|
|
|
[ #3 – exact Match
|
|
|
|
|
[
|
|
|
|
|
'exact' => [
|
|
|
|
|
'users' => [
|
|
|
|
|
['label' => 'Bob Y.', 'value' => ['shareWith' => 'bob']],
|
|
|
|
|
],
|
|
|
|
|
'robots' => [],
|
|
|
|
|
],
|
|
|
|
|
'users' => [
|
|
|
|
|
['label' => 'Robert R.', 'value' => ['shareWith' => 'bobby']],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[ 'id' => 'bob', 'label' => 'Bob Y.', 'source' => 'users'],
|
|
|
|
|
[ 'id' => 'bobby', 'label' => 'Robert R.', 'source' => 'users'],
|
|
|
|
|
],
|
|
|
|
|
'bob',
|
|
|
|
|
'files',
|
|
|
|
|
'42',
|
|
|
|
|
null
|
|
|
|
|
]
|
2017-10-31 16:58:48 +03:00
|
|
|
|
];
|
2017-11-28 15:30:51 +03:00
|
|
|
|
}
|
2017-10-31 16:58:48 +03:00
|
|
|
|
|
2017-11-28 15:30:51 +03:00
|
|
|
|
/**
|
|
|
|
|
* @param $searchResults
|
|
|
|
|
* @param $expected
|
|
|
|
|
* @param $searchTerm
|
|
|
|
|
* @param $itemType
|
|
|
|
|
* @param $itemId
|
|
|
|
|
* @param $sorter
|
|
|
|
|
* @dataProvider searchDataProvider
|
|
|
|
|
*/
|
|
|
|
|
public function testGet($searchResults, $expected, $searchTerm, $itemType, $itemId, $sorter) {
|
2017-10-31 16:58:48 +03:00
|
|
|
|
$this->collaboratorSearch->expects($this->once())
|
|
|
|
|
->method('search')
|
|
|
|
|
->willReturn([$searchResults, false]);
|
|
|
|
|
|
2017-11-28 15:30:51 +03:00
|
|
|
|
$runSorterFrequency = $sorter === null ? $this->never() : $this->once();
|
|
|
|
|
$this->autoCompleteManager->expects($runSorterFrequency)
|
|
|
|
|
->method('runSorters');
|
|
|
|
|
|
|
|
|
|
$response = $this->controller->get($searchTerm, $itemType, $itemId, $sorter);
|
2017-10-31 16:58:48 +03:00
|
|
|
|
|
|
|
|
|
$list = $response->getData();
|
|
|
|
|
$this->assertEquals($expected, $list); // has better error output…
|
|
|
|
|
$this->assertSame($expected, $list);
|
|
|
|
|
}
|
2017-08-30 11:56:02 +03:00
|
|
|
|
}
|