ralphjsmit/pest-plugin-filesystem
Composer 安装命令:
composer require --dev ralphjsmit/pest-plugin-filesystem
包简介
A set of handy filesystem testing helpers for Pest.
README 文档
README
Testing with Pest is an absolute pleasure, but sometimes you just need that little bit extra. In my case, that extra was a set of expectations and functions to interact with the filesystem and make assertions on it. Below I made a list with all the helpers currently available. Enjoy!
Important
This package will only work for Pest V1 and not for Pest V2.
Contents
- Expectations
- Higher-order expectations
- Functions
Expectations
expect(...)->toHaveContents()
Test whether a file has certain contents:
file_put_contents(__DIR__ . '/tmp/fileA.php', 'I\'m a test file!'); file_put_contents(__DIR__ . '/tmp/fileB.php', 'I\'m a second test file!'); expect(__DIR__ . '/tmp/fileA.php')->toHaveContents('I\'m a test file!'); expect(__DIR__ . '/tmp/fileB.php')->not->toHaveContents('I\'m a test file!');
expect(...)->toExist()
Test whether a file exists:
expect(__DIR__ . '/tmp/fileA.php')->toExist();
expect(...)->toHaveNamespace()
Test whether a file has a certain namespace (PHP-only):
expect(__DIR__ . '/tmp/fileA.php')->toHaveNamespace('App\Models');
Higher-order expectations
expect(...)->contents->toBe(...)
Make assertions on the contents of a file:
file_put_contents(__DIR__ . '/tmp/fileA.php', 'I\'m a test file!'); expect(__DIR__ . '/tmp/fileA.php') ->contents->toBe('I\'m a test file!') ->toContain('test file') ->not->toContain('Hello world');
Functions
rm($path, $allowNonExisting)
Completely remove a file or directory:
use function RalphJSmit\PestPluginFilesystem\rm; rm(__DIR__ . '/tmp'); // Make sure that this file or directory doesn't exist file_put_contents(__DIR__ . '/tmp/fileA.php', 'I\'m a test file!'); file_put_contents(__DIR__ . '/tmp/fileB.php', 'I\'m a second test file!'); // Other code
rmdir_recursive($dir)
This function recursively deletes a folder, including its contents. Internally this is used by the rm() function:
use function RalphJSmit\PestPluginFilesystem\rmdir_recursive; rmdir_recursive(__DIR__ . '/tmp'); // Recursively remove this directory
contents($path)
Gets the file contents of a certain file. Its simply a shorter wrapper for file_get_contents():
use function RalphJSmit\PestPluginFilesystem\contents; expect( contents(__DIR__ . '/tmp/fileA.php') )->toBe( contents(__DIR__ . '/tmp/fileB.php') );
expectFailedAssertion()
Note that this helper will be added to another package soon and thus be removed here.
Expect a failed assertion. Helpful for testing your own custom Pest assertions:
use function RalphJSmit\PestPluginFilesystem\expectFailedAssertion; expectFailedAssertion(); expect(true)->toBe(false); // This test will pass
// Somewhere expect()->extend('toBeHello', function () { return $this->toBe('Hello there'); }); // In your test use function RalphJSmit\PestPluginFilesystem\expectFailedAssertion; expect('Hello there')->toBeHello(); // This will pass expectFailedAssertion(); expect('Bye')->toBeHello(); // This will pass expectFailedAssertion(); expect('Hello there')->toBeHello(); // This will fail
General
🐞 If you spot a bug, please submit a detailed issue and I'll try to fix it as soon as possible.
🔐 If you discover a vulnerability, please review our security policy.
🙌 If you want to contribute, please submit a pull request. All PRs will be fully credited. If you're unsure whether I'd accept your idea, feel free to contact me!
🙋♂️ Ralph J. Smit
ralphjsmit/pest-plugin-filesystem 适用场景与选型建议
ralphjsmit/pest-plugin-filesystem 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.63k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2021 年 12 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「php」 「testing」 「plugin」 「test」 「unit」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ralphjsmit/pest-plugin-filesystem 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ralphjsmit/pest-plugin-filesystem 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ralphjsmit/pest-plugin-filesystem 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Testing Suite For Lumen like Laravel does.
The PHP SDK for Checkmango
Alfabank REST API integration
The testing extension of TYPO3voilà.
Auto-generate dummy data with realistic relationships per Model-like config classes
统计信息
- 总下载量: 1.63k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 9
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-12-29