You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
richdocuments/tests/controller/documentcontrollertest.php

79 lines
2.0 KiB
PHP

<?php
/**
* ownCloud - Documents App
*
* @author Victor Dubiniuk
* @copyright 2014 Victor Dubiniuk victor.dubiniuk@gmail.com
*
* This file is licensed under the Affero General Public License version 3 or
* later.
*/
namespace OCA\Documents\Controller;
class DocumentControllerTest extends \PHPUnit_Framework_TestCase {
private $appName = 'documents';
private $request;
private $l10n;
private $settings;
private $uid = 'jack_the_documents_tester';
private $password = 'password';
private $controller;
public function setUp(){
$this->request = $this->getMockBuilder('\OCP\IRequest')
->disableOriginalConstructor()
->getMock()
;
$this->settings = $this->getMockBuilder('\OCP\IConfig')
->disableOriginalConstructor()
->getMock()
;
$this->l10n = $this->getMockBuilder('\OCP\IL10N')
->disableOriginalConstructor()
->getMock()
;
$this->controller = new DocumentController(
$this->appName,
$this->request,
$this->settings,
$this->l10n,
$this->uid
);
$userManager = \OC::$server->getUserManager();
$userSession = \OC::$server->getUserSession();
if (!$userManager->userExists($this->uid)){
$userManager->createUser($this->uid, $this->password);
\OC::$server->getUserFolder($this->uid);
}
$userSession->login($this->uid, $this->password);
\OC_Util::setupFS();
}
public static function tearDownAfterClass(){
\OC_User::deleteUser(\OC_User::getUserSession()->getUser()->getUID());
}
public function testRename(){
$result = array(
'status' => 'error',
'message' => (string) $this->l10n->t('You don\'t have permission to rename this document')
);
$this->request->post = array(
'fileId' => 500,
'name' => 'newname.ext'
);
$response = $this->controller->rename(500);
$this->assertEquals($result, $response);
}
public function testCreate(){
$currentDir = getcwd();
chdir('../../../');
$response = $this->controller->create();
chdir($currentDir);
$this->assertEquals('success', $response['status']);
}
}