可选的PHP类型提示/检查单元测试或静态分析?
作者:互联网
PHP类型提示不支持标量变量[1],如int或string
但是,我们发现在连续集成期间注释函数中的类型(int或string)以发现错误仍然非常有用,例如:
目前我用的方法就像
function foo($s) {
//assert( is_string($s), 'not a string' );
...
}
在单元测试和开发模式期间,断言将被取消注释以发现潜在的错误.
我在寻找是否有更好的方法来做到这一点.
[1] http://www.php.net/manual/en/language.oop5.typehinting.php
解决方法:
一个有趣而优雅的解决方案是AOP.您可以从代码中删除所有断言并开始使用这样的标准phpdoc:
/**
* @param string $s
*/
function foo($s) {
...
}
然后在单元测试和开发模式中使用AOP框架,如下所示:
http://go.aopphp.com/blog/2013/02/11/aspect-oriented-framework-for-php/
从他们的文件:
…with the help of 10-20 lines of code we can intercept all the
public, protected and static methods in all the classes of
application…
您可以使用它来动态拦截所有方法,读取agruments,获取ReflectionMethod对象,解析类型相关的注释并执行运行时检查.这听起来很复杂,但这很容易做到.
结果:在每个包含的PHP文件的测试过程中会占用一些运行时资源(不多),但对于你的代码库来说它看起来会更好(更干净).
标签:php,unit-testing,static-analysis,type-hinting,design-by-contract 来源: https://codeday.me/bug/20190624/1278241.html