2015-03-03 14:52:27 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-08-15 21:08:20 +03:00
|
|
|
namespace OC\Core\Controller;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overwrite is_uploaded_file in the OC\Core\Controller namespace to allow
|
|
|
|
* proper unit testing of the postAvatar call.
|
|
|
|
*/
|
|
|
|
function is_uploaded_file($filename) {
|
|
|
|
return file_exists($filename);
|
|
|
|
}
|
|
|
|
|
2016-05-19 11:43:49 +03:00
|
|
|
namespace Tests\Core\Controller;
|
|
|
|
|
2016-08-29 16:17:59 +03:00
|
|
|
use OC\AppFramework\Utility\TimeFactory;
|
2016-08-25 22:39:14 +03:00
|
|
|
use OC\Core\Controller\AvatarController;
|
2015-03-03 14:52:27 +03:00
|
|
|
use OCP\AppFramework\Http;
|
2016-08-25 22:39:14 +03:00
|
|
|
use OCP\Files\Cache\ICache;
|
2015-03-12 13:13:12 +03:00
|
|
|
use OCP\Files\File;
|
2016-08-25 22:39:14 +03:00
|
|
|
use OCP\Files\IRootFolder;
|
2015-12-16 22:29:17 +03:00
|
|
|
use OCP\Files\NotFoundException;
|
2016-08-29 17:50:01 +03:00
|
|
|
use OCP\Files\NotPermittedException;
|
2015-11-14 16:52:51 +03:00
|
|
|
use OCP\IAvatar;
|
2016-08-25 22:39:14 +03:00
|
|
|
use OCP\IAvatarManager;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserManager;
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class AvatarControllerTest
|
|
|
|
*
|
2016-01-20 12:17:46 +03:00
|
|
|
* @package OC\Core\Controller
|
2015-03-03 14:52:27 +03:00
|
|
|
*/
|
|
|
|
class AvatarControllerTest extends \Test\TestCase {
|
2016-05-19 11:43:49 +03:00
|
|
|
/** @var \OC\Core\Controller\AvatarController */
|
2015-03-03 14:52:27 +03:00
|
|
|
private $avatarController;
|
2016-08-25 22:39:14 +03:00
|
|
|
/** @var IAvatar|\PHPUnit_Framework_MockObject_MockObject */
|
2015-03-03 14:52:27 +03:00
|
|
|
private $avatarMock;
|
2016-08-25 22:39:14 +03:00
|
|
|
/** @var IUser|\PHPUnit_Framework_MockObject_MockObject */
|
2015-03-03 14:52:27 +03:00
|
|
|
private $userMock;
|
2016-08-25 22:39:14 +03:00
|
|
|
/** @var File|\PHPUnit_Framework_MockObject_MockObject */
|
2015-12-16 22:29:17 +03:00
|
|
|
private $avatarFile;
|
2016-08-25 22:39:14 +03:00
|
|
|
|
|
|
|
/** @var IAvatarManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $avatarManager;
|
|
|
|
/** @var ICache|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $cache;
|
|
|
|
/** @var IL10N|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $l;
|
|
|
|
/** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $userManager;
|
|
|
|
/** @var IRootFolder|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $rootFolder;
|
|
|
|
/** @var ILogger|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $logger;
|
|
|
|
/** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $request;
|
2016-08-29 16:17:59 +03:00
|
|
|
/** @var TimeFactory|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $timeFactory;
|
2015-11-14 16:52:51 +03:00
|
|
|
|
2015-03-03 14:52:27 +03:00
|
|
|
protected function setUp() {
|
2015-11-14 16:52:51 +03:00
|
|
|
parent::setUp();
|
2016-08-25 22:39:14 +03:00
|
|
|
|
|
|
|
$this->avatarManager = $this->getMockBuilder('OCP\IAvatarManager')->getMock();
|
|
|
|
$this->cache = $this->getMockBuilder('OCP\ICache')
|
2015-03-03 14:52:27 +03:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->l = $this->getMockBuilder('OCP\IL10N')->getMock();
|
|
|
|
$this->l->method('t')->will($this->returnArgument(0));
|
|
|
|
$this->userManager = $this->getMockBuilder('OCP\IUserManager')->getMock();
|
|
|
|
$this->request = $this->getMockBuilder('OCP\IRequest')->getMock();
|
|
|
|
$this->rootFolder = $this->getMockBuilder('OCP\Files\IRootFolder')->getMock();
|
|
|
|
$this->logger = $this->getMockBuilder('OCP\ILogger')->getMock();
|
2016-08-29 16:17:59 +03:00
|
|
|
$this->timeFactory = $this->getMockBuilder('OC\AppFramework\Utility\TimeFactory')->getMock();
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-15 21:07:07 +03:00
|
|
|
$this->avatarMock = $this->getMockBuilder('OCP\IAvatar')->getMock();
|
|
|
|
$this->userMock = $this->getMockBuilder('OCP\IUser')->getMock();
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarController = new AvatarController(
|
|
|
|
'core',
|
|
|
|
$this->request,
|
|
|
|
$this->avatarManager,
|
|
|
|
$this->cache,
|
|
|
|
$this->l,
|
|
|
|
$this->userManager,
|
|
|
|
$this->rootFolder,
|
|
|
|
$this->logger,
|
2016-08-29 16:17:59 +03:00
|
|
|
'userid',
|
|
|
|
$this->timeFactory
|
2016-08-25 22:39:14 +03:00
|
|
|
);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
// Configure userMock
|
2015-11-14 16:52:51 +03:00
|
|
|
$this->userMock->method('getDisplayName')->willReturn('displayName');
|
|
|
|
$this->userMock->method('getUID')->willReturn('userId');
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->userManager->method('get')
|
2015-11-14 16:52:51 +03:00
|
|
|
->willReturnMap([['userId', $this->userMock]]);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-15 21:07:07 +03:00
|
|
|
$this->avatarFile = $this->getMockBuilder('OCP\Files\File')->getMock();
|
2016-04-08 15:32:15 +03:00
|
|
|
$this->avatarFile->method('getContent')->willReturn('image data');
|
2015-12-16 22:29:17 +03:00
|
|
|
$this->avatarFile->method('getMimeType')->willReturn('image type');
|
|
|
|
$this->avatarFile->method('getEtag')->willReturn('my etag');
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
2015-11-14 16:52:51 +03:00
|
|
|
parent::tearDown();
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch an avatar if a user has no avatar
|
|
|
|
*/
|
|
|
|
public function testGetAvatarNoAvatar() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-12-16 22:29:17 +03:00
|
|
|
$this->avatarMock->method('getFile')->will($this->throwException(new NotFoundException()));
|
2015-11-14 16:52:51 +03:00
|
|
|
$response = $this->avatarController->getAvatar('userId', 32);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2015-09-15 17:52:12 +03:00
|
|
|
//Comment out until JS is fixed
|
|
|
|
//$this->assertEquals(Http::STATUS_NOT_FOUND, $response->getStatus());
|
2015-03-13 19:35:34 +03:00
|
|
|
$this->assertEquals(Http::STATUS_OK, $response->getStatus());
|
2015-11-14 16:52:51 +03:00
|
|
|
$this->assertEquals('displayName', $response->getData()['data']['displayname']);
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-03-13 15:12:14 +03:00
|
|
|
* Fetch the user's avatar
|
2015-03-03 14:52:27 +03:00
|
|
|
*/
|
|
|
|
public function testGetAvatar() {
|
2015-12-16 22:29:17 +03:00
|
|
|
$this->avatarMock->method('getFile')->willReturn($this->avatarFile);
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->with('userId')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2015-11-14 16:52:51 +03:00
|
|
|
$response = $this->avatarController->getAvatar('userId', 32);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_OK, $response->getStatus());
|
2015-11-14 16:52:51 +03:00
|
|
|
$this->assertArrayHasKey('Content-Type', $response->getHeaders());
|
|
|
|
$this->assertEquals('image type', $response->getHeaders()['Content-Type']);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->assertEquals('my etag', $response->getETag());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
2015-03-13 15:12:14 +03:00
|
|
|
/**
|
|
|
|
* Fetch the avatar of a non-existing user
|
|
|
|
*/
|
|
|
|
public function testGetAvatarNoUser() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager
|
2015-12-16 22:29:17 +03:00
|
|
|
->method('getAvatar')
|
|
|
|
->with('userDoesNotExist')
|
|
|
|
->will($this->throwException(new \Exception('user does not exist')));
|
2015-09-15 17:52:12 +03:00
|
|
|
|
2015-12-16 22:29:17 +03:00
|
|
|
$response = $this->avatarController->getAvatar('userDoesNotExist', 32);
|
2015-03-13 15:12:14 +03:00
|
|
|
|
2015-03-13 19:35:34 +03:00
|
|
|
//Comment out until JS is fixed
|
2015-09-15 17:52:12 +03:00
|
|
|
//$this->assertEquals(Http::STATUS_NOT_FOUND, $response->getStatus());
|
|
|
|
$this->assertEquals(Http::STATUS_OK, $response->getStatus());
|
|
|
|
$this->assertEquals('', $response->getData()['data']['displayname']);
|
2015-03-13 15:12:14 +03:00
|
|
|
}
|
|
|
|
|
2015-03-03 14:52:27 +03:00
|
|
|
/**
|
|
|
|
* Make sure we get the correct size
|
|
|
|
*/
|
|
|
|
public function testGetAvatarSize() {
|
|
|
|
$this->avatarMock->expects($this->once())
|
2015-12-16 22:29:17 +03:00
|
|
|
->method('getFile')
|
|
|
|
->with($this->equalTo(32))
|
|
|
|
->willReturn($this->avatarFile);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2015-11-14 16:52:51 +03:00
|
|
|
$this->avatarController->getAvatar('userId', 32);
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We cannot get avatars that are 0 or negative
|
|
|
|
*/
|
|
|
|
public function testGetAvatarSizeMin() {
|
|
|
|
$this->avatarMock->expects($this->once())
|
2015-12-16 22:29:17 +03:00
|
|
|
->method('getFile')
|
|
|
|
->with($this->equalTo(64))
|
|
|
|
->willReturn($this->avatarFile);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2015-11-14 16:52:51 +03:00
|
|
|
$this->avatarController->getAvatar('userId', 0);
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We do not support avatars larger than 2048*2048
|
|
|
|
*/
|
|
|
|
public function testGetAvatarSizeMax() {
|
|
|
|
$this->avatarMock->expects($this->once())
|
2015-12-16 22:29:17 +03:00
|
|
|
->method('getFile')
|
|
|
|
->with($this->equalTo(2048))
|
|
|
|
->willReturn($this->avatarFile);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2015-11-14 16:52:51 +03:00
|
|
|
$this->avatarController->getAvatar('userId', 2049);
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove an avatar
|
|
|
|
*/
|
|
|
|
public function testDeleteAvatar() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
$response = $this->avatarController->deleteAvatar();
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_OK, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test what happens if the removing of the avatar fails
|
|
|
|
*/
|
|
|
|
public function testDeleteAvatarException() {
|
|
|
|
$this->avatarMock->method('remove')->will($this->throwException(new \Exception("foo")));
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->logger->expects($this->once())
|
2015-10-13 15:12:10 +03:00
|
|
|
->method('logException')
|
|
|
|
->with(new \Exception("foo"));
|
2016-08-29 22:31:41 +03:00
|
|
|
$expectedResponse = new Http\JSONResponse(['data' => ['message' => 'An error occurred. Please contact your admin.']], Http::STATUS_BAD_REQUEST);
|
2015-10-13 15:12:10 +03:00
|
|
|
$this->assertEquals($expectedResponse, $this->avatarController->deleteAvatar());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Trying to get a tmp avatar when it is not available. 404
|
|
|
|
*/
|
|
|
|
public function testTmpAvatarNoTmp() {
|
|
|
|
$response = $this->avatarController->getTmpAvatar();
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_NOT_FOUND, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch tmp avatar
|
|
|
|
*/
|
|
|
|
public function testTmpAvatarValid() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->cache->method('get')->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.jpg'));
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
$response = $this->avatarController->getTmpAvatar();
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_OK, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When trying to post a new avatar a path or image should be posted.
|
|
|
|
*/
|
|
|
|
public function testPostAvatarNoPathOrImage() {
|
|
|
|
$response = $this->avatarController->postAvatar(null);
|
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_BAD_REQUEST, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test a correct post of an avatar using POST
|
|
|
|
*/
|
|
|
|
public function testPostAvatarFile() {
|
|
|
|
//Create temp file
|
|
|
|
$fileName = tempnam(null, "avatarTest");
|
2016-05-19 11:43:49 +03:00
|
|
|
$copyRes = copy(\OC::$SERVERROOT.'/tests/data/testimage.jpg', $fileName);
|
2015-03-03 14:52:27 +03:00
|
|
|
$this->assertTrue($copyRes);
|
|
|
|
|
|
|
|
//Create file in cache
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->cache->method('get')->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.jpg'));
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
//Create request return
|
2016-05-19 11:43:49 +03:00
|
|
|
$reqRet = ['error' => [0], 'tmp_name' => [$fileName], 'size' => [filesize(\OC::$SERVERROOT.'/tests/data/testimage.jpg')]];
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->request->method('getUploadedFile')->willReturn($reqRet);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
$response = $this->avatarController->postAvatar(null);
|
|
|
|
|
|
|
|
//On correct upload always respond with the notsquare message
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals('notsquare', $response->getData()['data']);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
//File should be deleted
|
|
|
|
$this->assertFalse(file_exists($fileName));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test invalid post os an avatar using POST
|
|
|
|
*/
|
|
|
|
public function testPostAvatarInvalidFile() {
|
|
|
|
//Create request return
|
|
|
|
$reqRet = ['error' => [1], 'tmp_name' => ['foo']];
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->request->method('getUploadedFile')->willReturn($reqRet);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
$response = $this->avatarController->postAvatar(null);
|
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_BAD_REQUEST, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check what happens when we upload a GIF
|
|
|
|
*/
|
|
|
|
public function testPostAvatarFileGif() {
|
|
|
|
//Create temp file
|
|
|
|
$fileName = tempnam(null, "avatarTest");
|
2016-05-19 11:43:49 +03:00
|
|
|
$copyRes = copy(\OC::$SERVERROOT.'/tests/data/testimage.gif', $fileName);
|
2015-03-03 14:52:27 +03:00
|
|
|
$this->assertTrue($copyRes);
|
|
|
|
|
|
|
|
//Create file in cache
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->cache->method('get')->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.gif'));
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
//Create request return
|
2016-05-19 11:43:49 +03:00
|
|
|
$reqRet = ['error' => [0], 'tmp_name' => [$fileName], 'size' => filesize(\OC::$SERVERROOT.'/tests/data/testimage.gif')];
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->request->method('getUploadedFile')->willReturn($reqRet);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
$response = $this->avatarController->postAvatar(null);
|
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals('Unknown filetype', $response->getData()['data']['message']);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
//File should be deleted
|
|
|
|
$this->assertFalse(file_exists($fileName));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test posting avatar from existing file
|
|
|
|
*/
|
|
|
|
public function testPostAvatarFromFile() {
|
2015-03-12 13:13:12 +03:00
|
|
|
//Mock node API call
|
|
|
|
$file = $this->getMockBuilder('OCP\Files\File')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2016-08-29 17:50:01 +03:00
|
|
|
$file->expects($this->once())
|
|
|
|
->method('getContent')
|
|
|
|
->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.jpg'));
|
|
|
|
$file->expects($this->once())
|
|
|
|
->method('getMimeType')
|
|
|
|
->willReturn('image/jpeg');
|
2016-08-25 22:39:14 +03:00
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
$this->rootFolder->method('getUserFolder')->with('userid')->willReturn($userFolder);
|
|
|
|
$userFolder->method('get')->willReturn($file);
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
//Create request return
|
|
|
|
$response = $this->avatarController->postAvatar('avatar.jpg');
|
|
|
|
|
|
|
|
//On correct upload always respond with the notsquare message
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals('notsquare', $response->getData()['data']);
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
2016-01-08 12:03:49 +03:00
|
|
|
/**
|
|
|
|
* Test posting avatar from existing folder
|
|
|
|
*/
|
|
|
|
public function testPostAvatarFromNoFile() {
|
2016-08-15 21:07:07 +03:00
|
|
|
$file = $this->getMockBuilder('OCP\Files\Node')->getMock();
|
2016-08-25 22:39:14 +03:00
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
$this->rootFolder->method('getUserFolder')->with('userid')->willReturn($userFolder);
|
|
|
|
$userFolder
|
2016-01-08 12:03:49 +03:00
|
|
|
->method('get')
|
|
|
|
->with('folder')
|
|
|
|
->willReturn($file);
|
|
|
|
|
|
|
|
//Create request return
|
|
|
|
$response = $this->avatarController->postAvatar('folder');
|
|
|
|
|
|
|
|
//On correct upload always respond with the notsquare message
|
|
|
|
$this->assertEquals(['data' => ['message' => 'Please select a file.']], $response->getData());
|
|
|
|
}
|
|
|
|
|
2016-08-29 17:50:01 +03:00
|
|
|
public function testPostAvatarInvalidType() {
|
|
|
|
$file = $this->getMockBuilder('OCP\Files\File')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$file->expects($this->never())
|
|
|
|
->method('getContent');
|
|
|
|
$file->expects($this->exactly(2))
|
|
|
|
->method('getMimeType')
|
|
|
|
->willReturn('text/plain');
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
$this->rootFolder->method('getUserFolder')->with('userid')->willReturn($userFolder);
|
|
|
|
$userFolder->method('get')->willReturn($file);
|
|
|
|
|
|
|
|
$expectedResponse = new Http\JSONResponse(['data' => ['message' => 'The selected file is not an image.']], Http::STATUS_BAD_REQUEST);
|
|
|
|
$this->assertEquals($expectedResponse, $this->avatarController->postAvatar('avatar.jpg'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPostAvatarNotPermittedException() {
|
|
|
|
$file = $this->getMockBuilder('OCP\Files\File')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$file->expects($this->once())
|
|
|
|
->method('getContent')
|
|
|
|
->willThrowException(new NotPermittedException());
|
|
|
|
$file->expects($this->once())
|
|
|
|
->method('getMimeType')
|
|
|
|
->willReturn('image/jpeg');
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
$this->rootFolder->method('getUserFolder')->with('userid')->willReturn($userFolder);
|
|
|
|
$userFolder->method('get')->willReturn($file);
|
|
|
|
|
|
|
|
$expectedResponse = new Http\JSONResponse(['data' => ['message' => 'The selected file cannot be read.']], Http::STATUS_BAD_REQUEST);
|
|
|
|
$this->assertEquals($expectedResponse, $this->avatarController->postAvatar('avatar.jpg'));
|
|
|
|
}
|
|
|
|
|
2015-10-13 15:12:10 +03:00
|
|
|
/**
|
|
|
|
* Test what happens if the upload of the avatar fails
|
|
|
|
*/
|
|
|
|
public function testPostAvatarException() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->cache->expects($this->once())
|
2015-10-13 15:12:10 +03:00
|
|
|
->method('set')
|
|
|
|
->will($this->throwException(new \Exception("foo")));
|
|
|
|
$file = $this->getMockBuilder('OCP\Files\File')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2016-08-29 17:50:01 +03:00
|
|
|
$file->expects($this->once())
|
|
|
|
->method('getContent')
|
|
|
|
->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.jpg'));
|
|
|
|
$file->expects($this->once())
|
|
|
|
->method('getMimeType')
|
|
|
|
->willReturn('image/jpeg');
|
2016-08-25 22:39:14 +03:00
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
$this->rootFolder->method('getUserFolder')->with('userid')->willReturn($userFolder);
|
|
|
|
$userFolder->method('get')->willReturn($file);
|
2015-10-13 15:12:10 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->logger->expects($this->once())
|
2015-10-13 15:12:10 +03:00
|
|
|
->method('logException')
|
|
|
|
->with(new \Exception("foo"));
|
2016-08-29 22:31:41 +03:00
|
|
|
$expectedResponse = new Http\JSONResponse(['data' => ['message' => 'An error occurred. Please contact your admin.']], Http::STATUS_OK);
|
2015-10-13 15:12:10 +03:00
|
|
|
$this->assertEquals($expectedResponse, $this->avatarController->postAvatar('avatar.jpg'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-03 14:52:27 +03:00
|
|
|
/**
|
2015-07-22 14:13:39 +03:00
|
|
|
* Test invalid crop argument
|
2015-03-03 14:52:27 +03:00
|
|
|
*/
|
|
|
|
public function testPostCroppedAvatarInvalidCrop() {
|
|
|
|
$response = $this->avatarController->postCroppedAvatar([]);
|
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_BAD_REQUEST, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test no tmp avatar to crop
|
|
|
|
*/
|
|
|
|
public function testPostCroppedAvatarNoTmpAvatar() {
|
|
|
|
$response = $this->avatarController->postCroppedAvatar(['x' => 0, 'y' => 0, 'w' => 10, 'h' => 10]);
|
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_BAD_REQUEST, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test with non square crop
|
|
|
|
*/
|
|
|
|
public function testPostCroppedAvatarNoSquareCrop() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->cache->method('get')->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.jpg'));
|
2015-03-03 14:52:27 +03:00
|
|
|
|
|
|
|
$this->avatarMock->method('set')->will($this->throwException(new \OC\NotSquareException));
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
$response = $this->avatarController->postCroppedAvatar(['x' => 0, 'y' => 0, 'w' => 10, 'h' => 11]);
|
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_BAD_REQUEST, $response->getStatus());
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check for proper reply on proper crop argument
|
|
|
|
*/
|
|
|
|
public function testPostCroppedAvatarValidCrop() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->cache->method('get')->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.jpg'));
|
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-03-03 14:52:27 +03:00
|
|
|
$response = $this->avatarController->postCroppedAvatar(['x' => 0, 'y' => 0, 'w' => 10, 'h' => 10]);
|
|
|
|
|
2015-03-13 17:14:01 +03:00
|
|
|
$this->assertEquals(Http::STATUS_OK, $response->getStatus());
|
|
|
|
$this->assertEquals('success', $response->getData()['status']);
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|
|
|
|
|
2015-10-13 15:12:10 +03:00
|
|
|
/**
|
|
|
|
* Test what happens if the cropping of the avatar fails
|
|
|
|
*/
|
|
|
|
public function testPostCroppedAvatarException() {
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->cache->method('get')->willReturn(file_get_contents(\OC::$SERVERROOT.'/tests/data/testimage.jpg'));
|
2015-10-13 15:12:10 +03:00
|
|
|
|
|
|
|
$this->avatarMock->method('set')->will($this->throwException(new \Exception('foo')));
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->avatarManager->method('getAvatar')->willReturn($this->avatarMock);
|
2015-10-13 15:12:10 +03:00
|
|
|
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->logger->expects($this->once())
|
2015-10-13 15:12:10 +03:00
|
|
|
->method('logException')
|
|
|
|
->with(new \Exception('foo'));
|
2016-08-29 22:31:41 +03:00
|
|
|
$expectedResponse = new Http\JSONResponse(['data' => ['message' => 'An error occurred. Please contact your admin.']], Http::STATUS_BAD_REQUEST);
|
2015-10-13 15:12:10 +03:00
|
|
|
$this->assertEquals($expectedResponse, $this->avatarController->postCroppedAvatar(['x' => 0, 'y' => 0, 'w' => 10, 'h' => 11]));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-22 14:13:39 +03:00
|
|
|
/**
|
|
|
|
* Check for proper reply on proper crop argument
|
|
|
|
*/
|
|
|
|
public function testFileTooBig() {
|
2016-05-19 11:43:49 +03:00
|
|
|
$fileName = \OC::$SERVERROOT.'/tests/data/testimage.jpg';
|
2015-07-22 14:13:39 +03:00
|
|
|
//Create request return
|
|
|
|
$reqRet = ['error' => [0], 'tmp_name' => [$fileName], 'size' => [21*1024*1024]];
|
2016-08-25 22:39:14 +03:00
|
|
|
$this->request->method('getUploadedFile')->willReturn($reqRet);
|
2015-07-22 14:13:39 +03:00
|
|
|
|
|
|
|
$response = $this->avatarController->postAvatar(null);
|
|
|
|
|
|
|
|
$this->assertEquals('File is too big', $response->getData()['data']['message']);
|
|
|
|
}
|
|
|
|
|
2015-03-03 14:52:27 +03:00
|
|
|
}
|