aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php')
-rw-r--r--vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php99
1 files changed, 0 insertions, 99 deletions
diff --git a/vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php b/vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php
deleted file mode 100644
index 2b759e5d0..000000000
--- a/vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php
+++ /dev/null
@@ -1,99 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Sabre\DAV\FSExt;
-
-class FileTest extends \PHPUnit\Framework\TestCase
-{
- public function setup(): void
- {
- file_put_contents(SABRE_TEMPDIR.'/file.txt', 'Contents');
- }
-
- public function teardown(): void
- {
- \Sabre\TestUtil::clearTempDir();
- }
-
- public function testPut()
- {
- $filename = SABRE_TEMPDIR.'/file.txt';
- $file = new File($filename);
- $result = $file->put('New contents');
-
- $this->assertEquals('New contents', file_get_contents(SABRE_TEMPDIR.'/file.txt'));
- $this->assertEquals(
- '"'.
- sha1(
- fileinode($filename).
- filesize($filename).
- filemtime($filename)
- ).'"',
- $result
- );
- }
-
- public function testRange()
- {
- $file = new File(SABRE_TEMPDIR.'/file.txt');
- $file->put('0000000');
- $file->patch('111', 2, 3);
-
- $this->assertEquals('0001110', file_get_contents(SABRE_TEMPDIR.'/file.txt'));
- }
-
- public function testRangeStream()
- {
- $stream = fopen('php://memory', 'r+');
- fwrite($stream, '222');
- rewind($stream);
-
- $file = new File(SABRE_TEMPDIR.'/file.txt');
- $file->put('0000000');
- $file->patch($stream, 2, 3);
-
- $this->assertEquals('0002220', file_get_contents(SABRE_TEMPDIR.'/file.txt'));
- }
-
- public function testGet()
- {
- $file = new File(SABRE_TEMPDIR.'/file.txt');
- $this->assertEquals('Contents', stream_get_contents($file->get()));
- }
-
- public function testDelete()
- {
- $file = new File(SABRE_TEMPDIR.'/file.txt');
- $file->delete();
-
- $this->assertFalse(file_exists(SABRE_TEMPDIR.'/file.txt'));
- }
-
- public function testGetETag()
- {
- $filename = SABRE_TEMPDIR.'/file.txt';
- $file = new File($filename);
- $this->assertEquals(
- '"'.
- sha1(
- fileinode($filename).
- filesize($filename).
- filemtime($filename)
- ).'"',
- $file->getETag()
- );
- }
-
- public function testGetContentType()
- {
- $file = new File(SABRE_TEMPDIR.'/file.txt');
- $this->assertNull($file->getContentType());
- }
-
- public function testGetSize()
- {
- $file = new File(SABRE_TEMPDIR.'/file.txt');
- $this->assertEquals(8, $file->getSize());
- }
-}