2018-02-07 18:22:00 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests for sharing files and directories
|
|
|
|
*
|
2018-03-14 17:23:17 +01:00
|
|
|
* This is a bit of a mess, but I think we probably want to automatically test
|
|
|
|
* this to make sure we don't expose more than desired.
|
|
|
|
*
|
2018-02-07 18:22:00 +01:00
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Nathan Gray
|
|
|
|
* @package
|
|
|
|
* @copyright (c) 2018 Nathan Gray
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace EGroupware\Api\Vfs;
|
|
|
|
|
|
|
|
use EGroupware\Api;
|
|
|
|
use EGroupware\Api\Vfs;
|
|
|
|
use EGroupware\Api\LoggedInTest as LoggedInTest;
|
2018-03-21 20:48:10 +01:00
|
|
|
use EGroupware\Stylite\Vfs\Versioning;
|
2018-02-07 18:22:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
class SharingTest extends LoggedInTest
|
|
|
|
{
|
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
/**
|
|
|
|
* Keep track of shares to remove after
|
|
|
|
*/
|
2018-02-07 18:22:00 +01:00
|
|
|
protected $shares = Array();
|
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
/**
|
|
|
|
* Keep track of files to remove after
|
|
|
|
* @var Array
|
|
|
|
*/
|
2018-03-20 22:44:27 +01:00
|
|
|
protected $files = Array();
|
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
/**
|
|
|
|
* Options for searching the Vfs (Vfs::find())
|
|
|
|
*/
|
|
|
|
const VFS_OPTIONS = array(
|
|
|
|
'maxdepth' => 5
|
|
|
|
);
|
|
|
|
|
2018-02-07 18:22:00 +01:00
|
|
|
public function setUp()
|
|
|
|
{
|
2018-03-21 16:44:42 +01:00
|
|
|
|
2018-02-07 18:22:00 +01:00
|
|
|
}
|
2018-03-21 16:44:42 +01:00
|
|
|
|
2018-02-07 18:22:00 +01:00
|
|
|
public function tearDown()
|
|
|
|
{
|
2018-03-20 22:44:27 +01:00
|
|
|
LoggedInTest::tearDownAfterClass();
|
2018-02-15 17:37:48 +01:00
|
|
|
LoggedInTest::setupBeforeClass();
|
2018-03-20 22:44:27 +01:00
|
|
|
|
2018-03-21 16:44:42 +01:00
|
|
|
// Re-init, since they look at user, fstab, etc.
|
|
|
|
// Also, further tests that access the filesystem fail if we don't
|
|
|
|
Vfs::clearstatcache();
|
|
|
|
Vfs::init_static();
|
|
|
|
Vfs\StreamWrapper::init_static();
|
2018-02-20 23:32:37 +01:00
|
|
|
|
|
|
|
// Need to ask about mounts, or other tests fail
|
|
|
|
Vfs::mount();
|
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
// Remove any added files as root to avoid versioning issues
|
|
|
|
$backup = Vfs::$is_root;
|
|
|
|
Vfs::$is_root = true;
|
|
|
|
Vfs::remove($this->files);
|
|
|
|
Vfs::$is_root = $backup;
|
2018-03-20 22:44:27 +01:00
|
|
|
|
|
|
|
// Remove any added shares
|
2018-02-07 18:22:00 +01:00
|
|
|
foreach($this->shares as $share)
|
|
|
|
{
|
2018-03-20 22:44:27 +01:00
|
|
|
Sharing::delete($share);
|
2018-02-07 18:22:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-20 23:32:37 +01:00
|
|
|
/**
|
|
|
|
* Test to make sure a readonly link to home gives just readonly access,
|
|
|
|
* and just to user's home
|
|
|
|
*/
|
2018-03-21 16:44:42 +01:00
|
|
|
public function testHomeReadonly()
|
2018-02-20 23:32:37 +01:00
|
|
|
{
|
2018-03-21 16:44:42 +01:00
|
|
|
$dir = Vfs::get_home_dir().'/';
|
2018-02-20 23:32:37 +01:00
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
$this->checkDirectory($dir, Sharing::WRITABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test to make sure a writable link to home gives write access, but just
|
|
|
|
* to user's home
|
|
|
|
*/
|
|
|
|
public function testHomeWritable()
|
|
|
|
{
|
|
|
|
$dir = Vfs::get_home_dir().'/';
|
|
|
|
|
|
|
|
$this->checkDirectory($dir, Sharing::WRITABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test for a readonly share of a path with versioning turned on
|
|
|
|
*/
|
|
|
|
public function testVersioningReadonly()
|
|
|
|
{
|
|
|
|
$this->files[] = $dir = Vfs::get_home_dir().'/versioned/';
|
|
|
|
|
|
|
|
// Create versioned directory
|
|
|
|
if(Vfs::is_dir($dir)) Vfs::remove($dir);
|
|
|
|
Vfs::mkdir($dir);
|
|
|
|
$this->assertTrue(Vfs::is_writable($dir), "Unable to write to '$dir' as expected");
|
|
|
|
$this->mountVersioned($dir);
|
|
|
|
|
|
|
|
$this->checkDirectory($dir, Sharing::READONLY);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test for a writable share of a path with versioning turned on
|
|
|
|
*/
|
|
|
|
public function testVersioningWritable()
|
|
|
|
{
|
|
|
|
$this->files[] = $dir = Vfs::get_home_dir().'/versioned/';
|
|
|
|
|
|
|
|
// Create versioned directory
|
|
|
|
if(Vfs::is_dir($dir)) Vfs::remove($dir);
|
|
|
|
Vfs::mkdir($dir);
|
|
|
|
$this->assertTrue(Vfs::is_writable($dir), "Unable to write to '$dir' as expected");
|
|
|
|
$this->mountVersioned($dir);
|
|
|
|
|
|
|
|
$this->checkDirectory($dir, Sharing::WRITABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check a given directory to see that a link to it works.
|
|
|
|
*
|
|
|
|
* We check
|
|
|
|
* - Files/directories available to original user are available through share
|
|
|
|
* - Permissions match share (Read / Write)
|
|
|
|
* - Files are not empty
|
|
|
|
*
|
|
|
|
* @param string $dir
|
|
|
|
* @param string $mode
|
|
|
|
*/
|
|
|
|
protected function checkDirectory($dir, $mode)
|
|
|
|
{
|
|
|
|
$this->files += $this->addFiles($dir);
|
|
|
|
|
2018-02-20 23:32:37 +01:00
|
|
|
$logged_in_files = array_map(
|
|
|
|
function($path) use ($dir) {return str_replace($dir, '/', $path);},
|
2018-03-21 20:48:10 +01:00
|
|
|
Vfs::find($dir, static::VFS_OPTIONS)
|
2018-02-20 23:32:37 +01:00
|
|
|
);
|
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
//echo "\n".$this->getName();
|
|
|
|
//echo "\nLogged in files:\n".implode("\n", $logged_in_files)."\n";
|
|
|
|
|
|
|
|
// Create and use link
|
|
|
|
$extra = array();
|
|
|
|
switch($mode)
|
|
|
|
{
|
|
|
|
case Sharing::WRITABLE:
|
|
|
|
$extra['share_writable'] = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$this->shareLink($dir, $mode, $extra);
|
|
|
|
|
|
|
|
$files = Vfs::find('/', static::VFS_OPTIONS);
|
|
|
|
|
|
|
|
//echo "\nLinked files:\n".implode("\n", $files)."\n";
|
2018-02-20 23:32:37 +01:00
|
|
|
|
|
|
|
// Make sure files are the same
|
|
|
|
$this->assertEquals($logged_in_files, $files);
|
|
|
|
|
|
|
|
// Make sure all are readonly
|
|
|
|
foreach($files as $file)
|
|
|
|
{
|
2018-03-21 20:48:10 +01:00
|
|
|
$this->checkOneFile($file, $mode);
|
2018-02-20 23:32:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-03-21 20:48:10 +01:00
|
|
|
* Check the access permissions for one file/directory
|
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @param string $mode
|
2018-02-20 23:32:37 +01:00
|
|
|
*/
|
2018-03-21 20:48:10 +01:00
|
|
|
protected function checkOneFile($file, $mode)
|
2018-02-20 23:32:37 +01:00
|
|
|
{
|
2018-03-21 20:48:10 +01:00
|
|
|
// All the test files have something in them
|
|
|
|
if(!Vfs::is_dir($file))
|
|
|
|
{
|
|
|
|
$this->assertNotEmpty(file_get_contents(Vfs::PREFIX.$file), "$file was empty");
|
|
|
|
}
|
2018-03-14 17:23:17 +01:00
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
// Check permissions
|
|
|
|
switch($mode)
|
2018-03-14 17:23:17 +01:00
|
|
|
{
|
2018-03-21 20:48:10 +01:00
|
|
|
case Sharing::READONLY:
|
|
|
|
$this->assertFalse(Vfs::is_writable($file));
|
|
|
|
if(!Vfs::is_dir($file))
|
|
|
|
{
|
|
|
|
$this->assertFalse(file_put_contents(Vfs::PREFIX.$file, 'Writable check'));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Sharing::WRITABLE:
|
|
|
|
// Root is not writable
|
|
|
|
if($file == '/') continue;
|
|
|
|
|
|
|
|
$this->assertTrue(Vfs::is_writable($file), $file . ' was not writable');
|
|
|
|
if(!Vfs::is_dir($file))
|
|
|
|
{
|
|
|
|
$this->assertNotFalse(file_put_contents(Vfs::PREFIX.$file, 'Writable check'));
|
|
|
|
}
|
|
|
|
break;
|
2018-03-14 17:23:17 +01:00
|
|
|
}
|
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function mountVersioned($path)
|
|
|
|
{
|
|
|
|
if (!class_exists('EGroupware\Stylite\Vfs\Versioning\StreamWrapper'))
|
|
|
|
{
|
|
|
|
$this->markTestSkipped("No versioning available");
|
|
|
|
}
|
|
|
|
$backup = Vfs::$is_root;
|
|
|
|
Vfs::$is_root = true;
|
|
|
|
$url = Versioning\StreamWrapper::PREFIX.$path;
|
|
|
|
$this->assertTrue(Vfs::mount($url,$path), "Unable to mount $path as versioned");
|
|
|
|
Vfs::$is_root = $backup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add some files to the given path so there's something to find.
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*
|
|
|
|
* @return array of paths
|
|
|
|
*/
|
|
|
|
protected function addFiles($path)
|
|
|
|
{
|
|
|
|
$files = array();
|
|
|
|
|
|
|
|
// Plain file
|
|
|
|
$files[] = $file = $path.'test_file.txt';
|
2018-03-20 22:44:27 +01:00
|
|
|
$this->assertTrue(
|
|
|
|
file_put_contents(Vfs::PREFIX.$file, 'Test for ' . $this->getName() ."\n". Api\DateTime::to()) !== FALSE,
|
|
|
|
'Unable to write test file - check file permissions for CLI user'
|
|
|
|
);
|
2018-02-20 23:32:37 +01:00
|
|
|
|
2018-03-21 20:48:10 +01:00
|
|
|
// Subdirectory
|
|
|
|
$files[] = $dir = $path.'sub_dir/';
|
|
|
|
if(Vfs::is_dir($dir))
|
2018-02-20 23:32:37 +01:00
|
|
|
{
|
2018-03-21 20:48:10 +01:00
|
|
|
Vfs::remove($dir);
|
2018-02-20 23:32:37 +01:00
|
|
|
}
|
2018-03-21 20:48:10 +01:00
|
|
|
$this->assertTrue(
|
|
|
|
Vfs::mkdir($dir),
|
|
|
|
'Unable to create subdirectory ' . $dir
|
|
|
|
);
|
|
|
|
|
|
|
|
// File in a subdirectory
|
|
|
|
$files[] = $file = $dir.'subdir_test_file.txt';
|
|
|
|
$this->assertTrue(
|
|
|
|
file_put_contents(Vfs::PREFIX.$file, 'Test for ' . $this->getName() ."\n". Api\DateTime::to()) !== FALSE,
|
|
|
|
'Unable to write test file - check file permissions for CLI user'
|
|
|
|
);
|
|
|
|
return $files;
|
2018-02-20 23:32:37 +01:00
|
|
|
}
|
|
|
|
|
2018-02-07 18:22:00 +01:00
|
|
|
/**
|
|
|
|
* Test that readable shares are actually readable
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2018-03-20 22:44:27 +01:00
|
|
|
public function createShare($path, $mode, $extra = array())
|
2018-02-07 18:22:00 +01:00
|
|
|
{
|
2018-02-20 23:32:37 +01:00
|
|
|
// Make sure the path is there
|
|
|
|
if(!Vfs::is_readable($path))
|
|
|
|
{
|
|
|
|
$this->assertTrue(Vfs::is_dir($path) ? Vfs::mkdir($path,0750,true) : Vfs::touch($path));
|
|
|
|
}
|
2018-02-07 18:22:00 +01:00
|
|
|
|
2018-02-20 23:32:37 +01:00
|
|
|
// Create share
|
2018-03-20 22:44:27 +01:00
|
|
|
$this->shares[] = $share = Sharing::create($path, $mode, $name, $recipients, $extra);
|
2018-02-07 18:22:00 +01:00
|
|
|
|
|
|
|
return $share;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-20 23:32:37 +01:00
|
|
|
* Test that a share link can be made, and that only that path is available
|
2018-02-07 18:22:00 +01:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2018-03-20 22:44:27 +01:00
|
|
|
public function shareLink($path, $mode, $extra = array())
|
2018-02-07 18:22:00 +01:00
|
|
|
{
|
2018-03-20 22:44:27 +01:00
|
|
|
//echo __METHOD__ . "('$path',$mode)\n";
|
2018-02-07 18:22:00 +01:00
|
|
|
// Setup - create path and share
|
2018-03-20 22:44:27 +01:00
|
|
|
$share = $this->createShare($path, $mode, $extra);
|
2018-02-07 18:22:00 +01:00
|
|
|
$link = Vfs\Sharing::share2link($share);
|
2018-03-20 22:44:27 +01:00
|
|
|
//echo __METHOD__ . " link: $link\n";
|
|
|
|
//echo __METHOD__ . " share: " . array2string($share)."\n";
|
2018-02-07 18:22:00 +01:00
|
|
|
|
2018-02-15 17:37:48 +01:00
|
|
|
// Setup for share to load
|
2018-02-07 18:22:00 +01:00
|
|
|
$_SERVER['REQUEST_URI'] = $link;
|
2018-02-15 17:37:48 +01:00
|
|
|
preg_match('|^https?://[^/]+(/.*)share.php/'.$share['share_token'].'$|', $path_info=$_SERVER['REQUEST_URI'], $matches);
|
|
|
|
$_SERVER['SCRIPT_NAME'] = $matches[1];
|
|
|
|
|
2018-03-21 16:44:42 +01:00
|
|
|
// Log out & clear cache
|
2018-02-15 17:37:48 +01:00
|
|
|
LoggedInTest::tearDownAfterClass();
|
2018-03-21 20:48:10 +01:00
|
|
|
|
|
|
|
// Re-init, since they look at user, fstab, etc.
|
|
|
|
// Also, further tests that access the filesystem fail if we don't
|
2018-03-21 16:44:42 +01:00
|
|
|
Vfs::clearstatcache();
|
2018-03-21 20:48:10 +01:00
|
|
|
Vfs::init_static();
|
|
|
|
Vfs\StreamWrapper::init_static();
|
|
|
|
|
2018-02-07 18:22:00 +01:00
|
|
|
|
2018-02-15 17:37:48 +01:00
|
|
|
// If it's a directory, check to make sure it gives the filemanager UI
|
2018-02-07 18:22:00 +01:00
|
|
|
if(Vfs::is_dir($path))
|
|
|
|
{
|
|
|
|
$this->checkDirectoryLink($link, $share);
|
|
|
|
}
|
|
|
|
|
2018-02-15 17:37:48 +01:00
|
|
|
// Load share
|
|
|
|
$this->setup_info();
|
|
|
|
|
2018-02-20 23:32:37 +01:00
|
|
|
// Our path should be mounted to root
|
|
|
|
$this->assertTrue(Vfs::is_readable('/'));
|
2018-02-15 17:37:48 +01:00
|
|
|
|
2018-02-20 23:32:37 +01:00
|
|
|
// Check other paths
|
|
|
|
$this->assertFalse(Vfs::is_readable($path));
|
|
|
|
$this->assertFalse(Vfs::is_readable($path . '../'));
|
2018-02-07 18:22:00 +01:00
|
|
|
}
|
|
|
|
|
2018-02-15 17:37:48 +01:00
|
|
|
/**
|
|
|
|
* Test to make sure that a directory link leads to a limited filemanager
|
|
|
|
* interface (not a file or 404).
|
|
|
|
*
|
|
|
|
* @param type $link
|
|
|
|
* @param type $share
|
|
|
|
*/
|
2018-02-07 18:22:00 +01:00
|
|
|
public function checkDirectoryLink($link, $share)
|
|
|
|
{
|
2018-02-20 23:32:37 +01:00
|
|
|
// Set up curl
|
2018-02-07 18:22:00 +01:00
|
|
|
$curl = curl_init($link);
|
|
|
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
|
|
|
|
$html = curl_exec($curl);
|
|
|
|
curl_close($curl);
|
2018-02-20 23:32:37 +01:00
|
|
|
|
2018-03-14 17:23:17 +01:00
|
|
|
if(!$html)
|
|
|
|
{
|
|
|
|
// No response - could mean something is terribly wrong, or it could
|
|
|
|
// mean we're running on Travis with no webserver to answer the
|
|
|
|
// request
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-20 23:32:37 +01:00
|
|
|
// Parse & check for nextmatch
|
2018-02-07 18:22:00 +01:00
|
|
|
$dom = new \DOMDocument();
|
2018-02-20 23:32:37 +01:00
|
|
|
@$dom->loadHTML($html);
|
2018-02-07 18:22:00 +01:00
|
|
|
$xpath = new \DOMXPath($dom);
|
|
|
|
$form = $xpath->query ('//form')->item(0);
|
|
|
|
$data = json_decode($form->getAttribute('data-etemplate'));
|
|
|
|
|
|
|
|
$this->assertEquals('filemanager.index', $data->name);
|
2018-03-14 17:23:17 +01:00
|
|
|
|
|
|
|
// Make sure we start at root, not somewhere else like the token mounted
|
|
|
|
// as a sub-directory
|
2018-02-07 18:22:00 +01:00
|
|
|
$this->assertEquals('/', $data->data->content->nm->path);
|
|
|
|
|
|
|
|
unset($data->data->content->nm->actions);
|
|
|
|
//var_dump($data->data->content->nm);
|
|
|
|
}
|
|
|
|
protected function setup_info()
|
|
|
|
{
|
|
|
|
// Copied from share.php
|
|
|
|
$GLOBALS['egw_info'] = array(
|
|
|
|
'flags' => array(
|
|
|
|
'disable_Template_class' => true,
|
|
|
|
'noheader' => true,
|
|
|
|
'nonavbar' => 'always', // true would cause eTemplate to reset it to false for non-popups!
|
|
|
|
'currentapp' => 'filemanager',
|
|
|
|
'autocreate_session_callback' => 'EGroupware\\Api\\Vfs\\Sharing::create_session',
|
|
|
|
'no_exception_handler' => 'basic_auth', // we use a basic auth exception handler (sends exception message as basic auth realm)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2018-02-21 23:03:45 +01:00
|
|
|
ob_start();
|
2018-02-15 17:37:48 +01:00
|
|
|
static::load_egw('anonymous','','',$GLOBALS['egw_info']);
|
2018-02-21 23:03:45 +01:00
|
|
|
ob_end_clean();
|
2018-02-07 18:22:00 +01:00
|
|
|
}
|
|
|
|
}
|