1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/ForbiddenCodeTest.php

56 lines
1.4 KiB
PHP
Raw Normal View History

2016-12-12 05:41:11 +01:00
<?php
namespace Psalm\Tests;
class ForbiddenCodeTest extends TestCase
2016-12-12 05:41:11 +01:00
{
use Traits\FileCheckerInvalidCodeParseTestTrait;
use Traits\FileCheckerValidCodeParseTestTrait;
2016-12-12 05:41:11 +01:00
/**
* @return array
2016-12-12 05:41:11 +01:00
*/
public function providerFileCheckerInvalidCodeParse()
2016-12-12 05:41:11 +01:00
{
return [
'varDump' => [
'<?php
var_dump("hello");',
2017-05-27 02:05:57 +02:00
'error_message' => 'ForbiddenCode',
],
'execTicks' => [
'<?php
`rm -rf`;',
2017-05-27 02:05:57 +02:00
'error_message' => 'ForbiddenCode',
],
'exec' => [
'<?php
shell_exec("rm -rf");',
2017-05-27 02:05:57 +02:00
'error_message' => 'ForbiddenCode',
],
];
2016-12-12 05:41:11 +01:00
}
/**
* @return array
*/
public function providerFileCheckerValidCodeParse()
{
return [
'execWithSuppression' => [
'<?php
@exec("pwd 2>&1", $output, $returnValue);
if ($returnValue === 0) {
echo "success";
}',
],
'execWithoutSuppression' => [
'<?php
exec("pwd 2>&1", $output, $returnValue);
if ($returnValue === 0) {
echo "success";
}',
],
];
}
2016-12-12 05:41:11 +01:00
}