在 Pest 中有条件地断言抛出异常

发布于 作者

Conditionally Assert Throwing An Exception in Pest image

Pest 最近在 Pest v2.24 中添加了 throwsUnless() 方法,用于在给定的布尔表达式计算结果为假时有条件地验证异常。

此方法是 throwIf() 方法的对应方法,后者在给定的表达式为真时有条件地验证异常。

test('example 1', function () {
// Test that only throws an exception for the mysql driver...
})->throwsIf(DB::getDriverName() === 'mysql', Exception::class, 'MySQL is not supported.');
 
test('example 2', function () {
// Test that throws unless the db driver is mysql...
})->throwsUnless(DB::getDriverName() === 'mysql', SomeDBException::class);

例如,假设您有一个支持各种用于处理图像的 PHP 扩展的 PHP 包。您的 CI 环境可能支持并测试 gdimagemagick;但是,其他环境可能只支持其中一个。

test('gd wrapper can create an image', function () {
$image = imagecreate(width: 200, height: 200);
imagecolorallocate($image, 255, 255, 255);
imagepng($image, '/tmp/new_image_gd.png');
 
expect(file_exists('/tmp/new_image_gd.png'))->toBeTrue();
})->throwsUnless(extension_loaded('gd'), \Error::class);
 
test('imagemagic wrapper can create an image', function () {
$image = new Imagick();
// ...
 
})->throwsUnless(extension_loaded('imagick'), \Error::class);

throwsIf()throwsUnless() 方法还支持可调用函数,如果您更喜欢这种方式或有一些自定义逻辑要用于确定测试是否应该抛出异常。

test('example test with callables', function () {
$image = new Imagick();
// ...
})->throwsUnless(fn () => class_exists(\Imagick::class), 'Class "Imagick" not found');

了解更多

您可以在 Pest 异常文档 中了解有关在测试中处理异常的信息。另外,如果您是 PestPHP 新手,更喜欢视频,我们建议您查看由 Luke Downing 制作的 从头开始学习 PestPHP

Paul Redmond photo

Laravel 新闻的专栏作家。全栈 Web 开发人员和作家。

归档于
Cube

Laravel 时事通讯

加入 40,000 多名其他开发者,永不错过新提示、教程等内容。

Laravel Forge logo

Laravel Forge

轻松创建和管理您的服务器,并在几秒钟内部署您的 Laravel 应用程序。

Laravel Forge
Tinkerwell logo

Tinkerwell

Laravel 开发人员必备的代码运行器。使用 AI、自动完成功能和本地和生产环境的即时反馈进行试验。

Tinkerwell
No Compromises logo

无妥协

Joel 和 Aaron,来自 No Compromises 播客的两位经验丰富的开发者,现已开放为您的 Laravel 项目提供服务。 ⬧ 统一收费 $7500/月。 ⬧ 无漫长的销售流程。 ⬧ 无合同。 ⬧ 100% 退款保证。

无妥协
Kirschbaum logo

Kirschbaum

提供创新和稳定性,确保您的 Web 应用程序取得成功。

Kirschbaum
Shift logo

Shift

正在运行旧版本的 Laravel?即时、自动的 Laravel 升级和代码现代化,让您的应用程序保持最新。

Shift
Bacancy logo

Bacancy

让经验丰富的 Laravel 开发人员(4-6 年经验)以每月仅 $2500 的价格为您的项目增光添彩。获得 160 小时的专业支持和 15 天免费试用。立即预约电话!

Bacancy
Lucky Media logo

Lucky Media

现在就来试试 Lucky - Laravel 开发的理想选择,拥有超过十年的经验!

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel 电子商务

Laravel 电子商务。一个开源包,为 Laravel 带来了现代无头电子商务功能的强大功能。

Lunar: Laravel 电子商务
LaraJobs logo

LaraJobs

官方 Laravel 工作板

LaraJobs
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS 启动工具包

SaaSykit 是一个 Laravel SaaS 启动工具包,包含运行现代 SaaS 所需的所有功能。支付、精美结账、管理面板、用户仪表板、身份验证、现成组件、统计信息、博客、文档等。

SaaSykit: Laravel SaaS 启动工具包
Rector logo

Rector

您无缝升级 Laravel、降低成本并加快创新以帮助企业取得成功的合作伙伴

Rector
MongoDB logo

MongoDB

通过 MongoDB 和 Laravel 的强大集成增强您的 PHP 应用程序,使开发者能够轻松高效地构建应用程序。支持事务性、搜索、分析和移动用例,同时使用熟悉的 Eloquent API。了解灵活、现代的 MongoDB 数据库如何改变您的 Laravel 应用程序。

MongoDB
Maska is a Simple Zero-dependency Input Mask Library image

Maska 是一个简单的零依赖输入掩码库

阅读文章
Add Swagger UI to Your Laravel Application image

将 Swagger UI 添加到您的 Laravel 应用程序

阅读文章
Assert the Exact JSON Structure of a Response in Laravel 11.19 image

断言 Laravel 11.19 中响应的精确 JSON 结构

阅读文章
Build SSH Apps with PHP and Laravel Prompts image

使用 PHP 和 Laravel 提示构建 SSH 应用程序

阅读文章
Building fast, fuzzy site search with Laravel and Typesense image

使用 Laravel 和 Typesense 构建快速、模糊的网站搜索

阅读文章
Add Comments to your Laravel Application with the Commenter Package image

使用 Commenter 包向您的 Laravel 应用程序添加评论

阅读文章