PHPUnit:如何模拟这个文件系统?

2022-08-31 01:08:27

请考虑以下方案(这不是生产代码):

 class MyClass {
    public function myMethod() {
        // create a directory
        $path = sys_get_temp_dir() . '/' . md5(rand());
        if(!mkdir($path)) {
            throw new Exception("mkdir() failed.");
        }

        // create a file in that folder
        $myFile = fopen("$path/myFile.txt", "w");
        if(!$myFile) {
            throw new Exception("Cannot open file handle.");
        }
    }
}

是的,那么问题出在哪里呢?代码覆盖率报告此行未覆盖:

throw new Exception("Cannot open file handle.");

这是正确的,但是由于我在逻辑上创建了上面的文件夹,因此似乎不可能失败(除非在极端情况下,例如磁盘为100%)。fopen()

我可以忽略代码覆盖率中的代码,但这是一种作弊。有没有办法模拟文件系统,以便它可以识别和模拟无法创建文件的文件系统?myFile.txt


答案 1

vfsStream是一个在单元测试中有用的论坛,用于模拟真实的文件系统。您可以从作曲家安装它。stream wrappervirtual filesystem

更多信息请见:

https://github.com/mikey179/vfsStream

https://phpunit.de/manual/current/en/test-doubles.html


答案 2

您还可以将函数分解为 2 种方法,一个用于创建路径,另一个用于使用它。然后,可以进行单独的测试以确保创建路径。第二组测试可以在您尝试使用错误路径时检查并捕获异常。


推荐