Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
riki-quickstart
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas Flori
riki-quickstart
Commits
74452d77
Commit
74452d77
authored
1 year ago
by
Thomas Flori
Browse files
Options
Downloads
Patches
Plain Diff
remove tests that can not run as root and require special files
parent
5384692f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#667
passed with stages
in 1 minute and 42 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/Cli/Command/Config/Cache.php
+7
-1
7 additions, 1 deletion
app/Cli/Command/Config/Cache.php
tests/Cli/Config/CacheTest.php
+2
-78
2 additions, 78 deletions
tests/Cli/Config/CacheTest.php
with
9 additions
and
79 deletions
app/Cli/Command/Config/Cache.php
+
7
−
1
View file @
74452d77
...
...
@@ -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!'
);
...
...
This diff is collapsed.
Click to expand it.
tests/Cli/Config/CacheTest.php
+
2
−
78
View file @
74452d77
...
...
@@ -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
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment