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