示例#1
0
 /**
  * @test
  */
 public function testGetLinkInfo()
 {
     $file = new Filesystem();
     $dir = static::getTempPath(__FUNCTION__);
     mkdir($dir);
     $filename = rand(1, 10) . rand(0, getrandmax());
     $filename2 = rand(1, 10) . rand(0, getrandmax());
     $path1 = $dir . DIRECTORY_SEPARATOR . $filename;
     $path2 = $dir . DIRECTORY_SEPARATOR . $filename2;
     touch($path1);
     $file->createSymbolicLink($path1, $path2);
     $this->assertEquals(true, is_link($path2));
     $this->assertEquals(2049, $file->getLinkInfo($path1));
 }