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