예제 #1
0
 function testGetPathToRealFile()
 {
     // the relative path to /user/files/ that's what we want to get from getPathToRealFile()
     $relativePath = "foo/bar/test.txt";
     // test paths
     $versionPath = "/user/files_versions/foo/bar/test.txt.v456756835";
     $cachePath = "/user/cache/transferid636483/foo/bar/test.txt";
     $this->assertEquals($relativePath, Encryption\Helper::getPathToRealFile($versionPath));
     $this->assertEquals($relativePath, Encryption\Helper::getPathToRealFile($cachePath));
 }