In your application's tests, if you are not seeding roles and permissions as part of your test setUp() then you may run into a chicken/egg situation where roles and permissions aren't registered with the gate (because your tests create them after that gate registration is done). Working around this is simple:
In your tests simply add a setUp() instruction to re-register the permissions, like this:
publicfunctionsetUp(): void
{
// first include all the normal setUp operationsparent::setUp();
// now re-register all the roles and permissions (clears cache and reloads relations)$this->app->make(\Spatie\Permission\PermissionRegistrar::class)->registerPermissions();
}
Many applications do not require using factories to create fake roles/permissions for testing, because they use a Seeder to create specific roles and permissions that the application uses; thus tests are performed using the declared roles and permissions.
However, if your application allows users to define their own roles and permissions you may wish to use Model Factories to generate roles and permissions as part of your test suite.
With Laravel 7 you can simply create a model factory using the artisan command, and then call the factory() helper function to invoke it as needed.
With Laravel 8 if you want to use the class-based Model Factory features you will need to extend this package's Role and/or Permission model into your app's namespace, add the HasFactory trait to it, and define a model factory for it. Then you can use that factory in your seeders like any other factory related to your app's models.