Example #1
0
	/**
	 * Test the getFilenameHash method
	 */
	public function testGetFilenameHash() {
		$file = new \Core\Filestore\Backends\FileLocal('core/tests/updater-testdocument.txt');

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