当前位置:首页 > PHP教程 > php高级应用 > 列表

浅谈如何提高PHP代码质量之端到端集成测试

发布:smiling 来源: PHP粉丝网  添加日期:2022-04-30 12:16:38 浏览: 评论:0 

在本系列的前几部分中,我们建立了一个构建工具,一些静态代码分析器,并开始编写单元测试。为了使我们的测试堆栈更完整,有一些测试可以检查你的代码是否在真实环境中运行,以及它是否能在更复杂的业务场景中运行良好。

概述

在这里,我们可以使用为行为驱动开发构建的工具——官方 PHP 的 Cucumber 实现——Behat。我们可以通过运行以下代码来安装它:

$ php composer.phar require --dev behat/behat

增加一个目标到 build.xml(在本文的第一部分中描述了 Phing 设置)

  1. <target name="behat"> 
  2.     <exec executable="bin/behat" passthru="true" checkreturn="true" /> 
  3. </target>… 
  4. <target name="run" depends="phpcs,phpcpd,phan,phpspec,behat" /> 

然后,你应该为文件 features/price.feature 的测试创建一个规范。

Feature: Price Comparison In order to compare prices As a customer I need to break the currency barrier Scenario: Compare EUR and PLN Given I use nbp.pl comparator When I compare “100EUR” and “100PLN” Then It should return some result

这个测试场景非常容易阅读,并且应该给你一个关于该特性应该如何工作的良好印象。不幸的是,计算机通常并不真正理解人类语言,所以现在是为每一步编写代码的时候了。

你可以通过运行 ./bin/behat-init 来生成它的代码模板,它应该会创建一个这样的类:

  1. //features/bootstrap/FeatureContext.php use Behat\Behat\Context\SnippetAcceptingContext; 
  2. use Behat\Gherkin\Node\PyStringNode; 
  3. use Behat\Gherkin\Node\TableNode; 
  4. class FeatureContext implements SnippetAcceptingContext{ 
  5.     /** * Initializes context. */ public function __construct() { } 

然后你可以执行:

$ bin/behat --dry-run --append-snippets

Behat 将自动为场景中定义的每个步骤创建函数。

现在你可以通过填充函数的主体来开始实现真正的检查:

  1. // features/bootstrap/FeatureContext.php 
  2. <?php 
  3. use Behat\Behat\Context\Context; 
  4. use Domain\Price;use Domain\PriceComparator; 
  5. use Infrastructure\NBPPriceConverter; 
  6. /*** Defines application features from the specific context.*/ 
  7. class FeatureContext implements Context{ 
  8.     /** @var PriceComparator */ 
  9.     private $priceComparator
  10.     /** @var int */ 
  11.     private $result;  
  12.     /** * Initializes context. *  
  13.     * Every scenario gets its own context instance. 
  14.     * You can also pass arbitrary arguments to the* context constructor through behat.yml. */ 
  15.     public function __construct() {  
  16.           
  17.     }  
  18.     /** * @Given I use nbp.pl comparator */ 
  19.     public function iUseNbpPlComparator() { 
  20.         $this->priceComparator = new PriceComparator(new NBPPriceConverter()); 
  21.     }  
  22.     /** * @When I compare :price1 and :price2 */ 
  23.     public function iCompareAnd($price1$price2) { 
  24.         preg_match('/(\d+)([A-Z]+)/'$price1$match1);  
  25.         preg_match('/(\d+)([A-Z]+)/'$price2$match2); 
  26.         $price1 = new Price($match1[1], $match1[2]); 
  27.         $price2 = new Price($match2[1], $match2[2]); 
  28.         $this->result = $this->priceComparator->compare($price1$price2);  
  29.     }  
  30.     /** * @Then It should return some result */ 
  31.     public function itShouldReturnSomeResult() { 
  32.         if (!is_int($this->result)) { 
  33.             throw new \DomainException('Returned value is not integer'); 
  34.         }  
  35.     } 

最后,使用 ./bin/phing 运行所有的测试。你应该得到以下结果:

Buildfile: /home/maciej/workspace/php-testing/build.xmlMyProject > phpcs: MyProject > phpcpd: phpcpd 4.0.0 by Sebastian Bergmann.0.00% duplicated lines out of 103 total lines of code. Time: 17 ms, Memory: 4.00MB MyProject > phan: MyProject > phpspec: / skipped: 0% / pending: 0% / passed: 100% / failed: 0% / broken: 0% / 3 examples2 specs3 examples (3 passed)15ms MyProject > behat: Feature: Price Comparison In order to compare prices As a customer I need to break the currency barrier Scenario: Compare EUR and PLN # features/price.feature:6 Given I use nbp.pl comparator # FeatureContext::iUseNbpPlComparator() When I compare "100EUR" and "100PLN" # FeatureContext::iCompareAnd() Then It should return some result # FeatureContext::itShouldReturnSomeResult()1 scenario (1 passed)3 steps (3 passed)0m0.01s (9.13Mb) MyProject > run: BUILD FINISHED Total time: 1.1000 second

正如你所看到的,Behat 准备了一份很好的报告,说明我们的应用程序做了什么,结果是什么。下一次,当项目经理询问你在测试中涉及到哪些场景时,你可以给他一个 Behat 输出!

1、测试的结构

每个测试都包括:

对该场景的一些准备,用“Given”部分表示

“When”部分所涵盖的一些动作

一些检查被标记为“Then”部分

每个部分都可以包含多个与“And”关键字连接的步骤:

Scenario: Compare EUR and PLN Given nbp.pl comparator is available And I use nbp.pl comparator When I compare "100EUR" and "100PLN" And I save the result Then It should return some result And the first amount should be greater

2、上下文

Behat 允许你为你的测试定义多个上下文。这意味着你可以将步骤代码分割成多个类,并从不同的角度去测试你的场景。

你可以例如:为 web 上下文编写代码,它将使用你的应用程序 HTTP 控制器运行你的测试步骤。你还可以创建“domain”上下文,它将只使用 PHP API 调用来运行你的业务逻辑。通过这种方式,你可以单独地测试业务逻辑集成,从端到端应用程序测试。

关于如何在 Behat 建立许多上下文的更多信息,请参考http://behat.org/en/latest/userguide/context.html的文档。

3、如何使用Behat

正如一开始所提到的,你可以使用 Behat 进行集成测试。通常情况下,你的代码依赖于一些外部的第三方系统。当我们在第 2 部分中编写单元测试时,我们总是假设外部依赖关系像预期的那样工作。使用 Behat,你可以编写测试场景,它将自动运行你的代码,并检查它是否正确地使用真实场景的服务。

最重要的是,Behat 对于测试系统使用的复杂的端到端场景非常有用。它允许你隐藏在一个可读性的名字后面运行测试步骤所需的复杂代码,并编写一个人人都能理解的场景。

总结

从以上的文章中,你已经学习了如何在你的项目中设置六个有用的工具:

PHing 用于运行你的构建

PHPCS 用于自动检查代码格式

PHPCPD 用于检测重复代码的

Phan 用于高级静态代码分析

PHPSpec 用于单元测试

Behat 用于端到端和集成测试

现在,你可以向 git 提交钩子添加 ./bin/phing,并设置持续集成来运行每个提交的测试。

是不是突然之间,没有什么能阻止你写出高质量的 PHP 代码!

Tags: PHP代码质量 PHP端集成测试

分享到: