123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\DAV\Tests\unit\CardDAV;
- use OCA\DAV\CardDAV\AddressBook;
- use OCA\DAV\CardDAV\ImageExportPlugin;
- use OCA\DAV\CardDAV\PhotoCache;
- use OCP\Files\NotFoundException;
- use OCP\Files\SimpleFS\ISimpleFile;
- use Sabre\CardDAV\Card;
- use Sabre\DAV\Node;
- use Sabre\DAV\Server;
- use Sabre\DAV\Tree;
- use Sabre\HTTP\RequestInterface;
- use Sabre\HTTP\ResponseInterface;
- use Test\TestCase;
- class ImageExportPluginTest extends TestCase {
- /** @var ResponseInterface|\PHPUnit_Framework_MockObject_MockObject */
- private $response;
- /** @var RequestInterface|\PHPUnit_Framework_MockObject_MockObject */
- private $request;
- /** @var ImageExportPlugin|\PHPUnit_Framework_MockObject_MockObject */
- private $plugin;
- /** @var Server */
- private $server;
- /** @var Tree|\PHPUnit_Framework_MockObject_MockObject */
- private $tree;
- /** @var PhotoCache|\PHPUnit_Framework_MockObject_MockObject */
- private $cache;
- protected function setUp(): void {
- parent::setUp();
- $this->request = $this->createMock(RequestInterface::class);
- $this->response = $this->createMock(ResponseInterface::class);
- $this->server = $this->createMock(Server::class);
- $this->tree = $this->createMock(Tree::class);
- $this->server->tree = $this->tree;
- $this->cache = $this->createMock(PhotoCache::class);
- $this->plugin = $this->getMockBuilder(ImageExportPlugin::class)
- ->setMethods(['getPhoto'])
- ->setConstructorArgs([$this->cache])
- ->getMock();
- $this->plugin->initialize($this->server);
- }
- /**
- * @dataProvider providesQueryParams
- * @param $param
- */
- public function testQueryParams($param) {
- $this->request->expects($this->once())->method('getQueryParameters')->willReturn($param);
- $result = $this->plugin->httpGet($this->request, $this->response);
- $this->assertTrue($result);
- }
- public function providesQueryParams() {
- return [
- [[]],
- [['1']],
- [['foo' => 'bar']],
- ];
- }
- public function testNoCard() {
- $this->request->method('getQueryParameters')
- ->willReturn([
- 'photo'
- ]);
- $this->request->method('getPath')
- ->willReturn('user/book/card');
- $node = $this->createMock(Node::class);
- $this->tree->method('getNodeForPath')
- ->with('user/book/card')
- ->willReturn($node);
- $result = $this->plugin->httpGet($this->request, $this->response);
- $this->assertTrue($result);
- }
- public function dataTestCard() {
- return [
- [null, false],
- [null, true],
- [32, false],
- [32, true],
- ];
- }
- /**
- * @dataProvider dataTestCard
- *
- * @param $size
- * @param bool $photo
- */
- public function testCard($size, $photo) {
- $query = ['photo' => null];
- if ($size !== null) {
- $query['size'] = $size;
- }
- $this->request->method('getQueryParameters')
- ->willReturn($query);
- $this->request->method('getPath')
- ->willReturn('user/book/card');
- $card = $this->createMock(Card::class);
- $card->method('getETag')
- ->willReturn('"myEtag"');
- $card->method('getName')
- ->willReturn('card');
- $book = $this->createMock(AddressBook::class);
- $book->method('getResourceId')
- ->willReturn(1);
- $this->tree->method('getNodeForPath')
- ->willReturnCallback(function ($path) use ($card, $book) {
- if ($path === 'user/book/card') {
- return $card;
- } elseif ($path === 'user/book') {
- return $book;
- }
- $this->fail();
- });
- $this->response->expects($this->at(0))
- ->method('setHeader')
- ->with('Cache-Control', 'private, max-age=3600, must-revalidate');
- $this->response->expects($this->at(1))
- ->method('setHeader')
- ->with('Etag', '"myEtag"');
- $this->response->expects($this->at(2))
- ->method('setHeader')
- ->with('Pragma', 'public');
- $size = $size === null ? -1 : $size;
- if ($photo) {
- $file = $this->createMock(ISimpleFile::class);
- $file->method('getMimeType')
- ->willReturn('imgtype');
- $file->method('getContent')
- ->willReturn('imgdata');
- $this->cache->method('get')
- ->with(1, 'card', $size, $card)
- ->willReturn($file);
- $this->response->expects($this->at(3))
- ->method('setHeader')
- ->with('Content-Type', 'imgtype');
- $this->response->expects($this->at(4))
- ->method('setHeader')
- ->with('Content-Disposition', 'attachment');
- $this->response->expects($this->once())
- ->method('setStatus')
- ->with(200);
- $this->response->expects($this->once())
- ->method('setBody')
- ->with('imgdata');
- } else {
- $this->cache->method('get')
- ->with(1, 'card', $size, $card)
- ->willThrowException(new NotFoundException());
- $this->response->expects($this->once())
- ->method('setStatus')
- ->with(404);
- }
- $result = $this->plugin->httpGet($this->request, $this->response);
- $this->assertFalse($result);
- }
- }
|