我在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 \PHPUnit\Framework\TestCase { public function test_example() { $this->assertTrue(true); } }
它说 Pest 断言语法受到 Ruby 的 Rspec 和 Jest 的启发,我不知道。所以,我对他们也没有太大兴趣。对我来说,断言语法如何并不重要。
我只是喜欢运行测试时显示的结果。我认为它比 PHPUnit 更漂亮、更干净。
这些是我在 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 中工作。他们在这里:
Mockery 是一个独立的库,所以我不在这里列出它。
另一方面,Pest 有很多东西可能会派上用场,例如架构、快照或压力测试和插件。我会在编写测试时发现它们。
如果你是一个没有使用过 Pest 的 PHP 开发者,不妨尝试一下。
以上是我最终尝试了 Pest for PHP & Laravel,然后进行了切换的详细内容。更多信息请关注PHP中文网其他相关文章!