Browse Source

Correctly handle use statements

tags/v8.2beta1
Joas Schilling 9 years ago
parent
commit
d2fc1b2302

+ 1
- 0
lib/private/app/codechecker.php View File

@@ -43,6 +43,7 @@ class CodeChecker extends BasicEmitter {
const CLASS_CONST_FETCH_NOT_ALLOWED = 1003;
const CLASS_NEW_FETCH_NOT_ALLOWED = 1004;
const OP_OPERATOR_USAGE_DISCOURAGED = 1005;
const CLASS_USE_NOT_ALLOWED = 1006;

/** @var Parser */
private $parser;

+ 41
- 3
lib/private/app/codecheckvisitor.php View File

@@ -43,7 +43,12 @@ class CodeCheckVisitor extends NodeVisitorAbstract {
*/
public function __construct($blackListDescription, $blackListedClassNames, $checkEqualOperatorUsage) {
$this->blackListDescription = $blackListDescription;
$this->blackListedClassNames = array_map('strtolower', $blackListedClassNames);

$this->blackListedClassNames = [];
foreach ($blackListedClassNames as $class) {
$class = strtolower($class);
$this->blackListedClassNames[$class] = $class;
}
$this->checkEqualOperatorUsage = $checkEqualOperatorUsage;

$this->errorMessages = [
@@ -52,6 +57,7 @@ class CodeCheckVisitor extends NodeVisitorAbstract {
CodeChecker::STATIC_CALL_NOT_ALLOWED => "Static method of {$this->blackListDescription} class must not be called",
CodeChecker::CLASS_CONST_FETCH_NOT_ALLOWED => "Constant of {$this->blackListDescription} class must not not be fetched",
CodeChecker::CLASS_NEW_FETCH_NOT_ALLOWED => "{$this->blackListDescription} class must not be instanciated",
CodeChecker::CLASS_USE_NOT_ALLOWED => "{$this->blackListDescription} class must not be imported with a use statement",

CodeChecker::OP_OPERATOR_USAGE_DISCOURAGED => "is discouraged",
];
@@ -127,15 +133,47 @@ class CodeCheckVisitor extends NodeVisitorAbstract {
}
}
}
if ($node instanceof Node\Stmt\UseUse) {
$this->checkBlackList($node->name->toString(), CodeChecker::CLASS_USE_NOT_ALLOWED, $node);
if ($node->alias) {
$this->addUseNameToBlackList($node->name->toString(), $node->alias);
} else {
$this->addUseNameToBlackList($node->name->toString(), $node->name->getLast());
}
}
}

/**
* Check whether an alias was introduced for a namespace of a blacklisted class
*
* Example:
* - Blacklist entry: OCP\AppFramework\IApi
* - Name: OCP\AppFramework
* - Alias: OAF
* => new blacklist entry: OAF\IApi
*
* @param string $name
* @param string $alias
*/
private function addUseNameToBlackList($name, $alias) {
$name = strtolower($name);
$alias = strtolower($alias);

foreach ($this->blackListedClassNames as $blackListedAlias => $blackListedClassName) {
if (strpos($blackListedClassName, $name . '\\') === 0) {
$aliasedClassName = str_replace($name, $alias, $blackListedClassName);
$this->blackListedClassNames[$aliasedClassName] = $blackListedClassName;
}
}
}

private function checkBlackList($name, $errorCode, Node $node) {
if (in_array(strtolower($name), $this->blackListedClassNames)) {
if (isset($this->blackListedClassNames[strtolower($name)])) {
$this->errors[]= [
'disallowedToken' => $name,
'errorCode' => $errorCode,
'line' => $node->getLine(),
'reason' => $this->buildReason($name, $errorCode)
'reason' => $this->buildReason($this->blackListedClassNames[strtolower($name)], $errorCode)
];
}
}

+ 9
- 0
tests/data/app/code-checker/test-deprecated-use-alias.php View File

@@ -0,0 +1,9 @@
<?php

use OCP\AppFramework\IApi as OAFIA;

/**
* Class BadClass - creating an instance of a blacklisted class is not allowed
*/
class BadClass implements OAFIA {
}

+ 9
- 0
tests/data/app/code-checker/test-deprecated-use-sub-alias.php View File

@@ -0,0 +1,9 @@
<?php

use OCP\AppFramework as OAF;

/**
* Class BadClass - creating an instance of a blacklisted class is not allowed
*/
class BadClass implements OAF\IApi {
}

+ 9
- 0
tests/data/app/code-checker/test-deprecated-use-sub.php View File

@@ -0,0 +1,9 @@
<?php

use OCP\AppFramework;

/**
* Class BadClass - creating an instance of a blacklisted class is not allowed
*/
class BadClass implements AppFramework\IApi {
}

+ 9
- 0
tests/data/app/code-checker/test-deprecated-use.php View File

@@ -0,0 +1,9 @@
<?php

use OCP\AppFramework\IApi;

/**
* Class BadClass - creating an instance of a blacklisted class is not allowed
*/
class BadClass implements IApi {
}

+ 12
- 0
tests/data/app/code-checker/test-use.php View File

@@ -0,0 +1,12 @@
<?php

use OC_AppConfig as UseConfig;

/**
* Class BadClass - creating an instance of a blacklisted class is not allowed
*/
class BadClass {
public function foo() {
$bar = new UseConfig();
}
}

+ 5
- 4
tests/lib/app/codechecker.php View File

@@ -15,9 +15,9 @@ class CodeChecker extends TestCase {

/**
* @dataProvider providesFilesToCheck
* @param $expectedErrorToken
* @param $expectedErrorCode
* @param $fileToVerify
* @param string $expectedErrorToken
* @param int $expectedErrorCode
* @param string $fileToVerify
*/
public function testFindInvalidUsage($expectedErrorToken, $expectedErrorCode, $fileToVerify) {
$checker = new OC\App\CodeChecker();
@@ -35,12 +35,13 @@ class CodeChecker extends TestCase {
['OC_App', 1002, 'test-static-call.php'],
['OC_API', 1003, 'test-const.php'],
['OC_AppConfig', 1004, 'test-new.php'],
['OC_AppConfig', 1006, 'test-use.php'],
];
}

/**
* @dataProvider validFilesData
* @param $fileToVerify
* @param string $fileToVerify
*/
public function testPassValidUsage($fileToVerify) {
$checker = new OC\App\CodeChecker();

+ 9
- 4
tests/lib/app/deprecationcodechecker.php View File

@@ -15,9 +15,9 @@ class DeprecationCodeChecker extends TestCase {

/**
* @dataProvider providesFilesToCheck
* @param $expectedErrorToken
* @param $expectedErrorCode
* @param $fileToVerify
* @param string $expectedErrorToken
* @param int $expectedErrorCode
* @param string $fileToVerify
*/
public function testFindInvalidUsage($expectedErrorToken, $expectedErrorCode, $fileToVerify) {
$checker = new \OC\App\DeprecationCodeChecker();
@@ -32,12 +32,16 @@ class DeprecationCodeChecker extends TestCase {
return [
['==', 1005, 'test-equal.php'],
['!=', 1005, 'test-not-equal.php'],
['OCP\AppFramework\IApi', 1006, 'test-deprecated-use.php'],
['OCP\AppFramework\IApi', 1006, 'test-deprecated-use-alias.php'],
['AppFramework\IApi', 1001, 'test-deprecated-use-sub.php'],
['OAF\IApi', 1001, 'test-deprecated-use-sub-alias.php'],
];
}

/**
* @dataProvider validFilesData
* @param $fileToVerify
* @param string $fileToVerify
*/
public function testPassValidUsage($fileToVerify) {
$checker = new \OC\App\DeprecationCodeChecker();
@@ -53,6 +57,7 @@ class DeprecationCodeChecker extends TestCase {
['test-static-call.php'],
['test-const.php'],
['test-new.php'],
['test-use.php'],
['test-identical-operator.php'],
];
}

Loading…
Cancel
Save