Esempio n. 1
0
	/**
	 * Test the getFilenameHash method
	 */
	public function testGetFilenameHash() {
		$file = new \Core\Filestore\Backends\FileRemote($this->_testfile);

		// For local files, this should be base64:[b64-of-full-filename]
		$this->assertEquals('base64:' . base64_encode($file->getFilename()), $file->getFilenameHash());
	}