Skip to content
Snippets Groups Projects
Commit 74452d77 authored by Thomas Flori's avatar Thomas Flori
Browse files

remove tests that can not run as root and require special files

parent 5384692f
No related branches found
No related tags found
No related merge requests found
Pipeline #667 passed with stages
in 1 minute and 42 seconds
......@@ -31,8 +31,11 @@ class Cache extends AbstractCommand
$cachePath = $this->app->environment->getConfigCachePath();
if (!file_exists(dirname($cachePath)) && !@mkdir(dirname($cachePath), umask() ^ 0777, true)) {
// @codeCoverageIgnoreStart
// that usually does not happen and cannot be tested reliably
$this->console->error('Could not create parent directory for caching!');
return 1;
// @codeCoverageIgnoreEnd
} elseif (!is_writeable(dirname($cachePath)) || !is_dir(dirname($cachePath))) {
$this->console->error('Cache directory is not writeable!');
return 2;
......@@ -41,9 +44,9 @@ class Cache extends AbstractCommand
if ($getOpt->getOption('clear')) {
// remove the configuration cache
if (file_exists($cachePath) && !@unlink($cachePath)) {
// @codeCoverageIgnoreStart
// when the file exists we usually can unlink
// except the directory is not writeable but this is fetched earlier
// @codeCoverageIgnoreStart
$this->console->error('Failed to clear the configuration cache!');
return 4;
// @codeCoverageIgnoreEnd
......@@ -54,8 +57,11 @@ class Cache extends AbstractCommand
// create a fresh configuration (don't use the cached version)
$config = new Config($this->app->environment);
if (!@file_put_contents($cachePath, serialize($config))) {
// that usually does not happen and cannot be tested reliably
// @codeCoverageIgnoreStart
$this->console->error('Failed to cache the configuration!');
return 3;
// @codeCoverageIgnoreEnd
}
$this->console->info('Configuration cache created successfully!');
......
......@@ -19,31 +19,11 @@ class CacheTest extends TestCase
self::assertSame(0, $result['returnVar']);
}
/** @test */
public function failsWhenDirectoryCanNotBeCreated()
{
$cachePath = '/var/cache/riki-test/config.spo';
if (posix_getuid() === 0) {
$this->markTestSkipped('This test can not be executed from super user');
return;
} elseif (file_exists(dirname($cachePath)) || is_writeable(dirname(dirname($cachePath)))) {
$this->markTestSkipped('Directory ' . dirname($cachePath) . ' exists or could be created');
return;
}
$this->mocks['environment']->shouldReceive('getConfigCachePath')->with()
->once()->andReturn($cachePath);
$result = $this->start('config:cache');
self::assertEquals('Could not create parent directory for caching!', trim($result['errors']));
self::assertSame(1, $result['returnVar']);
}
/** @test */
public function failsWhenDirectoryIsAFile()
{
$cachePath = '/etc/passwd/config.spo';
touch('/tmp/cache');
$cachePath = '/tmp/cache/config.spo';
$this->mocks['environment']->shouldReceive('getConfigCachePath')->with()
->once()->andReturn($cachePath);
......@@ -53,28 +33,6 @@ class CacheTest extends TestCase
self::assertSame(2, $result['returnVar']);
}
/** @test */
public function failsWhenFileIsNotWriteable()
{
if (posix_getuid() === 0) {
$this->markTestSkipped('This test can not be executed from super user');
return;
}
$cachePath = $this->getFileFromRoot('/tmp', true);
if (!$cachePath) {
$this->markTestSkipped('Could not find a non-writeable file for test');
return;
}
$this->mocks['environment']->shouldReceive('getConfigCachePath')->with()
->once()->andReturn($cachePath);
$result = $this->start('config:cache');
self::assertEquals('Failed to cache the configuration!', trim($result['errors']));
self::assertSame(3, $result['returnVar']);
}
/** @test */
public function cachesTheConfig()
{
......@@ -107,38 +65,4 @@ class CacheTest extends TestCase
self::assertEquals('Configuration cache cleared successfully!', trim($result['output']));
self::assertSame(0, $result['returnVar']);
}
/**
* Get a file owned by root
*
* @param string $dir
* @return null|string
* @throws \Exception
*/
protected function getFileFromRoot(string $dir, bool $writeableDir)
{
$dh = opendir($dir);
if (!$dh) {
throw new \Exception('Could not open dir ' . $dir . ' for reading');
}
while ($file = readdir($dh)) {
if ($file === '.' || $file === '..') {
continue;
}
$path = $dir . DIRECTORY_SEPARATOR . $file;
if (is_dir($path)) {
if (is_readable($path) && $fileFromRoot = $this->getFileFromRoot($path, $writeableDir)) {
return $fileFromRoot;
}
continue;
} elseif (@fileowner($path) === 0 && !is_writeable($path) &&
is_writeable(dirname($path)) xor !$writeableDir) {
return $path;
}
}
return null;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment