2015-06-15 15:20:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015 Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\App;
|
|
|
|
|
|
|
|
use OC;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class CodeCheckVisitor extends TestCase {
|
|
|
|
|
|
|
|
public function providesFilesToCheck() {
|
|
|
|
return [
|
|
|
|
['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 providesFilesToCheck
|
|
|
|
* @param string $expectedErrorToken
|
|
|
|
* @param int $expectedErrorCode
|
|
|
|
* @param string $fileToVerify
|
|
|
|
*/
|
|
|
|
public function testFindInvalidUsage($expectedErrorToken, $expectedErrorCode, $fileToVerify) {
|
|
|
|
$checker = new \Test\App\Mock\CodeChecker();
|
|
|
|
$errors = $checker->analyseFile(OC::$SERVERROOT . "/tests/data/app/code-checker/$fileToVerify");
|
|
|
|
|
|
|
|
$this->assertEquals(1, count($errors));
|
|
|
|
$this->assertEquals($expectedErrorCode, $errors[0]['errorCode']);
|
|
|
|
$this->assertEquals($expectedErrorToken, $errors[0]['disallowedToken']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providesConstantsToCheck() {
|
|
|
|
return [
|
|
|
|
['OCP\NamespaceName\ClassName::CONSTANT_NAME', 1003, 'test-deprecated-constant.php'],
|
2015-06-15 15:50:37 +00:00
|
|
|
['Alias::CONSTANT_NAME', 1003, 'test-deprecated-constant-alias.php'],
|
2015-06-15 15:20:38 +00:00
|
|
|
['NamespaceName\ClassName::CONSTANT_NAME', 1003, 'test-deprecated-constant-sub.php'],
|
2015-06-15 15:50:37 +00:00
|
|
|
['SubAlias\ClassName::CONSTANT_NAME', 1003, 'test-deprecated-constant-sub-alias.php'],
|
2015-06-15 15:20:38 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providesConstantsToCheck
|
|
|
|
* @param string $expectedErrorToken
|
|
|
|
* @param int $expectedErrorCode
|
|
|
|
* @param string $fileToVerify
|
|
|
|
*/
|
|
|
|
public function testConstantsToCheck($expectedErrorToken, $expectedErrorCode, $fileToVerify) {
|
|
|
|
$checker = new \Test\App\Mock\CodeChecker();
|
|
|
|
$errors = $checker->analyseFile(OC::$SERVERROOT . "/tests/data/app/code-checker/$fileToVerify");
|
|
|
|
|
|
|
|
$this->assertEquals(1, count($errors));
|
|
|
|
$this->assertEquals($expectedErrorCode, $errors[0]['errorCode']);
|
|
|
|
$this->assertEquals($expectedErrorToken, $errors[0]['disallowedToken']);
|
|
|
|
}
|
2015-06-15 15:50:37 +00:00
|
|
|
|
|
|
|
public function providesFunctionsToCheck() {
|
|
|
|
return [
|
|
|
|
['OCP\NamespaceName\ClassName::functionName', 1002, 'test-deprecated-function.php'],
|
|
|
|
['Alias::functionName', 1002, 'test-deprecated-function-alias.php'],
|
|
|
|
['NamespaceName\ClassName::functionName', 1002, 'test-deprecated-function-sub.php'],
|
|
|
|
['SubAlias\ClassName::functionName', 1002, 'test-deprecated-function-sub-alias.php'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providesFunctionsToCheck
|
|
|
|
* @param string $expectedErrorToken
|
|
|
|
* @param int $expectedErrorCode
|
|
|
|
* @param string $fileToVerify
|
|
|
|
*/
|
|
|
|
public function testFunctionsToCheck($expectedErrorToken, $expectedErrorCode, $fileToVerify) {
|
|
|
|
$checker = new \Test\App\Mock\CodeChecker();
|
|
|
|
$errors = $checker->analyseFile(OC::$SERVERROOT . "/tests/data/app/code-checker/$fileToVerify");
|
|
|
|
|
|
|
|
$this->assertEquals(1, count($errors));
|
|
|
|
$this->assertEquals($expectedErrorCode, $errors[0]['errorCode']);
|
|
|
|
$this->assertEquals($expectedErrorToken, $errors[0]['disallowedToken']);
|
|
|
|
}
|
2015-06-15 15:20:38 +00:00
|
|
|
}
|