281 lines
8.6 KiB
PHP
281 lines
8.6 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace Thelia\Tests\Action;
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
|
|
use Thelia\Core\HttpFoundation\Request;
|
|
use Thelia\Core\HttpFoundation\Session\Session;
|
|
use Thelia\Action\Document;
|
|
use Thelia\Core\Event\Document\DocumentEvent;
|
|
use Thelia\Files\FileManager;
|
|
use Thelia\Model\ConfigQuery;
|
|
use Thelia\Tests\TestCaseWithURLToolSetup;
|
|
|
|
/**
|
|
* Class DocumentTest
|
|
*
|
|
* @package Thelia\Tests\Action\DocumentTest
|
|
*/
|
|
class DocumentTest extends TestCaseWithURLToolSetup
|
|
{
|
|
protected $cache_dir_from_web_root;
|
|
|
|
protected $request;
|
|
|
|
protected $session;
|
|
|
|
public function getContainer()
|
|
{
|
|
$container = new ContainerBuilder();
|
|
|
|
$dispatcher = $this->getMock("Symfony\Component\EventDispatcher\EventDispatcherInterface");
|
|
|
|
$container->set("event_dispatcher", $dispatcher);
|
|
|
|
$fileManager = new FileManager([
|
|
"document.product" => "Thelia\\Model\\ProductDocument",
|
|
"image.product" => "Thelia\\Model\\ProductImage",
|
|
"document.category" => "Thelia\\Model\\CategoryDocument",
|
|
"image.category" => "Thelia\\Model\\CategoryImage",
|
|
"document.content" => "Thelia\\Model\\ContentDocument",
|
|
"image.content" => "Thelia\\Model\\ContentImage",
|
|
"document.folder" => "Thelia\\Model\\FolderDocument",
|
|
"image.folder" => "Thelia\\Model\\FolderImage",
|
|
"document.brand" => "Thelia\\Model\\BrandDocument",
|
|
"image.brand" => "Thelia\\Model\\BrandImage",
|
|
]);
|
|
|
|
$container->set("thelia.file_manager", $this->getFileManager());
|
|
|
|
$request = new Request();
|
|
$request->setSession($this->session);
|
|
|
|
$container->set("request", $request);
|
|
|
|
return $container;
|
|
}
|
|
|
|
public function getFileManager()
|
|
{
|
|
$fileManager = new FileManager([
|
|
"document.product" => "Thelia\\Model\\ProductDocument",
|
|
"image.product" => "Thelia\\Model\\ProductImage",
|
|
"document.category" => "Thelia\\Model\\CategoryDocument",
|
|
"image.category" => "Thelia\\Model\\CategoryImage",
|
|
"document.content" => "Thelia\\Model\\ContentDocument",
|
|
"image.content" => "Thelia\\Model\\ContentImage",
|
|
"document.folder" => "Thelia\\Model\\FolderDocument",
|
|
"image.folder" => "Thelia\\Model\\FolderImage",
|
|
"document.brand" => "Thelia\\Model\\BrandDocument",
|
|
"image.brand" => "Thelia\\Model\\BrandImage",
|
|
]);
|
|
|
|
return $fileManager;
|
|
}
|
|
|
|
public function setUp()
|
|
{
|
|
$this->session = new Session(new MockArraySessionStorage());
|
|
$this->request = new Request();
|
|
|
|
$this->request->setSession($this->session);
|
|
|
|
// mock cache configuration.
|
|
$config = ConfigQuery::create()->filterByName('document_cache_dir_from_web_root')->findOne();
|
|
|
|
if ($config != null) {
|
|
$this->cache_dir_from_web_root = $config->getValue();
|
|
|
|
$config->setValue(__DIR__ . "/assets/documents/cache");
|
|
|
|
$config->setValue($this->cache_dir_from_web_root)->save();
|
|
}
|
|
}
|
|
|
|
public static function setUpBeforeClass()
|
|
{
|
|
$dir = THELIA_WEB_DIR . "/cache/tests";
|
|
if ($dh = @opendir($dir)) {
|
|
while ($file = readdir($dh)) {
|
|
if ($file == '.' || $file == '..') {
|
|
continue;
|
|
}
|
|
|
|
unlink(sprintf("%s/%s", $dir, $file));
|
|
}
|
|
|
|
closedir($dh);
|
|
}
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
// restore cache configuration.
|
|
$config = ConfigQuery::create()->filterByName('document_cache_dir_from_web_root')->findOne();
|
|
|
|
if ($config != null) {
|
|
$config->setValue($this->cache_dir_from_web_root)->save();
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Documentevent is empty, mandatory parameters not specified.
|
|
*
|
|
* @expectedException \InvalidArgumentException
|
|
*/
|
|
public function testProcessEmptyDocumentEvent()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
$document->processDocument($event);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Try to process a non-existent file
|
|
*
|
|
* @expectedException \InvalidArgumentException
|
|
*/
|
|
public function testProcessNonExistentDocument()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
$event->setCacheFilepath("blablabla.txt");
|
|
$event->setCacheSubdirectory("tests");
|
|
|
|
$document->processDocument($event);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Try to process a file outside of the cache
|
|
*
|
|
* @expectedException \InvalidArgumentException
|
|
*/
|
|
public function testProcessDocumentOutsideValidPath()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
$event->setCacheFilepath("blablabla.pdf");
|
|
$event->setCacheSubdirectory("../../../");
|
|
|
|
$document->processDocument($event);
|
|
}
|
|
|
|
/**
|
|
* No operation done on source file -> copie !
|
|
*/
|
|
public function testProcessDocumentCopy()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$event->setSourceFilepath(__DIR__ . "/assets/documents/sources/test-document-1.txt");
|
|
$event->setCacheSubdirectory("tests");
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
// mock cache configuration.
|
|
$config = ConfigQuery::create()->filterByName(Document::CONFIG_DELIVERY_MODE)->findOne();
|
|
|
|
if ($config != null) {
|
|
$oldval = $config->getValue();
|
|
$config->setValue('copy')->save();
|
|
}
|
|
|
|
$document->processDocument($event);
|
|
|
|
if ($config != null) {
|
|
$config->setValue($oldval)->save();
|
|
}
|
|
|
|
$imgdir = ConfigQuery::read('document_cache_dir_from_web_root');
|
|
|
|
$this->assertFileExists(THELIA_WEB_DIR . "/$imgdir/tests/test-document-1.txt");
|
|
}
|
|
|
|
/**
|
|
* No operation done on source file -> link !
|
|
*/
|
|
public function testProcessDocumentSymlink()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$event->setSourceFilepath(__DIR__ . "/assets/documents/sources/test-document-2.txt");
|
|
$event->setCacheSubdirectory("tests");
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
// mock cache configuration.
|
|
$config = ConfigQuery::create()->filterByName(Document::CONFIG_DELIVERY_MODE)->findOne();
|
|
|
|
if ($config != null) {
|
|
$oldval = $config->getValue();
|
|
$config->setValue('symlink')->save();
|
|
}
|
|
|
|
$document->processDocument($event);
|
|
|
|
if ($config != null) {
|
|
$config->setValue($oldval)->save();
|
|
}
|
|
|
|
$imgdir = ConfigQuery::read('document_cache_dir_from_web_root');
|
|
|
|
$this->assertFileExists(THELIA_WEB_DIR . "/$imgdir/tests/test-document-2.txt");
|
|
}
|
|
|
|
public function testClearTestsCache()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$event->setCacheSubdirectory('tests');
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
$document->clearCache($event);
|
|
}
|
|
|
|
public function testClearWholeCache()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
$document->clearCache($event);
|
|
}
|
|
|
|
/**
|
|
* Try to clear directory ouside of the cache
|
|
*
|
|
* @expectedException \InvalidArgumentException
|
|
*/
|
|
public function testClearUnallowedPathCache()
|
|
{
|
|
$event = new DocumentEvent($this->request);
|
|
|
|
$event->setCacheSubdirectory('../../../..');
|
|
|
|
$document = new Document($this->getFileManager());
|
|
|
|
$document->clearCache($event);
|
|
}
|
|
}
|