Inital commit
This commit is contained in:
42
tests/phpunit/Thelia/Tests/Tools/FakeFileDownloader.php
Normal file
42
tests/phpunit/Thelia/Tests/Tools/FakeFileDownloader.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?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\Tools;
|
||||
|
||||
use Thelia\Exception\FileNotFoundException;
|
||||
use Thelia\Tools\FileDownload\FileDownloader;
|
||||
|
||||
/**
|
||||
* Class FakeFileDownloader
|
||||
* @package Thelia\Tests\Type
|
||||
* @author Benjamin Perche <bperche@openstudio.fr>
|
||||
*/
|
||||
class FakeFileDownloader extends FileDownloader
|
||||
{
|
||||
/**
|
||||
* @throws \Thelia\Exception\FileNotFoundException
|
||||
* @throws \ErrorException
|
||||
* @throws \HttpUrlException
|
||||
*
|
||||
* Downloads the file $url in $pathToStore
|
||||
*/
|
||||
public function download($url, $pathToStore)
|
||||
{
|
||||
if (!file_exists($url) || !is_readable($url)) {
|
||||
throw new FileNotFoundException();
|
||||
}
|
||||
|
||||
if (!copy($url, $pathToStore)) {
|
||||
throw new \ErrorException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user