nextcloud/apps/files_sharing/tests/External/CacheTest.php

133 lines
2.9 KiB
PHP
Raw Normal View History

2015-01-21 15:13:37 +01:00
<?php
2015-03-26 11:44:34 +01:00
/**
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2015-03-26 11:44:34 +01:00
*/
2016-05-17 11:42:03 +02:00
namespace OCA\Files_Sharing\Tests\External;
2015-01-21 15:52:56 +01:00
use OC\Federation\CloudIdManager;
2016-05-17 11:42:03 +02:00
use OCA\Files_Sharing\Tests\TestCase;
use OCP\Contacts\IManager;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Federation\ICloudIdManager;
use OCP\ICacheFactory;
use OCP\IURLGenerator;
use OCP\IUserManager;
2015-01-21 15:13:37 +01:00
/**
2015-11-03 01:52:41 +01:00
* Class Cache
2015-01-21 15:13:37 +01:00
*
2015-11-03 01:52:41 +01:00
* @group DB
2015-01-21 15:13:37 +01:00
*
2016-05-17 11:42:03 +02:00
* @package OCA\Files_Sharing\Tests\External
2015-01-21 15:13:37 +01:00
*/
2016-05-17 11:42:03 +02:00
class CacheTest extends TestCase {
/** @var IManager|\PHPUnit\Framework\MockObject\MockObject */
protected $contactsManager;
2015-01-21 15:13:37 +01:00
/**
* @var \OC\Files\Storage\Storage
**/
private $storage;
/**
* @var \OCA\Files_Sharing\External\Cache
*/
private $cache;
/**
* @var string
*/
private $remoteUser;
/** @var ICloudIdManager */
private $cloudIdManager;
protected function setUp(): void {
2015-01-21 15:13:37 +01:00
parent::setUp();
$this->contactsManager = $this->createMock(IManager::class);
$this->cloudIdManager = new CloudIdManager(
$this->contactsManager,
$this->createMock(IURLGenerator::class),
$this->createMock(IUserManager::class),
$this->createMock(ICacheFactory::class),
$this->createMock(IEventDispatcher::class)
);
2015-01-21 15:13:37 +01:00
$this->remoteUser = $this->getUniqueID('remoteuser');
$this->storage = $this->getMockBuilder('\OCA\Files_Sharing\External\Storage')
->disableOriginalConstructor()
->getMock();
$this->storage
->expects($this->any())
->method('getId')
->willReturn('dummystorage::');
$this->contactsManager->expects($this->any())
->method('search')
->willReturn([]);
2015-01-21 15:13:37 +01:00
$this->cache = new \OCA\Files_Sharing\External\Cache(
$this->storage,
$this->cloudIdManager->getCloudId($this->remoteUser, 'http://example.com/owncloud')
2015-01-21 15:13:37 +01:00
);
$this->cache->put(
'test.txt',
[
2015-01-21 15:13:37 +01:00
'mimetype' => 'text/plain',
'size' => 5,
'mtime' => 123,
]
2015-01-21 15:13:37 +01:00
);
}
protected function tearDown(): void {
2015-12-02 14:49:27 +01:00
if ($this->cache) {
$this->cache->clear();
}
2015-01-21 15:13:37 +01:00
parent::tearDown();
}
public function testGetInjectsOwnerDisplayName() {
$info = $this->cache->get('test.txt');
$this->assertEquals(
$this->remoteUser . '@example.com/owncloud',
$info['displayname_owner']
);
}
public function testGetReturnsFalseIfNotFound() {
$info = $this->cache->get('unexisting-entry.txt');
$this->assertFalse($info);
}
public function testGetFolderPopulatesOwner() {
$dirId = $this->cache->put(
'subdir',
[
2015-01-21 15:13:37 +01:00
'mimetype' => 'httpd/unix-directory',
'size' => 5,
'mtime' => 123,
]
2015-01-21 15:13:37 +01:00
);
$this->cache->put(
'subdir/contents.txt',
[
2015-01-21 15:13:37 +01:00
'mimetype' => 'text/plain',
'size' => 5,
'mtime' => 123,
]
2015-01-21 15:13:37 +01:00
);
$results = $this->cache->getFolderContentsById($dirId);
$this->assertEquals(1, count($results));
$this->assertEquals(
$this->remoteUser . '@example.com/owncloud',
$results[0]['displayname_owner']
);
}
}