Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove broken function resetStorage from test cases
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc committed Aug 2, 2022
commit 262f7d92f08213c57bbe30994dc3975c89747632
13 changes: 0 additions & 13 deletions apps/federatedfilesharing/tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ protected static function loginHelper($user, $create = false, $password = false)
}
}

self::resetStorage();

\OC_Util::tearDownFS();
\OC::$server->getUserSession()->setUser(null);
\OC\Files\Filesystem::tearDown();
Expand All @@ -116,15 +114,4 @@ protected static function loginHelper($user, $create = false, $password = false)

\OC_Util::setupFS($user);
}

/**
* reset init status for the share storage
*/
protected static function resetStorage() {
$storage = new \ReflectionClass('\OCA\Files_Sharing\SharedStorage');
$isInitialized = $storage->getProperty('initialized');
$isInitialized->setAccessible(true);
$isInitialized->setValue($storage, false);
$isInitialized->setAccessible(false);
}
}
13 changes: 0 additions & 13 deletions apps/files_sharing/tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,6 @@ protected static function loginHelper($user, $create = false, $password = false)
}
}

self::resetStorage();

\OC_Util::tearDownFS();
\OC\Files\Cache\Storage::getGlobalCache()->clearCache();
\OC::$server->getUserSession()->setUser(null);
Expand All @@ -213,17 +211,6 @@ protected static function loginHelper($user, $create = false, $password = false)
\OC_Util::setupFS($user);
}

/**
* reset init status for the share storage
*/
protected static function resetStorage() {
$storage = new \ReflectionClass('\OCA\Files_Sharing\SharedStorage');
$isInitialized = $storage->getProperty('initialized');
$isInitialized->setAccessible(true);
$isInitialized->setValue($storage, false);
$isInitialized->setAccessible(false);
}

/**
* get some information from a given share
* @param int $shareID
Expand Down