summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/tests
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-04-21 14:40:11 +0200
committerOlivier Paroz <github@oparoz.com>2015-04-21 14:40:11 +0200
commit9695e33e340158ead3d54811c8b99deabd49d50b (patch)
treef871dbcce3e808aebeb9a87ccdb1732cf5c108fc /apps/files_sharing/tests
parent80a1f1858e92ca7fcf5dabd9640cab76dd23925d (diff)
downloadnextcloud-server-9695e33e340158ead3d54811c8b99deabd49d50b.tar.gz
nextcloud-server-9695e33e340158ead3d54811c8b99deabd49d50b.zip
Renamed class + split methods
Diffstat (limited to 'apps/files_sharing/tests')
-rw-r--r--apps/files_sharing/tests/readonlycache.php38
1 files changed, 13 insertions, 25 deletions
diff --git a/apps/files_sharing/tests/readonlycache.php b/apps/files_sharing/tests/readonlycache.php
index 9a908671671..5da200fa78f 100644
--- a/apps/files_sharing/tests/readonlycache.php
+++ b/apps/files_sharing/tests/readonlycache.php
@@ -18,40 +18,28 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-use OCA\Files_sharing\Tests\TestCase;
+namespace OCA\Files_Sharing\Tests;
-class Test_Files_Sharing_ReadOnly_Cache extends TestCase {
+class ReadOnlyCache extends TestCase {
- /**
- * @type \OC\Files\Storage\Storage
- */
+ /** @var \OC\Files\Storage\Storage */
protected $storage;
- /**
- * @type OC\Files\Storage\StorageFactory
- */
+ /** @var \OC\Files\Storage\StorageFactory */
protected $loader;
- /**
- * @type OC\Files\Mount\MountPoint
- */
+ /** @var \OC\Files\Mount\MountPoint */
protected $readOnlyMount;
- /**
- * @type \OCA\Files_Sharing\ReadOnlyWrapper
- */
+ /** @var \OCA\Files_Sharing\ReadOnlyWrapper */
protected $readOnlyStorage;
- /**
- * @type \OC\Files\Cache\Cache
- */
+ /** @var \OC\Files\Cache\Cache */
protected $readOnlyCache;
protected function setUp() {
parent::setUp();
- //error_reporting(E_ERROR | E_PARSE);
-
$this->view->mkdir('readonly');
$this->view->file_put_contents('readonly/foo.txt', 'foo');
$this->view->file_put_contents('readonly/bar.txt', 'bar');
@@ -66,10 +54,6 @@ class Test_Files_Sharing_ReadOnly_Cache extends TestCase {
$this->readOnlyCache = $this->readOnlyStorage->getCache();
}
- protected function tearDown() {
- parent::tearDown();
- }
-
public function testSetup() {
$this->assertTrue($this->view->file_exists('/readonly/foo.txt'));
@@ -82,22 +66,26 @@ class Test_Files_Sharing_ReadOnly_Cache extends TestCase {
$this->assertInstanceOf('\OCA\Files_Sharing\ReadOnlyCache', $this->readOnlyCache);
}
- public function testGet() {
+ public function testGetWhenFileExists() {
$result = $this->readOnlyCache->get('files/readonly/foo.txt');
$this->assertNotEmpty($result);
+ }
+ public function testGetWhenFileDoesNotExist() {
$result = $this->readOnlyCache->get('files/readonly/proof does not exist.md');
$this->assertFalse($result);
}
- public function testGetFolderContents() {
+ public function testGetFolderContentsWhenFolderExists() {
$results = $this->readOnlyCache->getFolderContents('files/readonly');
$this->assertNotEmpty($results);
foreach ($results as $result) {
$this->assertNotEmpty($result);
}
+ }
+ public function testGetFolderContentsWhenFolderDoesNotExist() {
$results = $this->readOnlyCache->getFolderContents('files/iamaghost');
$this->assertEmpty($results);
}