ampeco/fast-sqlite-refresh-database
Composer 安装命令:
composer require ampeco/fast-sqlite-refresh-database
包简介
Alternative to migrations for each test
README 文档
README
Alternative to the default laravel behaviour that will refresh the sqlite database for each test.
Also, an alternative to squashing migrations, since that still has to import the squashed migration on each test.
In this implementation no transactions are used when starting a test and the database is refreshed by deleting the sqlite file and recreating it from a clean template!
Instructions
- Install the package
composer require --dev ampeco/fast-sqlite-refresh-database
- Make sure you are not using in-memory database, but a sqlite file based one for your test setup
- In your test instead of
use RefreshDatabase;useuse FastSqliteRefreshDatabase; - Run your tests
Performance
We tested it in an internal Feature testing suit with 86 tests. Using LazyRefreshDatabase we got:
ParaTest v6.9.1 upon PHPUnit 9.6.7 by Sebastian Bergmann and contributors.
................................................................. 65 / 86 ( 75%)
..................... 86 / 86 (100%)
Time: 01:09.101, Memory: 39.12 MB
Then we switched to FastSqliteRefreshDatabase and got:
ParaTest v6.9.1 upon PHPUnit 9.6.7 by Sebastian Bergmann and contributors.
................................................................. 65 / 86 ( 75%)
..................... 86 / 86 (100%)
Time: 00:06.894, Memory: 39.12 MB
Additional speed improvement
Preheating the database
If you are running a lot of test in CI for example. You can call php artisan fast-sqlite-refresh-database:preheat before running your tests. This will create a clean sqlite database file that can be copied for each test. This will speed up your tests even more!
In order to tell your tests to use the preheated database, you can set the environment variable FAST_SQLITE_REFRESH_DATABASE_PREHEATED to true before running your tests.
FAST_SQLITE_REFRESH_DATABASE_PREHEATED=true php vendor/bin/paratest
Here is the same test with preheated database:
ParaTest v6.9.1 upon PHPUnit 9.6.7 by Sebastian Bergmann and contributors.
................................................................. 65 / 86 ( 75%)
..................... 86 / 86 (100%)
Time: 00:05.916, Memory: 39.12 MB
Ramdisk
Running a large set of tests can create a lot of IO, for this reason you can use a ramdisk to store the sqlite database file.
On macOS you could use APFS or HFS+ ramdisk. From our tests HFS+ appears to be faster by 3-4%.
# APFS diskutil apfs create $(hdiutil attach -nomount ram://1048576) ramdisk && touch /Volumes/ramdisk/.metadata_never_index && touch /Volumes/ramdisk/.fseventsd/no_log #HFS+ diskutil erasevolume HFS+ ramdisk $(hdiutil attach -nomount ram://1048576) && touch /Volumes/ramdisk/.metadata_never_index && touch /Volumes/ramdisk/.fseventsd/no_log
To unmount the ramdisk:
diskutil eject /Volumes/ramdisk
On linux you can use tmpfs
ampeco/fast-sqlite-refresh-database 适用场景与选型建议
ampeco/fast-sqlite-refresh-database 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 33.42k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 02 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ampeco/fast-sqlite-refresh-database 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ampeco/fast-sqlite-refresh-database 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 33.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-01