我在2015年中开始学习纯php。然后,我熟悉了codeigniter 3和laravel 5.1。多年来,laravel 是我选择的框架,而且我仍然坚持使用它。与其他流行的 php 项目一样,我认为 phpunit 是单元测试的唯一选择。但2021年佩斯来了,情况发生了一点变化。它是由 laravel 工程师 nuno maduro 创建的,他还制作了许多在 php 和 laravel 社区中广泛使用的优秀项目/包。
从 pest 的第一天起,我就不再关心它了,因为 phpunit 对我来说已经足够了,我懒得学习这个新的测试工具。但 laravel 社区发展得越多,推荐的 pest 就越多。 spatie、livewire、filament 等的许多 laravel 项目/包都使用 pest。所以问题是当测试与它们相关的东西时,我必须移植到 phpunit。我似乎别无选择。是时候去看看佩斯了。
第一眼看上去
在安装部分之后,我使用 pest 创建我的第一个 php 项目。
mkdir ~/herd/lerning-pest cd ~/herd/learning-pest composer require pestphp/pest --dev --with-all-dependencies ./vendor/bin/pest --init
登录后复制
目录结构与phpunit几乎相同。不同之处在于测试的外观。它是基于闭包而不是基于类的。
<?php // tests/unit/exampletest.php test('example', function () { expect(true)->tobetrue(); });
登录后复制
我知道使用 closure 可以在运行时将方法延迟附加到对象。所以这可以像这样在 phpunit 中重写。
<?php // tests/unit/exampletest.php class exampletest extends phpunitramework estcase { public function test_example() { $this->asserttrue(true); } }
登录后复制
它说 pest 断言语法受到 ruby 的 rspec 和 jest 的启发,我不知道。所以,我对他们也没有太大兴趣。对我来说,断言语法如何并不重要。
我只是喜欢运行测试时显示的结果。我认为它比 phpunit 更漂亮、更干净。
立即学习“PHP免费学习笔记(深入)”;
断言
这些是我在 phpunit 中使用最多的断言。
$this->assertsame($expected, $actual); $this->asserttrue($condition); $this->assertfalse($condition); $this->assertnull($actual); $this->assertempty($array); $this->assertcount($count, $countable); $this->assertinstanceof($type, $instance);
登录后复制
它们可以很容易地用 pest 重写。
expect($actual)->tobe($expected); expect($condition)->tobetrue(); expect($condition)->tobefalse(); expect($actual)->tobenull(); expect($actual)->tobeempty(); expect($actual)->tobeinstanceof($type);
登录后复制
正如我之前提到的,pest 断言语法很好,但我目前坚持使用 phpunit,因为我不需要研究新的 api。不管怎样,我更喜欢 phpunit 断言,并且只使用 pest 中独特的东西。架构测试就是一个例子。我的测试文件如下所示。
<?php test("all PHP files in LearningPest namespace must have strict mode enabled", function () { arch() ->expect('LearningPest') ->toUseStrictTypes(); }); test('all PHPUnit assertions are available for Pest', function () { $instance = new stdClass(); $getInstance = function () use ($instance) { return $instance; }; $this->assertSame($instance, $getInstance()); $this->assertInstanceOf(stdClass::class, $instance); $this->assertTrue(1 < 2); $this->assertFalse(1 > 2); $value = null; $this->assertNull($value); $this->assertEmpty([]); $array = [1, 2, 3]; $this->assertCount(3, $array); });
登录后复制
强制功能
有许多强制功能使我能够像 phpunit 一样在 pest 中工作。他们在这里:
- phpunit 有数据提供者。 pest 有数据集。
- phpunit 有setup、teardown、setupbeforeclass 和teardownafterclass。 pest 有 beforeeach、aftereach、beforeall 和 afterall。
- 两者都有异常检查,并且可以跳过/分组/过滤测试。
mockery 是一个独立的库,所以我不在这里列出它。
另一方面,pest 有很多东西可能会派上用场,例如架构、快照或压力测试和插件。我会在编写测试时发现它们。
结论
- pest 构建于 phpunit 之上,最近在 php 和 laravel 社区中广泛使用和推荐。
- 使用 pest,我可以以几乎与之前相同的方式工作,但具有更漂亮的 cli 和更多有用的功能。
- 现在,pest 是我的 php 和 laravel 应用程序的默认测试框架。
如果你是一个没有使用过 pest 的 php 开发者,不妨尝试一下。
以上就是我最终尝试了 Pest for PHP & Laravel,然后进行了切换的详细内容,更多请关注其它相关文章!