aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit/Upload
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2019-03-12 13:38:45 +0100
committerRobin Appelman <robin@icewind.nl>2019-03-13 16:32:18 +0100
commit6a47f924fca8c262129abba04772a8859871c9ba (patch)
tree457a26e46d15ccebb29c4ddaf72673ee826a9a7d /apps/dav/tests/unit/Upload
parentaff13a20721765b51108c14e4bba1916f4ba59a7 (diff)
downloadnextcloud-server-6a47f924fca8c262129abba04772a8859871c9ba.tar.gz
nextcloud-server-6a47f924fca8c262129abba04772a8859871c9ba.zip
make assemblystream seekable
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/dav/tests/unit/Upload')
-rw-r--r--apps/dav/tests/unit/Upload/AssemblyStreamTest.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/Upload/AssemblyStreamTest.php b/apps/dav/tests/unit/Upload/AssemblyStreamTest.php
index de60b94168e..0ac9cbb234e 100644
--- a/apps/dav/tests/unit/Upload/AssemblyStreamTest.php
+++ b/apps/dav/tests/unit/Upload/AssemblyStreamTest.php
@@ -54,6 +54,21 @@ class AssemblyStreamTest extends \Test\TestCase {
$this->assertEquals($expected, $content);
}
+ /**
+ * @dataProvider providesNodes()
+ */
+ public function testSeek($expected, $nodes) {
+ $stream = \OCA\DAV\Upload\AssemblyStream::wrap($nodes);
+
+ $offset = floor(strlen($expected) * 0.6);
+ if(fseek($stream, $offset) === -1) {
+ $this->fail('fseek failed');
+ }
+
+ $content = stream_get_contents($stream);
+ $this->assertEquals(substr($expected, $offset), $content);
+ }
+
function providesNodes() {
$data8k = $this->makeData(8192);
$dataLess8k = $this->makeData(8191);