2021-02-11 17:42:36 -05:00
|
|
|
<?php namespace Tests\Commands;
|
|
|
|
|
|
|
|
use BookStack\Auth\Permissions\JointPermission;
|
|
|
|
use BookStack\Entities\Models\Page;
|
2021-03-20 12:25:02 -04:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2021-02-11 17:42:36 -05:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class RegeneratePermissionsCommandTest extends TestCase
|
|
|
|
{
|
|
|
|
public function test_regen_permissions_command()
|
|
|
|
{
|
2021-03-20 12:25:02 -04:00
|
|
|
\DB::rollBack();
|
2021-02-11 17:42:36 -05:00
|
|
|
JointPermission::query()->truncate();
|
|
|
|
$page = Page::first();
|
|
|
|
|
|
|
|
$this->assertDatabaseMissing('joint_permissions', ['entity_id' => $page->id]);
|
|
|
|
|
|
|
|
$exitCode = \Artisan::call('bookstack:regenerate-permissions');
|
|
|
|
$this->assertTrue($exitCode === 0, 'Command executed successfully');
|
2021-03-20 12:25:02 -04:00
|
|
|
DB::beginTransaction();
|
2021-02-11 17:42:36 -05:00
|
|
|
|
|
|
|
$this->assertDatabaseHas('joint_permissions', ['entity_id' => $page->id]);
|
|
|
|
}
|
|
|
|
}
|