DI::config()->set('system', 'remove_multiplicated_lines', false);
DI::config()->set('system', 'no_oembed', false);
DI::config()->set('system', 'allowed_link_protocols', []);
- DI::config()->set('system', 'url', 'friendica.local');
+ DI::config()->set('system', 'url', 'https://friendica.local');
DI::config()->set('system', 'no_smilies', false);
DI::config()->set('system', 'big_emojis', false);
DI::config()->set('system', 'allowed_oembed', '');
- DI::baseUrl()->save('friendica.local', DI::baseUrl()::SSL_POLICY_FULL, '');
-
$config = \HTMLPurifier_HTML5Config::createDefault();
$config->set('HTML.Doctype', 'HTML5');
$config->set('Attr.AllowedRel', [
private function useBaseUrl()
{
$baseUrl = \Mockery::mock(BaseURL::class);
- $baseUrl->shouldReceive('getHostname')->andReturn('friendica.local')->once();
+ $baseUrl->shouldReceive('getHost')->andReturn('friendica.local')->once();
$dice = \Mockery::mock(Dice::class);
$dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl);
*/
public function testInstance()
{
- $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once();
+ $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once();
$this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn('1235')->once();
$this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn('7')->once();
$this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once();
*/
public function testGet(array $cookieData, bool $hasValues, $uid, $hash, $ip)
{
- $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once();
+ $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once();
$this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn('1235')->once();
$this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn('7')->once();
$this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once();
*/
public function testCheck(string $serverPrivateKey, string $userPrivateKey, string $password, string $assertHash, bool $assertTrue)
{
- $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once();
+ $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once();
$this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn($serverPrivateKey)->once();
$this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn('7')->once();
$this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once();
*/
public function testSet($serverKey, $uid, $password, $privateKey, $assertHash, $remoteIp, $serverArray)
{
- $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once();
+ $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once();
$this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn($serverKey)->once();
$this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn(Cookie::DEFAULT_EXPIRE)->once();
$this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once();
*/
public function testDoubleSet($serverKey, $uid, $password, $privateKey, $assertHash, $remoteIp, $serverArray)
{
- $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once();
+ $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once();
$this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn($serverKey)->once();
$this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn(Cookie::DEFAULT_EXPIRE)->once();
$this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once();
Cookie::NAME => 'test'
];
- $this->baseUrl->shouldReceive('getSSLPolicy')->andReturn(true)->once();
+ $this->baseUrl->shouldReceive('getScheme')->andReturn('https')->once();
$this->config->shouldReceive('get')->with('system', 'site_prvkey')->andReturn(24)->once();
$this->config->shouldReceive('get')->with('system', 'auth_cookie_lifetime', Cookie::DEFAULT_EXPIRE)->andReturn(Cookie::DEFAULT_EXPIRE)->once();
$this->config->shouldReceive('get')->with('proxy', 'trusted_proxies', '')->andReturn('')->once();
namespace Friendica\Test\src\Module\Api\GnuSocial\GnuSocial;
-use Friendica\App\BaseURL;
-use Friendica\App\Router;
use Friendica\DI;
use Friendica\Module\Api\GNUSocial\GNUSocial\Config;
use Friendica\Test\src\Module\Api\ApiTest;
-use Friendica\Test\Util\VFSTrait;
class ConfigTest extends ApiTest
{
*/
public function testApiStatusnetConfig()
{
- DI::config()->set('system', 'ssl_policy', BaseURL::SSL_POLICY_FULL);
-
$response = (new Config(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
->run($this->httpExceptionMock);
$json = $this->toJson($response);
- self::assertEquals(DI::config()->get('config', 'hostname'), $json->site->server);
+ self::assertEquals(DI::baseUrl()->getHost(), $json->site->server);
self::assertEquals(DI::config()->get('system', 'theme'), $json->site->theme);
self::assertEquals(DI::baseUrl() . '/images/friendica-64.png', $json->site->logo);
self::assertTrue($json->site->fancy);
$this->pConfig = \Mockery::mock(IManagePersonalConfigValues::class);
$this->l10n = \Mockery::mock(L10n::class);
$this->baseUrl = \Mockery::mock(BaseURL::class);
- $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local');
- $this->baseUrl->shouldReceive('get')->andReturn('http://friendica.local');
+ $this->baseUrl->shouldReceive('getHost')->andReturn('friendica.local');
+ $this->baseUrl->shouldReceive('__toString')->andReturn('http://friendica.local');
}
protected function tearDown(): void
$this->config = \Mockery::mock(IManageConfigValues::class);
$this->l10n = \Mockery::mock(L10n::class);
$this->baseUrl = \Mockery::mock(BaseURL::class);
- $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local');
- $this->baseUrl->shouldReceive('get')->andReturn('http://friendica.local');
+ $this->baseUrl->shouldReceive('getHost')->andReturn('friendica.local');
+ $this->baseUrl->shouldReceive('__toString')->andReturn('http://friendica.local');
$this->defaultHeaders = [];
}
return $msg;
});
$this->baseUrl = \Mockery::mock(BaseURL::class);
- $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local');
- $this->baseUrl->shouldReceive('get')->andReturn('http://friendica.local');
+ $this->baseUrl->shouldReceive('getHost')->andReturn('friendica.local');
+ $this->baseUrl->shouldReceive('__toString')->andReturn('http://friendica.local');
}
/**