热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

验证PHPUnit中的HTTP响应代码

如何解决《验证PHPUnit中的HTTP响应代码》经验,为你挑选了1个好方法。

我正在为返回HTTP响应代码的几种方法编写单元测试。我找不到断言HTTP响应代码的方法。也许我缺少明显的东西,或者我误解了有关PHPUnit的东西。

我正在使用PHPUnit 4.5稳定版。

类消息的相关部分:

public function validate() {
  // Decode JSON to array.
  if (!$json = json_decode($this->read(), TRUE)) {      
    return http_response_code(415);
  }
  return $json;
}

// Abstracted file_get_contents a bit to facilitate unit testing.
public $_file_input = 'php://input';

public function read() {
  return file_get_contents($this->_file_input);
}

单元测试:

// Load invalid JSON file and verify that validate() fails.
public function testValidateWhenInvalid() {
  $stub1 = $this->getMockForAbstractClass('Message');
  $path =  __DIR__ . '/testDataMalformed.json';
  $stub1->_file_input = $path;
  $result = $stub1->validate();
  // At this point, we have decoded the JSON file inside validate() and have expected it to fail.
  // Validate that the return value from HTTP 415.
  $this->assertEquals('415', $result);
}

PHPUnit返回:

1) MessageTest::testValidateWhenInvalid
Failed asserting that 'true' matches expected '415'.

我不确定为什么$ result返回'true'。。。特别是作为字符串值。同样不确定我的“预期”论点应该是什么。



1> Crackertasti..:

根据文档,您可以http_response_code()不带任何参数的方法调用以接收当前响应代码。


因此,您的测试应如下所示:

public function testValidateWhenInvalid() {
    $stub1 = $this->getMockForAbstractClass('Message');
    $path =  __DIR__ . '/testDataMalformed.json';
    $stub1->_file_input = $path;
    $result = $stub1->validate();
    // At this point, we have decoded the JSON file inside validate() and have expected it to fail.
    // Validate that the return value from HTTP 415.
    $this->assertEquals(415, http_response_code()); //Note you will get an int for the return value, not a string
}


推荐阅读
author-avatar
dengru42
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有