123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace Tests\Core\Controller;
- use OC\Core\Controller\AutoCompleteController;
- use OCP\Collaboration\AutoComplete\IManager;
- use OCP\Collaboration\Collaborators\ISearch;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\IRequest;
- use PHPUnit\Framework\MockObject\MockObject;
- use Test\TestCase;
- class AutoCompleteControllerTest extends TestCase {
- /** @var ISearch|MockObject */
- protected $collaboratorSearch;
- /** @var IManager|MockObject */
- protected $autoCompleteManager;
- /** @var IEventDispatcher|MockObject */
- protected $dispatcher;
- /** @var AutoCompleteController */
- protected $controller;
- protected function setUp(): void {
- parent::setUp();
- /** @var IRequest $request */
- $request = $this->createMock(IRequest::class);
- $this->collaboratorSearch = $this->createMock(ISearch::class);
- $this->autoCompleteManager = $this->createMock(IManager::class);
- $this->dispatcher = $this->createMock(IEventDispatcher::class);
- $this->controller = new AutoCompleteController(
- 'core',
- $request,
- $this->collaboratorSearch,
- $this->autoCompleteManager,
- $this->dispatcher
- );
- }
- 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.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- [ 'id' => 'bob', 'label' => 'Bob Y.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- ],
- '',
- 'files',
- '42',
- null
- ],
- [ #1 – missing itemtype and id
- [
- 'exact' => [
- 'users' => [],
- 'robots' => [],
- ],
- 'users' => [
- ['label' => 'Alice A.', 'value' => ['shareWith' => 'alice']],
- ['label' => 'Bob Y.', 'value' => ['shareWith' => 'bob']],
- ],
- ],
- // expected
- [
- [ 'id' => 'alice', 'label' => 'Alice A.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- [ 'id' => 'bob', 'label' => 'Bob Y.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- ],
- '',
- null,
- null,
- null
- ],
- [ #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.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- [ 'id' => 'bob', 'label' => 'Bob Y.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- ],
- '',
- 'files',
- '42',
- 'karma|bus-factor'
- ],
- [ #3 – exact Match
- [
- 'exact' => [
- 'users' => [
- ['label' => 'Bob Y.', 'value' => ['shareWith' => 'bob']],
- ],
- 'robots' => [],
- ],
- 'users' => [
- ['label' => 'Robert R.', 'value' => ['shareWith' => 'bobby']],
- ],
- ],
- [
- [ 'id' => 'bob', 'label' => 'Bob Y.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- [ 'id' => 'bobby', 'label' => 'Robert R.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => ''],
- ],
- 'bob',
- 'files',
- '42',
- null
- ],
- [ #4 – with unique name
- [
- 'exact' => [
- 'users' => [],
- 'robots' => [],
- ],
- 'users' => [
- ['label' => 'Alice A.', 'value' => ['shareWith' => 'alice'], 'shareWithDisplayNameUnique' => 'alica@nextcloud.com'],
- ['label' => 'Alice A.', 'value' => ['shareWith' => 'alicea'], 'shareWithDisplayNameUnique' => 'alicaa@nextcloud.com'],
- ],
- ],
- // expected
- [
- [ 'id' => 'alice', 'label' => 'Alice A.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => 'alica@nextcloud.com'],
- [ 'id' => 'alicea', 'label' => 'Alice A.', 'icon' => '', 'source' => 'users', 'status' => '', 'subline' => '', 'shareWithDisplayNameUnique' => 'alicaa@nextcloud.com'],
- ],
- '',
- 'files',
- '42',
- 'karma|bus-factor'
- ],
- ];
- }
- /**
- * @dataProvider searchDataProvider
- */
- public function testGet(array $searchResults, array $expected, string $searchTerm, ?string $itemType, ?string $itemId, ?string $sorter) {
- $this->collaboratorSearch->expects($this->once())
- ->method('search')
- ->willReturn([$searchResults, false]);
- $runSorterFrequency = $sorter === null ? $this->never() : $this->once();
- $this->autoCompleteManager->expects($runSorterFrequency)
- ->method('runSorters');
- $response = $this->controller->get($searchTerm, $itemType, $itemId, $sorter);
- $list = $response->getData();
- $this->assertEquals($expected, $list); // has better error output…
- $this->assertSame($expected, $list);
- }
- }
|