2014-08-14 15:08:58 +04:00
|
|
|
<?php
|
2014-10-30 19:20:40 +03:00
|
|
|
use OCA\Files_sharing\Tests\TestCase;
|
|
|
|
|
2014-08-14 15:08:58 +04:00
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle
|
2014-08-14 19:28:20 +04:00
|
|
|
* @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com>
|
2014-08-14 15:08:58 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-10-30 19:20:40 +03:00
|
|
|
class Test_Files_Sharing_Helper extends TestCase {
|
2014-08-14 15:08:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* test set and get share folder
|
|
|
|
*/
|
|
|
|
function testSetGetShareFolder() {
|
|
|
|
$this->assertSame('/', \OCA\Files_Sharing\Helper::getShareFolder());
|
|
|
|
|
|
|
|
\OCA\Files_Sharing\Helper::setShareFolder('/Shared');
|
|
|
|
|
|
|
|
$this->assertSame('/Shared', \OCA\Files_Sharing\Helper::getShareFolder());
|
|
|
|
|
|
|
|
// cleanup
|
2014-12-17 13:12:37 +03:00
|
|
|
\OC::$server->getConfig()->deleteSystemValue('share_folder');
|
2014-08-14 15:08:58 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|