You are here

public function vfsStreamWrapperFileTimesTestCase::fileGetContentsChangesAttributeTimeOnly in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTimesTestCase.php \org\bovigo\vfs\vfsStreamWrapperFileTimesTestCase::fileGetContentsChangesAttributeTimeOnly()

@test @group issue_7 @group issue_26

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTimesTestCase.php, line 90

Class

vfsStreamWrapperFileTimesTestCase
Test for org\bovigo\vfs\vfsStreamWrapper.

Namespace

org\bovigo\vfs

Code

public function fileGetContentsChangesAttributeTimeOnly() {
  $file = vfsStream::newFile('foo.txt')
    ->withContent('test')
    ->at(vfsStreamWrapper::getRoot())
    ->lastModified(100)
    ->lastAccessed(100)
    ->lastAttributeModified(100);
  file_get_contents($this->fooUrl);
  $this
    ->assertGreaterThan(time() - 2, fileatime($this->fooUrl));
  $this
    ->assertLessThanOrEqual(time(), fileatime($this->fooUrl));
  $this
    ->assertLessThanOrEqual(100, filemtime($this->fooUrl));
  $this
    ->assertEquals(100, filectime($this->fooUrl));
  $this
    ->assertFileTimesEqualStreamTimes($this->fooUrl, $file);
}