org\bovigo\vfs\vfsStreamWrapperQuotaTestCase::canNotTruncateToGreaterLengthWhenDiscQuotaReached PHP Метод

canNotTruncateToGreaterLengthWhenDiscQuotaReached() публичный Метод

    public function canNotTruncateToGreaterLengthWhenDiscQuotaReached()
    {
        if (version_compare(PHP_VERSION, '5.4.0', '<')) {
            $this->markTestSkipped('Requires PHP 5.4');
        }
        if (strstr(PHP_VERSION, 'hiphop') !== false) {
            $this->markTestSkipped('Not supported on hhvm');
        }
        vfsStream::newFile('bar.txt')->withContent('1234567890')->at(vfsStream::newDirectory('bar')->at($this->root));
        $fp = fopen(vfsStream::url('root/file.txt'), 'w+');
        $this->assertFalse(ftruncate($fp, 11));
        fclose($fp);
        $this->assertEquals(0, $this->root->getChild('file.txt')->size());
        $this->assertEquals('', $this->root->getChild('file.txt')->getContent());
    }