代码之家  ›  专栏  ›  技术社区  ›  suresh

为服务类编写phpunit测试函数

  •  1
  • suresh  · 技术社区  · 6 年前

    嗨,伙计们,我正在为下面的函数创建一个phpunit测试。

    /**
     * Get file size
     *
     * @param string $filePath
     * @return int
     */
    public function getFileSize(string $filePath): int
    {
        if (!file_exists($filePath)) {
            return 0;
        }
    
        return filesize($filePath);
    }
    

    到目前为止我已经这样试过了

    /**
     * Test get file size with invalid data
     */
    public function testGetFileSizeWithValidData()
    {
        $filePath = 'rgreherher';
        $service = new Tickets_Service_ContactMomentVehicle();
        $result = $service->getFileSize($filePath);
    
        $this->assertSame($result, $filePath);
    }
    

    所以当我在终端上运行时

    <string:rgreherher> does not match expected type "integer".
    

    我犯了什么错,有人能帮我吗?

    提前谢谢。

    2 回复  |  直到 6 年前
        1
  •  1
  •   MinistryOfChaps    6 年前

    错误是告诉你到底发生了什么,你在比较一个整数( $result )一串( $filePath )

    如果我正确理解您的测试用例,您应该替换 美元票价 具有 美元票价 改为的大小。

    public function testGetFileSizeWithValidData()
    {
        $filePath = 'rgreherher';
        $filePathSize = 55; // actual file size of $filePath
    
        $service = new Tickets_Service_ContactMomentVehicle();
        $result = $service->getFileSize($filePath);
    
        $this->assertSame($result, $filePathSize);
    }
    
        2
  •  0
  •   piotrq    6 年前

    在测试中,假设文件存在,但如果不存在,则必须记住php函数 filesize (在函数getfilesize中)返回false,如果没有文件,则生成e_警告。

    推荐文章