2018-04-09 17:03:29 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* BaseObjectTest class.
|
|
|
|
*/
|
|
|
|
|
2019-02-27 06:32:56 -05:00
|
|
|
namespace Friendica\Test\src;
|
2018-04-09 17:03:29 -04:00
|
|
|
|
|
|
|
use Friendica\BaseObject;
|
2019-01-30 14:26:17 -05:00
|
|
|
use Friendica\Test\Util\AppMockTrait;
|
|
|
|
use Friendica\Test\Util\VFSTrait;
|
2018-04-09 15:23:41 -04:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
2018-04-09 17:03:29 -04:00
|
|
|
/**
|
|
|
|
* Tests for the BaseObject class.
|
|
|
|
*/
|
2018-04-09 15:23:41 -04:00
|
|
|
class BaseObjectTest extends TestCase
|
2018-04-09 17:03:29 -04:00
|
|
|
{
|
2019-01-30 14:26:17 -05:00
|
|
|
use VFSTrait;
|
|
|
|
use AppMockTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var BaseObject
|
|
|
|
*/
|
|
|
|
private $baseObject;
|
2018-04-09 17:03:29 -04:00
|
|
|
|
|
|
|
/**
|
2019-02-07 14:44:03 -05:00
|
|
|
* Test the setApp() and getApp() function.
|
2018-04-09 17:03:29 -04:00
|
|
|
* @return void
|
|
|
|
*/
|
2019-02-07 14:44:03 -05:00
|
|
|
public function testGetSetApp()
|
2018-04-09 17:03:29 -04:00
|
|
|
{
|
2019-02-07 14:44:03 -05:00
|
|
|
$baseObject = new BaseObject();
|
2019-02-05 16:56:57 -05:00
|
|
|
$this->setUpVfsDir();
|
2019-02-17 15:41:45 -05:00
|
|
|
$this->mockApp($this->root);
|
2019-02-05 16:56:57 -05:00
|
|
|
|
2019-05-01 23:20:25 -04:00
|
|
|
$baseObject->setApp($this->app);
|
2019-02-07 14:44:03 -05:00
|
|
|
$this->assertEquals($this->app, $baseObject->getApp());
|
2018-04-09 17:03:29 -04:00
|
|
|
}
|
2019-02-05 16:56:57 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the getApp() function without App
|
|
|
|
* @expectedException Friendica\Network\HTTPException\InternalServerErrorException
|
2019-02-07 14:44:03 -05:00
|
|
|
* @runInSeparateProcess
|
|
|
|
* @preserveGlobalState disabled
|
2019-02-05 16:56:57 -05:00
|
|
|
*/
|
|
|
|
public function testGetAppFailed()
|
|
|
|
{
|
2019-05-01 23:20:25 -04:00
|
|
|
BaseObject::getApp();
|
2019-02-05 16:56:57 -05:00
|
|
|
}
|
2018-04-09 17:03:29 -04:00
|
|
|
}
|