2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Commands;
|
2021-02-12 06:42:36 +08:00
|
|
|
|
|
|
|
use BookStack\Auth\Permissions\JointPermission;
|
|
|
|
use BookStack\Entities\Models\Page;
|
2021-03-21 00:25:02 +08:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2021-02-12 06:42:36 +08:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class RegeneratePermissionsCommandTest extends TestCase
|
|
|
|
{
|
|
|
|
public function test_regen_permissions_command()
|
|
|
|
{
|
2021-03-21 00:25:02 +08:00
|
|
|
\DB::rollBack();
|
2021-02-12 06:42:36 +08: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-21 00:25:02 +08:00
|
|
|
DB::beginTransaction();
|
2021-02-12 06:42:36 +08:00
|
|
|
|
|
|
|
$this->assertDatabaseHas('joint_permissions', ['entity_id' => $page->id]);
|
|
|
|
}
|
2021-06-26 23:23:15 +08:00
|
|
|
}
|