使用PHPUnit测试应用程序时,我遇到路径问题。我有一个名为UserControllerTest
的测试:
<?php
require_once __DIR__ . "/../../Controllers/UserController.php";
class UserControllerTest extends \PHPUnit_Framework_TestCase {
private $controller;
protected function setUp() {
$this->controller = new UserController();
}
public function testThatCanGeneratePromoCode() {
$promoCode = $this->controller->generatePromoCode();
$this->assertEquals(20, strlen($promoCode));
}
}
哪个正在测试UserController
类:
<?php
require_once "../config/DbConnection.php";
require_once "../Model/ConsumerModel.php";
require_once "../Managers/UtilManager.php";
class UserController {
private $dbh;
private $utilManager;
private $model;
/**
* UserController constructor.
* @param null|ConsumerModel $model
* @internal param $dbh
*/
public function __construct(ConsumerModel $model = null) {
$this->dbh = new DbConnection();
$this->utilManager = new UtilManager();
$this->model = $model;
}
public function generatePromoCode() {
$length = 20;
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters);
$randomString = '';
for ($i = 0; $i < $length; $i++) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
return $randomString;
}
}
我在运行测试时遇到此错误:
PHP Warning: require_once(../config/DbConnection.php): failed to open stream: No such file or directory in C:\Users\MrDan\Documents\code\twinportrait-api\Controllers\UserController.php on line 3
但是,如果我对require_once __DIR__ .
类中的所有必需文件使用UserController
,则测试有效。但是Heroku上的部署无法抛出500 status code
。有关如何解决此问题的任何建议吗?
这是我的项目结构:
答案 0 :(得分:0)
你需要弄清楚你必须从哪个路径开始。第一
var_dump( realpath( __DIR__ . '/../..' ) );
这将显示您尝试导航到的父目录。然后从那里更正config/DbConnection.php
的路径。
__DIR__
魔术常量为您提供与其所在文件相同的目录。realpath
将在无效路径上返回false
。如果上面的内容返回false
,则表示您的网络服务器用户没有访问该文件夹的目录权限,因为在您的情况下肯定存在两个级别的文件夹。如果是这种情况,则需要chmod
配置文件夹。否则您的路径字符串已关闭。