使用PHPUnit中先前测试用例的值

时间:2015-08-03 06:56:20

标签: php phpunit

我正在尝试为第一个测试函数中的变量赋值,然后在类中的其他测试函数中使用它。

现在我的代码中第二个函数由于此错误而失败:

   1) ApiAdTest::testApiAd_postedAdCreated
GuzzleHttp\Exception\ClientException: Client error: 404

我不知道为什么。这就是代码的样子:

 class ApiAdTest extends PHPUnit_Framework_TestCase
    {
        protected $adId;
        private static $base_url = 'http://10.0.0.38/adserver/src/public/';
        private static $path = 'api/ad/';

        //start of expected flow

        public function testApiAd_postAd()
        {
            $client = new Client(['base_uri' => self::$base_url]);
            $response = $client->post(self::$path, ['form_params' => [
              'name' => 'bellow content - guzzle testing'
              ]]);
            $data = json_decode($response->getBody());
            $this->adId = $data->id;

            $code = $response->getStatusCode();
            $this->assertEquals($code, 200);
        }

        public function testApiAd_postedAdCreated()
        {
            $client = new Client(['base_uri' => self::$base_url]);
            $response = $client->get(self::$path.$this->adId);
            $code = $response->getStatusCode();
            $data = json_decode($response->getBody());

            $this->assertEquals($code, 200);
            $this->assertEquals($data->id, $this->adId);
            $this->assertEquals($data->name, 'bellow content - guzzle testing');
        }

在phpunit doumintation https://phpunit.de/manual/current/en/fixtures.html我看到我可以定义一个 setUp方法中的变量,然后根据需要使用它,但在我的情况下,我只知道第一个帖子执行后的值。任何想法如何在第二个函数中使用$this->adId ??

1 个答案:

答案 0 :(得分:3)

按定义进行的单元测试不应相互依赖。你将最终得到不稳定和脆弱的测试,这些测试在他们开始失败时很难调试,因为原因在另一个测试用例中。

默认情况下,无法保证测试在PHPUnit中的执行顺序。

PHPUnit支持@depends annotation实现您的目标,但文档也有相同的警告。