nextcloud/apps/files_encryption/tests/trashbin.php

267 lines
8.7 KiB
PHP
Raw Normal View History

2013-05-23 01:51:35 +04:00
<?php
/**
* ownCloud
*
* @author Florin Peter
* @copyright 2013 Florin Peter <owncloud@florin-peter.de>
*
* 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/>.
*
*/
require_once realpath( dirname( __FILE__ ) . '/../../../lib/base.php' );
require_once realpath( dirname( __FILE__ ) . '/../lib/crypt.php' );
require_once realpath( dirname( __FILE__ ) . '/../lib/keymanager.php' );
require_once realpath( dirname( __FILE__ ) . '/../lib/proxy.php' );
require_once realpath( dirname( __FILE__ ) . '/../lib/stream.php' );
require_once realpath( dirname( __FILE__ ) . '/../lib/util.php' );
require_once realpath( dirname( __FILE__ ) . '/../appinfo/app.php' );
require_once realpath( dirname( __FILE__ ) . '/../../files_trashbin/appinfo/app.php' );
2013-05-23 01:51:35 +04:00
use OCA\Encryption;
/**
* Class Test_Encryption_Trashbin
* @brief this class provide basic trashbin app tests
*/
class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase
{
public $userId;
public $pass;
/**
* @var \OC_FilesystemView
*/
public $view;
public $dataShort;
public $stateFilesTrashbin;
public $folder1;
public $subfolder;
public $subsubfolder;
public static function setUpBeforeClass() {
2013-05-23 01:51:35 +04:00
// reset backend
\OC_User::clearBackends();
\OC_User::useBackend( 'database' );
2013-05-23 01:51:35 +04:00
\OC_Hook::clear( 'OC_Filesystem' );
\OC_Hook::clear( 'OC_User' );
// trashbin hooks
\OCA\Files_Trashbin\Trashbin::registerHooks();
// Filesystem related hooks
\OCA\Encryption\Helper::registerFilesystemHooks();
// clear and register hooks
\OC_FileProxy::clearProxies();
\OC_FileProxy::register( new OCA\Encryption\Proxy() );
// setup filesystem
\OC_Util::tearDownFS();
\OC_User::setUserId( '' );
\OC\Files\Filesystem::tearDown();
\OC_Util::setupFS( 'admin' );
\OC_User::setUserId( 'admin' );
// login admin
$params['uid'] = 'admin';
$params['password'] = 'admin';
OCA\Encryption\Hooks::login( $params );
}
function setUp() {
2013-05-23 01:51:35 +04:00
// set user id
\OC_User::setUserId( 'admin' );
2013-05-23 01:51:35 +04:00
$this->userId = 'admin';
$this->pass = 'admin';
// init filesystem view
$this->view = new \OC_FilesystemView( '/' );
2013-05-23 01:51:35 +04:00
// init short data
$this->dataShort = 'hats';
$this->folder1 = '/folder1';
$this->subfolder = '/subfolder1';
$this->subsubfolder = '/subsubfolder1';
// remember files_trashbin state
$this->stateFilesTrashbin = OC_App::isEnabled( 'files_trashbin' );
2013-05-23 01:51:35 +04:00
// we want to tests with app files_trashbin enabled
\OC_App::enable( 'files_trashbin' );
2013-05-23 01:51:35 +04:00
}
function tearDown() {
2013-05-23 01:51:35 +04:00
// reset app files_trashbin
if ( $this->stateFilesTrashbin ) {
OC_App::enable( 'files_trashbin' );
2013-05-23 01:51:35 +04:00
} else {
OC_App::disable( 'files_trashbin' );
2013-05-23 01:51:35 +04:00
}
}
public static function tearDownAfterClass() {
2013-05-23 01:51:35 +04:00
}
/**
* @brief test delete file
*/
function testDeleteFile() {
// generate filename
$filename = 'tmp-' . time() . '.txt';
// save file with content
$cryptedFile = file_put_contents( 'crypt:///' . $filename, $this->dataShort );
2013-05-23 01:51:35 +04:00
// test that data was successfully written
$this->assertTrue( is_int( $cryptedFile ) );
2013-05-23 01:51:35 +04:00
// check if key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_encryption/keyfiles/' . $filename . '.key' ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_encryption/share-keys/' . $filename . '.admin.shareKey' ) );
2013-05-23 01:51:35 +04:00
// delete file
\OC\FIles\Filesystem::unlink( $filename );
2013-05-23 01:51:35 +04:00
// check if file not exists
$this->assertFalse( $this->view->file_exists( '/admin/files/' . $filename ) );
2013-05-23 01:51:35 +04:00
// check if key for admin not exists
$this->assertFalse( $this->view->file_exists( '/admin/files_encryption/keyfiles/' . $filename . '.key' ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin not exists
$this->assertFalse( $this->view->file_exists( '/admin/files_encryption/share-keys/' . $filename . '.admin.shareKey' ) );
2013-05-23 01:51:35 +04:00
// get files
$trashFiles = $this->view->getDirectoryContent( '/admin/files_trashbin/files/' );
2013-05-23 01:51:35 +04:00
$trashFileSuffix = null;
// find created file with timestamp
foreach ( $trashFiles as $file ) {
if ( strncmp( $file['path'], $filename, strlen( $filename ) ) ) {
$path_parts = pathinfo( $file['name'] );
2013-05-23 01:51:35 +04:00
$trashFileSuffix = $path_parts['extension'];
}
}
// check if we found the file we created
$this->assertNotNull( $trashFileSuffix );
2013-05-23 01:51:35 +04:00
// check if key for admin not exists
$this->assertTrue( $this->view->file_exists( '/admin/files_trashbin/keyfiles/' . $filename . '.key.' . $trashFileSuffix ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin not exists
$this->assertTrue( $this->view->file_exists( '/admin/files_trashbin/share-keys/' . $filename . '.admin.shareKey.' . $trashFileSuffix ) );
2013-05-23 01:51:35 +04:00
// return filename for next test
return $filename . '.' . $trashFileSuffix;
}
/**
* @brief test restore file
*
* @depends testDeleteFile
*/
function testRestoreFile( $filename ) {
2013-05-23 01:51:35 +04:00
// prepare file information
$path_parts = pathinfo( $filename );
2013-05-23 01:51:35 +04:00
$trashFileSuffix = $path_parts['extension'];
$timestamp = str_replace( 'd', '', $trashFileSuffix );
$fileNameWithoutSuffix = str_replace( '.' . $trashFileSuffix, '', $filename );
2013-05-23 01:51:35 +04:00
// restore file
$this->assertTrue( \OCA\Files_Trashbin\Trashbin::restore( $filename, $fileNameWithoutSuffix, $timestamp ) );
2013-05-23 01:51:35 +04:00
// check if file exists
$this->assertTrue( $this->view->file_exists( '/admin/files/' . $fileNameWithoutSuffix ) );
2013-05-23 01:51:35 +04:00
// check if key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_encryption/keyfiles/' . $fileNameWithoutSuffix . '.key' ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_encryption/share-keys/' . $fileNameWithoutSuffix . '.admin.shareKey' ) );
2013-05-23 01:51:35 +04:00
}
/**
* @brief test delete file forever
*/
function testPermanentDeleteFile() {
// generate filename
$filename = 'tmp-' . time() . '.txt';
// save file with content
$cryptedFile = file_put_contents( 'crypt:///' . $filename, $this->dataShort );
2013-05-23 01:51:35 +04:00
// test that data was successfully written
$this->assertTrue( is_int( $cryptedFile ) );
2013-05-23 01:51:35 +04:00
// check if key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_encryption/keyfiles/' . $filename . '.key' ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_encryption/share-keys/' . $filename . '.admin.shareKey' ) );
2013-05-23 01:51:35 +04:00
// delete file
\OC\FIles\Filesystem::unlink( $filename );
2013-05-23 01:51:35 +04:00
// check if file not exists
$this->assertFalse( $this->view->file_exists( '/admin/files/' . $filename ) );
2013-05-23 01:51:35 +04:00
// check if key for admin not exists
$this->assertFalse( $this->view->file_exists( '/admin/files_encryption/keyfiles/' . $filename . '.key' ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin not exists
$this->assertFalse( $this->view->file_exists( '/admin/files_encryption/share-keys/' . $filename . '.admin.shareKey' ) );
2013-05-23 01:51:35 +04:00
// find created file with timestamp
$query = \OC_DB::prepare( 'SELECT `timestamp`,`type` FROM `*PREFIX*files_trash`'
. ' WHERE `id`=?' );
$result = $query->execute( array( $filename ) )->fetchRow();
2013-05-23 01:51:35 +04:00
$this->assertTrue( is_array( $result ) );
// build suffix
$trashFileSuffix = 'd' . $result['timestamp'];
2013-05-23 01:51:35 +04:00
// check if key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_trashbin/keyfiles/' . $filename . '.key.' . $trashFileSuffix ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin exists
$this->assertTrue( $this->view->file_exists( '/admin/files_trashbin/share-keys/' . $filename . '.admin.shareKey.' . $trashFileSuffix ) );
2013-05-23 01:51:35 +04:00
// get timestamp from file
$timestamp = str_replace( 'd', '', $trashFileSuffix );
2013-05-23 01:51:35 +04:00
// delete file forever
$this->assertGreaterThan( 0, \OCA\Files_Trashbin\Trashbin::delete( $filename, $timestamp ) );
2013-05-23 01:51:35 +04:00
// check if key for admin not exists
$this->assertFalse( $this->view->file_exists( '/admin/files_trashbin/files/' . $filename . '.' . $trashFileSuffix ) );
2013-05-23 01:51:35 +04:00
// check if key for admin not exists
$this->assertFalse( $this->view->file_exists( '/admin/files_trashbin/keyfiles/' . $filename . '.key.' . $trashFileSuffix ) );
2013-05-23 01:51:35 +04:00
// check if share key for admin not exists
$this->assertFalse( $this->view->file_exists( '/admin/files_trashbin/share-keys/' . $filename . '.admin.shareKey.' . $trashFileSuffix ) );
2013-05-23 01:51:35 +04:00
}
}