public function vfsStreamWrapperFileTimesTestCase::openFileChangesAttributeTimeOnly in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTimesTestCase.php \org\bovigo\vfs\vfsStreamWrapperFileTimesTestCase::openFileChangesAttributeTimeOnly()
@test @group issue_7 @group issue_26
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperFileTimesTestCase.php, line 69
Class
Namespace
org\bovigo\vfsCode
public function openFileChangesAttributeTimeOnly() {
$file = vfsStream::newFile('foo.txt')
->withContent('test')
->at(vfsStreamWrapper::getRoot())
->lastModified(100)
->lastAccessed(100)
->lastAttributeModified(100);
fclose(fopen($this->fooUrl, 'rb'));
$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);
}