Update for {fetch} plugin

This commit is contained in:
Uwe Tews
2018-04-26 12:59:14 +02:00
parent c4f3d4fb98
commit d59e6804fc

View File

@@ -51,17 +51,18 @@ class PluginFunctionFetchTest extends PHPUnit_Smarty
} }
/** /**
* test {fetch file=...} access to file from path not aloowed by security settings * test {fetch file=...} access to file from path not aloo/wed by security settings
* *
* @expectedException SmartyException * @expectedException SmartyException
* @expectedExceptionMessage not allowed by security setting * @expectedExceptionMessage not trusted file pat
* @run InSeparateProcess * @run InSeparateProcess
* @preserveGlobalState disabled * @preserveGlobalState disabled
*/ */
public function testFetchSecurity() public function testFetchSecurity()
{ {
$this->cleanDirs();
$dir=$this->smarty->getTemplateDir(); $dir=$this->smarty->getTemplateDir();
$this->smarty->enableSecurity(); $this->smarty->enableSecurity();
$result = $this->smarty->fetch('string:{fetch file=\''. $dir[0]. '..\..\..\..\..\etc\passwd\'}'); $result = $this->smarty->fetch('string:{fetch file=\''. $dir[0]. '../../../../../etc/passwd\'}');
} }
} }