ronappleton/spatie-laravel-permission-mock
Composer 安装命令:
composer require ronappleton/spatie-laravel-permission-mock
包简介
Simple package to allow testing of packages with users that have permissions.
README 文档
README
Introduction
Simple package with a simple premise, to mock permissions in a simple way for feature testing.
If you are wanting to develop a package for laravel that uses permissions and policies, you may want to test that your package works as expected. This package allows you to mock permissions in a simple way.
I found this useful when building a monolithic application using packages that had permissions and policies.
I wanted to keep my tests simple and not have to worry about setting up permissions and policies in my tests. And I wanted to be able to define the permissions in my packages.
Installation
You can install the package via composer:
composer require --dev ronappleton/spatie-laravel-permission-mock
Usage
If using normal integer id fields for your models, you can use the following in your tests:
- User
- Role
- Permission
If wanting to use uuids for your models, you can use the following in your tests:
- UserUuid
- RoleUuid
- PermissionUuid
For Uuids you will need to set the following in your tests:
use DatabaseMigrations; protected function setUp(): void { parent::setUp(); config()->set('mock-permissions.uuids', true); $this->artisan('migrate:fresh', ['--database' => 'testing']); }
You can then create permissions and roles in your tests, and assign them to users.
Conclusion
You can now develop a package using permissions and policies and test them knowing your test will cover want you want within the package and you can rely on your code working when your package is pulled into your application.
Note
If you want to add whatever to this package simply PR it and ill add it in, please remember tests.
ronappleton/spatie-laravel-permission-mock 适用场景与选型建议
ronappleton/spatie-laravel-permission-mock 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 05 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ronappleton/spatie-laravel-permission-mock 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ronappleton/spatie-laravel-permission-mock 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-17