Fix AppDirsWithDifferentOwnerTest

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/42790/head
Côme Chilliet 5 months ago
parent bf59b637c5
commit d1aac16a72
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A

@ -86,13 +86,6 @@ class CheckSetupControllerTest extends TestCase {
/** @var ISetupCheckManager|MockObject */
private $setupCheckManager;
/**
* Holds a list of directories created during tests.
*
* @var array
*/
private $dirsToRemove = [];
protected function setUp(): void {
parent::setUp();
@ -145,19 +138,6 @@ class CheckSetupControllerTest extends TestCase {
])->getMock();
}
/**
* Removes directories created during tests.
*
* @after
* @return void
*/
public function removeTestDirectories() {
foreach ($this->dirsToRemove as $dirToRemove) {
rmdir($dirToRemove);
}
$this->dirsToRemove = [];
}
public function testCheck() {
$this->config->expects($this->any())
->method('getAppValue')

@ -33,6 +33,13 @@ class AppDirsWithDifferentOwnerTest extends TestCase {
private IL10N $l10n;
private AppDirsWithDifferentOwner $check;
/**
* Holds a list of directories created during tests.
*
* @var array
*/
private $dirsToRemove = [];
protected function setUp(): void {
parent::setUp();
@ -97,4 +104,17 @@ class AppDirsWithDifferentOwnerTest extends TestCase {
$this->invokePrivate($this->check, 'getAppDirsWithDifferentOwner', [posix_getuid()])
);
}
/**
* Removes directories created during tests.
*
* @after
* @return void
*/
public function removeTestDirectories() {
foreach ($this->dirsToRemove as $dirToRemove) {
rmdir($dirToRemove);
}
$this->dirsToRemove = [];
}
}

Loading…
Cancel
Save