aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/SimpleFileTest.php
blob: 6edca5ecc81e046d8f06e4446c9b7d1d5c19576f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

namespace Sabre\DAV;

class SimpleFileTest extends \PHPUnit\Framework\TestCase
{
    public function testAll()
    {
        $file = new SimpleFile('filename.txt', 'contents', 'text/plain');

        $this->assertEquals('filename.txt', $file->getName());
        $this->assertEquals('contents', $file->get());
        $this->assertEquals(8, $file->getSize());
        $this->assertEquals('"'.sha1('contents').'"', $file->getETag());
        $this->assertEquals('text/plain', $file->getContentType());
    }
}