mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-11-23 20:04:03 +00:00
88 lines
2.7 KiB
PHP
88 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace phpbrowscapTest;
|
|
|
|
use phpbrowscap\Browscap;
|
|
|
|
/**
|
|
* Browscap.ini parsing class with caching and update capabilities
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* Copyright (c) 2006-2012 Jonathan Stoppani
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
* @package Browscap
|
|
* @author Vítor Brandão <noisebleed@noiselabs.org>
|
|
* @copyright Copyright (c) 2006-2012 Jonathan Stoppani
|
|
* @version 1.0
|
|
* @license http://www.opensource.org/licenses/MIT MIT License
|
|
* @link https://github.com/GaretJax/phpbrowscap/
|
|
*/
|
|
class TestCase extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $cacheDir;
|
|
|
|
protected function createCacheDir()
|
|
{
|
|
$cacheDir = sys_get_temp_dir().DIRECTORY_SEPARATOR.'browscap_testing';
|
|
|
|
if (!is_dir($cacheDir)) {
|
|
if (false === @mkdir($cacheDir, 0777, true)) {
|
|
throw new \RuntimeException(sprintf('Unable to create the "%s" directory', $cacheDir));
|
|
}
|
|
}
|
|
|
|
$this->cacheDir = $cacheDir;
|
|
|
|
return $this->cacheDir;
|
|
}
|
|
|
|
protected function createBrowscap()
|
|
{
|
|
$cacheDir = $this->createCacheDir();
|
|
|
|
return new Browscap($cacheDir);
|
|
}
|
|
|
|
/**
|
|
* removes the temporary cache directory
|
|
*/
|
|
protected function removeCacheDir()
|
|
{
|
|
if (isset($this->cacheDir) && is_dir($this->cacheDir)) {
|
|
@rmdir($this->cacheDir);
|
|
$this->cacheDir = null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Tears down the fixture, for example, close a network connection.
|
|
* This method is called after a test is executed.
|
|
*/
|
|
protected function tearDown()
|
|
{
|
|
$this->removeCacheDir();
|
|
}
|
|
}
|