attemtp to fix test
This commit is contained in:
parent
81e3ae4753
commit
87c640193b
|
@ -560,6 +560,12 @@ class EncryptionTest extends Storage {
|
|||
* @param string $strippedPath
|
||||
*/
|
||||
public function testGetHeader($path, $strippedPathExists, $strippedPath) {
|
||||
$cache = $this->getMockBuilder('\OC\Files\Cache\Cache')
|
||||
->disableOriginalConstructor()->getMock();
|
||||
$cache->expects($this->any())
|
||||
->method('get')
|
||||
->willReturn(['encrypted' => true]);
|
||||
|
||||
$sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage')
|
||||
->disableOriginalConstructor()->getMock();
|
||||
|
||||
|
@ -586,7 +592,7 @@ class EncryptionTest extends Storage {
|
|||
$this->encryptionManager, $util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
||||
]
|
||||
)
|
||||
->setMethods(['readFirstBlock', 'parseRawHeader'])
|
||||
->setMethods(['getCache','readFirstBlock', 'parseRawHeader'])
|
||||
->getMock();
|
||||
|
||||
$instance->expects($this->once())->method(('parseRawHeader'))
|
||||
|
|
Loading…
Reference in New Issue