112 lines
2.7 KiB
PHP
112 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Test\src\App;
|
|
|
|
use Friendica\App\Mode;
|
|
use Friendica\Test\MockedTest;
|
|
use Friendica\Test\Util\ConfigMockTrait;
|
|
use Friendica\Test\Util\DBAMockTrait;
|
|
use Friendica\Test\Util\VFSTrait;
|
|
|
|
/**
|
|
* @runTestsInSeparateProcesses
|
|
* @preserveGlobalState disabled
|
|
*/
|
|
class ModeTest extends MockedTest
|
|
{
|
|
use VFSTrait;
|
|
use DBAMockTrait;
|
|
use ConfigMockTrait;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp(); // TODO: Change the autogenerated stub
|
|
|
|
$this->setUpVfsDir();
|
|
}
|
|
|
|
public function testItEmpty()
|
|
{
|
|
$mode = new Mode($this->root->url());
|
|
$this->assertTrue($mode->isInstall());
|
|
$this->assertFalse($mode->isNormal());
|
|
}
|
|
|
|
public function testWithoutConfig()
|
|
{
|
|
$mode = new Mode($this->root->url());
|
|
|
|
$this->assertTrue($this->root->hasChild('config/local.ini.php'));
|
|
|
|
$this->delConfigFile('local.ini.php');
|
|
|
|
$this->assertFalse($this->root->hasChild('config/local.ini.php'));
|
|
|
|
$mode->determine();
|
|
|
|
$this->assertTrue($mode->isInstall());
|
|
$this->assertFalse($mode->isNormal());
|
|
|
|
$this->assertFalse($mode->has(Mode::LOCALCONFIGPRESENT));
|
|
}
|
|
|
|
public function testWithoutDatabase()
|
|
{
|
|
$this->mockConnected(false, 1);
|
|
|
|
$mode = new Mode($this->root->url());
|
|
$mode->determine();
|
|
|
|
$this->assertFalse($mode->isNormal());
|
|
$this->assertTrue($mode->isInstall());
|
|
|
|
$this->assertTrue($mode->has(Mode::LOCALCONFIGPRESENT));
|
|
$this->assertFalse($mode->has(Mode::DBAVAILABLE));
|
|
}
|
|
|
|
public function testWithoutDatabaseSetup()
|
|
{
|
|
$this->mockConnected(true, 1);
|
|
$this->mockFetchFirst('SHOW TABLES LIKE \'config\'', false, 1);
|
|
|
|
$mode = new Mode($this->root->url());
|
|
$mode->determine();
|
|
|
|
$this->assertFalse($mode->isNormal());
|
|
$this->assertTrue($mode->isInstall());
|
|
|
|
$this->assertTrue($mode->has(Mode::LOCALCONFIGPRESENT));
|
|
}
|
|
|
|
public function testWithMaintenanceMode()
|
|
{
|
|
$this->mockConnected(true, 1);
|
|
$this->mockFetchFirst('SHOW TABLES LIKE \'config\'', true, 1);
|
|
$this->mockConfigGet('system', 'maintenance', true, 1);
|
|
|
|
$mode = new Mode($this->root->url());
|
|
$mode->determine();
|
|
|
|
$this->assertFalse($mode->isNormal());
|
|
$this->assertFalse($mode->isInstall());
|
|
|
|
$this->assertTrue($mode->has(Mode::DBCONFIGAVAILABLE));
|
|
$this->assertFalse($mode->has(Mode::MAINTENANCEDISABLED));
|
|
}
|
|
|
|
public function testNormalMode()
|
|
{
|
|
$this->mockConnected(true, 1);
|
|
$this->mockFetchFirst('SHOW TABLES LIKE \'config\'', true, 1);
|
|
$this->mockConfigGet('system', 'maintenance', false, 1);
|
|
|
|
$mode = new Mode($this->root->url());
|
|
$mode->determine();
|
|
|
|
$this->assertTrue($mode->isNormal());
|
|
$this->assertFalse($mode->isInstall());
|
|
|
|
$this->assertTrue($mode->has(Mode::DBCONFIGAVAILABLE));
|
|
$this->assertTrue($mode->has(Mode::MAINTENANCEDISABLED));
|
|
}
|
|
}
|