我正在使用PHP Faker在数据库中生成随机数据(使用工厂),有时它会生成撇号。
在测试中,我使用assertSeeText()
。
问题在于,当测试的字符串包含特殊字符(例如撇号)时,这些字符将在 View 中转换为html实体,因此断言为false。
$siteShow = factory(Site::class)->create();
$this->get('admin/site/'. $siteShow->id_site)
->assertStatus(200)
->assertSeeText($siteShow->name)
->assertSeeText($siteShow->address)
断言失败的示例情况:
$siteShow->name
等于O'Neil
。它失败,因为在 View 中它显示为O'Neil
。我的问题是:如何使断言在两种情况下都为真: View 中的名称为
O'Neil
或O'Neil
?我希望解决方案能够处理任何html实体。先感谢您。 最佳答案
我找到了解决方案。由于我的观点是由Blade使用{{ ... }}
语法生成的,因此文本被转义并通过htmlspecialchars()
传递,如果我正确的话,尤其是通过 e()
helper传递。所以我只是做了以下工作,它的工作原理是:
$siteShow = factory(Site::class)->create();
$this->get('admin/site/'. $siteShow->id_site)
->assertStatus(200)
->assertSeeText(e($siteShow->name))
->assertSeeText(e($siteShow->address))