namespacing: \Shaarli\ApplicationUtils
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
parent
bcf056c9d9
commit
9778a1551c
6 changed files with 67 additions and 62 deletions
|
@ -1,4 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
namespace Shaarli;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
use Shaarli\Config\ConfigManager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shaarli (application) utilities
|
* Shaarli (application) utilities
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace Shaarli\Render;
|
namespace Shaarli\Render;
|
||||||
|
|
||||||
use ApplicationUtils;
|
use Shaarli\ApplicationUtils;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Shaarli\Bookmark\LinkDB;
|
use Shaarli\Bookmark\LinkDB;
|
||||||
use RainTPL;
|
use RainTPL;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace Shaarli\Updater;
|
namespace Shaarli\Updater;
|
||||||
|
|
||||||
use ApplicationUtils;
|
use Shaarli\ApplicationUtils;
|
||||||
use Exception;
|
use Exception;
|
||||||
use RainTPL;
|
use RainTPL;
|
||||||
use ReflectionClass;
|
use ReflectionClass;
|
||||||
|
|
|
@ -56,7 +56,6 @@
|
||||||
require_once __DIR__ . '/vendor/autoload.php';
|
require_once __DIR__ . '/vendor/autoload.php';
|
||||||
|
|
||||||
// Shaarli library
|
// Shaarli library
|
||||||
require_once 'application/ApplicationUtils.php';
|
|
||||||
require_once 'application/bookmark/LinkUtils.php';
|
require_once 'application/bookmark/LinkUtils.php';
|
||||||
require_once 'application/config/ConfigPlugin.php';
|
require_once 'application/config/ConfigPlugin.php';
|
||||||
require_once 'application/feed/Cache.php';
|
require_once 'application/feed/Cache.php';
|
||||||
|
@ -71,6 +70,7 @@
|
||||||
require_once 'application/PluginManager.php';
|
require_once 'application/PluginManager.php';
|
||||||
require_once 'application/Router.php';
|
require_once 'application/Router.php';
|
||||||
|
|
||||||
|
use \Shaarli\ApplicationUtils;
|
||||||
use \Shaarli\Bookmark\Exception\LinkNotFoundException;
|
use \Shaarli\Bookmark\Exception\LinkNotFoundException;
|
||||||
use \Shaarli\Bookmark\LinkDB;
|
use \Shaarli\Bookmark\LinkDB;
|
||||||
use \Shaarli\Config\ConfigManager;
|
use \Shaarli\Config\ConfigManager;
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
use \Shaarli\Security\LoginManager;
|
use \Shaarli\Security\LoginManager;
|
||||||
use \Shaarli\Security\SessionManager;
|
use \Shaarli\Security\SessionManager;
|
||||||
use \Shaarli\Thumbnailer;
|
use \Shaarli\Thumbnailer;
|
||||||
use Shaarli\Updater\Updater;
|
use \Shaarli\Updater\Updater;
|
||||||
|
|
||||||
// Ensure the PHP version is supported
|
// Ensure the PHP version is supported
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -1,33 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
|
namespace Shaarli;
|
||||||
|
|
||||||
use Shaarli\Config\ConfigManager;
|
use Shaarli\Config\ConfigManager;
|
||||||
|
|
||||||
/**
|
require_once 'tests/utils/FakeApplicationUtils.php';
|
||||||
* ApplicationUtils' tests
|
|
||||||
*/
|
|
||||||
|
|
||||||
require_once 'application/ApplicationUtils.php';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fake ApplicationUtils class to avoid HTTP requests
|
|
||||||
*/
|
|
||||||
class FakeApplicationUtils extends ApplicationUtils
|
|
||||||
{
|
|
||||||
public static $VERSION_CODE = '';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Toggle HTTP requests, allow overriding the version code
|
|
||||||
*/
|
|
||||||
public static function getVersion($url, $timeout = 0)
|
|
||||||
{
|
|
||||||
return self::$VERSION_CODE;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unitary tests for Shaarli utilities
|
* Unitary tests for Shaarli utilities
|
||||||
*/
|
*/
|
||||||
class ApplicationUtilsTest extends PHPUnit_Framework_TestCase
|
class ApplicationUtilsTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
protected static $testUpdateFile = 'sandbox/update.txt';
|
protected static $testUpdateFile = 'sandbox/update.txt';
|
||||||
protected static $testVersion = '0.5.0';
|
protected static $testVersion = '0.5.0';
|
||||||
|
|
19
tests/utils/FakeApplicationUtils.php
Normal file
19
tests/utils/FakeApplicationUtils.php
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Shaarli;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fake ApplicationUtils class to avoid HTTP requests
|
||||||
|
*/
|
||||||
|
class FakeApplicationUtils extends ApplicationUtils
|
||||||
|
{
|
||||||
|
public static $VERSION_CODE = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggle HTTP requests, allow overriding the version code
|
||||||
|
*/
|
||||||
|
public static function getVersion($url, $timeout = 0)
|
||||||
|
{
|
||||||
|
return self::$VERSION_CODE;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue