diff options
author | Robin Appelman <robin@icewind.nl> | 2024-10-02 17:00:53 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-10-29 10:36:33 +0000 |
commit | accf7076591bfee843a00a5f2bab7c648f6eb453 (patch) | |
tree | 8299f7a36b7b14dcfb85120ce18ab1f5c7a0c7e0 | |
parent | e18de3aac0f7b9238461b8f5d21dc11765421c60 (diff) | |
download | nextcloud-server-backport/47847/stable28.tar.gz nextcloud-server-backport/47847/stable28.zip |
test: add test for nested jail cross-storage movebackport/47847/stable28
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | tests/lib/Files/Storage/LocalTest.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/lib/Files/Storage/LocalTest.php b/tests/lib/Files/Storage/LocalTest.php index 1190a2b2da0..adee2e8253d 100644 --- a/tests/lib/Files/Storage/LocalTest.php +++ b/tests/lib/Files/Storage/LocalTest.php @@ -22,6 +22,8 @@ namespace Test\Files\Storage; +use OC\Files\Storage\Wrapper\Jail; + /** * Class LocalTest * @@ -150,4 +152,25 @@ class LocalTest extends Storage { // no exception thrown $this->assertNotNull($this->instance); } + + public function testMoveNestedJail(): void { + $this->instance->mkdir('foo'); + $this->instance->mkdir('foo/bar'); + $this->instance->mkdir('target'); + $this->instance->file_put_contents('foo/bar/file.txt', 'foo'); + $jail1 = new Jail([ + 'storage' => $this->instance, + 'root' => 'foo' + ]); + $jail2 = new Jail([ + 'storage' => $jail1, + 'root' => 'bar' + ]); + $jail3 = new Jail([ + 'storage' => $this->instance, + 'root' => 'target' + ]); + $jail3->moveFromStorage($jail2, 'file.txt', 'file.txt'); + $this->assertTrue($this->instance->file_exists('target/file.txt')); + } } |