diff options
Diffstat (limited to 'tests/lib/Files/Stream/DummyEncryptionWrapper.php')
-rw-r--r-- | tests/lib/Files/Stream/DummyEncryptionWrapper.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/lib/Files/Stream/DummyEncryptionWrapper.php b/tests/lib/Files/Stream/DummyEncryptionWrapper.php new file mode 100644 index 00000000000..89904e6de73 --- /dev/null +++ b/tests/lib/Files/Stream/DummyEncryptionWrapper.php @@ -0,0 +1,23 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2016 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ + +namespace Test\Files\Stream; + +use OC\Files\Stream\Encryption; + +class DummyEncryptionWrapper extends Encryption { + /** + * simulate a non-seekable stream wrapper by always return false + * + * @param int $position + * @return bool + */ + protected function parentStreamSeek($position) { + return false; + } +} |