2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Permissions;
|
2016-02-27 14:24:42 -05:00
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
use BookStack\Actions\ActivityType;
|
2020-11-20 13:53:01 -05:00
|
|
|
use BookStack\Actions\Comment;
|
2021-06-26 11:23:15 -04:00
|
|
|
use BookStack\Auth\Role;
|
2020-11-20 13:53:01 -05:00
|
|
|
use BookStack\Auth\User;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Book;
|
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
|
|
|
use BookStack\Entities\Models\Chapter;
|
2021-09-18 16:15:39 -04:00
|
|
|
use BookStack\Entities\Models\Entity;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Page;
|
2020-11-20 13:53:01 -05:00
|
|
|
use BookStack\Uploads\Image;
|
2021-09-17 19:33:03 -04:00
|
|
|
use Tests\TestCase;
|
|
|
|
use Tests\TestResponse;
|
2017-04-30 06:38:58 -04:00
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
class RolesTest extends TestCase
|
2016-02-27 14:24:42 -05:00
|
|
|
{
|
|
|
|
protected $user;
|
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
protected function setUp(): void
|
2016-02-27 14:24:42 -05:00
|
|
|
{
|
|
|
|
parent::setUp();
|
2016-04-24 11:54:20 -04:00
|
|
|
$this->user = $this->getViewer();
|
|
|
|
}
|
|
|
|
|
2016-02-27 14:24:42 -05:00
|
|
|
public function test_admin_can_see_settings()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->asAdmin()->get('/settings')->assertSee('Settings');
|
2016-02-27 14:24:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_cannot_delete_admin_role()
|
|
|
|
{
|
2020-11-20 13:53:01 -05:00
|
|
|
$adminRole = Role::getRole('admin');
|
2016-02-27 14:24:42 -05:00
|
|
|
$deletePageUrl = '/settings/roles/delete/' . $adminRole->id;
|
2021-09-17 19:33:03 -04:00
|
|
|
|
|
|
|
$this->asAdmin()->get($deletePageUrl);
|
|
|
|
$this->delete($deletePageUrl)->assertRedirect($deletePageUrl);
|
|
|
|
$this->get($deletePageUrl)->assertSee('cannot be deleted');
|
2016-02-27 14:24:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_role_cannot_be_deleted_if_default()
|
|
|
|
{
|
|
|
|
$newRole = $this->createNewRole();
|
|
|
|
$this->setSettings(['registration-role' => $newRole->id]);
|
|
|
|
|
|
|
|
$deletePageUrl = '/settings/roles/delete/' . $newRole->id;
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->asAdmin()->get($deletePageUrl);
|
|
|
|
$this->delete($deletePageUrl)->assertRedirect($deletePageUrl);
|
|
|
|
$this->get($deletePageUrl)->assertSee('cannot be deleted');
|
2016-02-27 14:24:42 -05:00
|
|
|
}
|
|
|
|
|
2016-03-02 17:35:01 -05:00
|
|
|
public function test_role_create_update_delete_flow()
|
|
|
|
{
|
|
|
|
$testRoleName = 'Test Role';
|
|
|
|
$testRoleDesc = 'a little test description';
|
|
|
|
$testRoleUpdateName = 'An Super Updated role';
|
|
|
|
|
|
|
|
// Creation
|
2021-09-18 16:15:39 -04:00
|
|
|
$resp = $this->asAdmin()->get('/settings');
|
|
|
|
$resp->assertElementContains('a[href="' . url('/settings/roles') . '"]', 'Roles');
|
|
|
|
|
|
|
|
$resp = $this->get('/settings/roles');
|
|
|
|
$resp->assertElementContains('a[href="' . url('/settings/roles/new') . '"]', 'Create New Role');
|
|
|
|
|
|
|
|
$resp = $this->get('/settings/roles/new');
|
|
|
|
$resp->assertElementContains('form[action="' . url('/settings/roles/new') . '"]', 'Save Role');
|
|
|
|
|
|
|
|
$resp = $this->post('/settings/roles/new', [
|
|
|
|
'display_name' => $testRoleName,
|
2021-09-18 16:21:44 -04:00
|
|
|
'description' => $testRoleDesc,
|
2021-09-18 16:15:39 -04:00
|
|
|
]);
|
|
|
|
$resp->assertRedirect('/settings/roles');
|
|
|
|
|
|
|
|
$resp = $this->get('/settings/roles');
|
|
|
|
$resp->assertSee($testRoleName);
|
|
|
|
$resp->assertSee($testRoleDesc);
|
|
|
|
$this->assertDatabaseHas('roles', [
|
|
|
|
'display_name' => $testRoleName,
|
2021-09-18 16:21:44 -04:00
|
|
|
'description' => $testRoleDesc,
|
2021-09-18 16:15:39 -04:00
|
|
|
'mfa_enforced' => false,
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var Role $role */
|
|
|
|
$role = Role::query()->where('display_name', '=', $testRoleName)->first();
|
2021-09-17 19:33:03 -04:00
|
|
|
|
2016-03-02 17:35:01 -05:00
|
|
|
// Updating
|
2021-09-18 16:15:39 -04:00
|
|
|
$resp = $this->get('/settings/roles/' . $role->id);
|
|
|
|
$resp->assertSee($testRoleName);
|
|
|
|
$resp->assertSee($testRoleDesc);
|
|
|
|
$resp->assertElementContains('form[action="' . url('/settings/roles/' . $role->id) . '"]', 'Save Role');
|
|
|
|
|
|
|
|
$resp = $this->put('/settings/roles/' . $role->id, [
|
|
|
|
'display_name' => $testRoleUpdateName,
|
2021-09-18 16:21:44 -04:00
|
|
|
'description' => $testRoleDesc,
|
2021-09-18 16:15:39 -04:00
|
|
|
'mfa_enforced' => 'true',
|
|
|
|
]);
|
|
|
|
$resp->assertRedirect('/settings/roles');
|
|
|
|
$this->assertDatabaseHas('roles', [
|
|
|
|
'display_name' => $testRoleUpdateName,
|
2021-09-18 16:21:44 -04:00
|
|
|
'description' => $testRoleDesc,
|
2021-09-18 16:15:39 -04:00
|
|
|
'mfa_enforced' => true,
|
|
|
|
]);
|
2021-09-17 19:33:03 -04:00
|
|
|
|
2016-03-02 17:35:01 -05:00
|
|
|
// Deleting
|
2021-09-18 16:15:39 -04:00
|
|
|
$resp = $this->get('/settings/roles/' . $role->id);
|
|
|
|
$resp->assertElementContains('a[href="' . url("/settings/roles/delete/$role->id") . '"]', 'Delete Role');
|
|
|
|
|
|
|
|
$resp = $this->get("/settings/roles/delete/$role->id");
|
|
|
|
$resp->assertSee($testRoleUpdateName);
|
|
|
|
$resp->assertElementContains('form[action="' . url("/settings/roles/delete/$role->id") . '"]', 'Confirm');
|
|
|
|
|
|
|
|
$resp = $this->delete("/settings/roles/delete/$role->id");
|
|
|
|
$resp->assertRedirect('/settings/roles');
|
|
|
|
$this->get('/settings/roles')->assertSee('Role successfully deleted');
|
|
|
|
$this->assertActivityExists(ActivityType::ROLE_DELETE);
|
2016-03-02 17:35:01 -05:00
|
|
|
}
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
public function test_admin_role_cannot_be_removed_if_user_last_admin()
|
2018-12-30 11:11:58 -05:00
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Role $adminRole */
|
|
|
|
$adminRole = Role::query()->where('system_name', '=', 'admin')->first();
|
2018-12-30 11:11:58 -05:00
|
|
|
$adminUser = $this->getAdmin();
|
|
|
|
$adminRole->users()->where('id', '!=', $adminUser->id)->delete();
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->assertEquals(1, $adminRole->users()->count());
|
2018-12-30 11:11:58 -05:00
|
|
|
|
|
|
|
$viewerRole = $this->getViewer()->roles()->first();
|
|
|
|
|
|
|
|
$editUrl = '/settings/users/' . $adminUser->id;
|
2021-09-18 16:15:39 -04:00
|
|
|
$resp = $this->actingAs($adminUser)->put($editUrl, [
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => $adminUser->name,
|
2018-12-30 11:11:58 -05:00
|
|
|
'email' => $adminUser->email,
|
|
|
|
'roles' => [
|
|
|
|
'viewer' => strval($viewerRole->id),
|
2021-06-26 11:23:15 -04:00
|
|
|
],
|
2021-09-18 16:15:39 -04:00
|
|
|
]);
|
|
|
|
|
|
|
|
$resp->assertRedirect($editUrl);
|
2018-12-30 11:11:58 -05:00
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$resp = $this->get($editUrl);
|
|
|
|
$resp->assertSee('This user is the only user assigned to the administrator role');
|
2018-12-30 11:11:58 -05:00
|
|
|
}
|
|
|
|
|
2020-08-04 09:55:01 -04:00
|
|
|
public function test_migrate_users_on_delete_works()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Role $roleA */
|
2020-08-04 09:55:01 -04:00
|
|
|
$roleA = Role::query()->create(['display_name' => 'Delete Test A']);
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Role $roleB */
|
2020-08-04 09:55:01 -04:00
|
|
|
$roleB = Role::query()->create(['display_name' => 'Delete Test B']);
|
|
|
|
$this->user->attachRole($roleB);
|
|
|
|
|
|
|
|
$this->assertCount(0, $roleA->users()->get());
|
|
|
|
$this->assertCount(1, $roleB->users()->get());
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$deletePage = $this->asAdmin()->get("/settings/roles/delete/$roleB->id");
|
2021-09-17 19:33:03 -04:00
|
|
|
$deletePage->assertElementExists('select[name=migrate_role_id]');
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->asAdmin()->delete("/settings/roles/delete/$roleB->id", [
|
2020-08-04 09:55:01 -04:00
|
|
|
'migrate_role_id' => $roleA->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertCount(1, $roleA->users()->get());
|
|
|
|
$this->assertEquals($this->user->id, $roleA->users()->first()->id);
|
|
|
|
}
|
|
|
|
|
2021-12-19 07:27:14 -05:00
|
|
|
public function test_copy_role_button_shown()
|
|
|
|
{
|
|
|
|
/** @var Role $role */
|
|
|
|
$role = Role::query()->first();
|
|
|
|
$resp = $this->asAdmin()->get("/settings/roles/{$role->id}");
|
|
|
|
$resp->assertElementContains('a[href$="/roles/new?copy_from=' . $role->id . '"]', 'Copy');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_copy_from_param_on_create_prefills_with_other_role_data()
|
|
|
|
{
|
|
|
|
/** @var Role $role */
|
|
|
|
$role = Role::query()->first();
|
|
|
|
$resp = $this->asAdmin()->get("/settings/roles/new?copy_from={$role->id}");
|
|
|
|
$resp->assertOk();
|
2021-12-20 12:40:27 -05:00
|
|
|
$resp->assertElementExists('input[name="display_name"][value="' . ($role->display_name . ' (Copy)') . '"]');
|
2021-12-19 07:27:14 -05:00
|
|
|
}
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
public function test_manage_user_permission()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get('/settings/users')->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->giveUserPermissions($this->user, ['users-manage']);
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get('/settings/users')->assertOk();
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
2019-01-05 10:22:47 -05:00
|
|
|
public function test_manage_users_permission_shows_link_in_header_if_does_not_have_settings_manage_permision()
|
|
|
|
{
|
2021-06-26 11:23:15 -04:00
|
|
|
$usersLink = 'href="' . url('/settings/users') . '"';
|
2021-10-26 17:04:18 -04:00
|
|
|
$this->actingAs($this->user)->get('/')->assertDontSee($usersLink, false);
|
2019-01-05 10:22:47 -05:00
|
|
|
$this->giveUserPermissions($this->user, ['users-manage']);
|
2021-10-26 17:04:18 -04:00
|
|
|
$this->actingAs($this->user)->get('/')->assertSee($usersLink, false);
|
2019-01-05 10:22:47 -05:00
|
|
|
$this->giveUserPermissions($this->user, ['settings-manage', 'users-manage']);
|
2021-10-26 17:04:18 -04:00
|
|
|
$this->actingAs($this->user)->get('/')->assertDontSee($usersLink, false);
|
2019-01-05 10:22:47 -05:00
|
|
|
}
|
|
|
|
|
2019-08-06 16:29:42 -04:00
|
|
|
public function test_user_cannot_change_email_unless_they_have_manage_users_permission()
|
|
|
|
{
|
|
|
|
$userProfileUrl = '/settings/users/' . $this->user->id;
|
|
|
|
$originalEmail = $this->user->email;
|
|
|
|
$this->actingAs($this->user);
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->get($userProfileUrl)
|
|
|
|
->assertOk()
|
|
|
|
->assertElementExists('input[name=email][disabled]');
|
2019-08-06 16:29:42 -04:00
|
|
|
$this->put($userProfileUrl, [
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'my_new_name',
|
2019-08-06 16:29:42 -04:00
|
|
|
'email' => 'new_email@example.com',
|
|
|
|
]);
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->assertDatabaseHas('users', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'id' => $this->user->id,
|
2019-08-06 16:29:42 -04:00
|
|
|
'email' => $originalEmail,
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'my_new_name',
|
2019-08-06 16:29:42 -04:00
|
|
|
]);
|
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['users-manage']);
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->get($userProfileUrl)
|
|
|
|
->assertOk()
|
|
|
|
->assertElementNotExists('input[name=email][disabled]')
|
|
|
|
->assertElementExists('input[name=email]');
|
2019-08-06 16:29:42 -04:00
|
|
|
$this->put($userProfileUrl, [
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'my_new_name_2',
|
2019-08-06 16:29:42 -04:00
|
|
|
'email' => 'new_email@example.com',
|
|
|
|
]);
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->assertDatabaseHas('users', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'id' => $this->user->id,
|
2019-08-06 16:29:42 -04:00
|
|
|
'email' => 'new_email@example.com',
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'my_new_name_2',
|
2019-08-06 16:29:42 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
public function test_user_roles_manage_permission()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get('/settings/roles')->assertRedirect('/');
|
|
|
|
$this->get('/settings/roles/1')->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->giveUserPermissions($this->user, ['user-roles-manage']);
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get('/settings/roles')->assertOk();
|
|
|
|
$this->get('/settings/roles/1')
|
|
|
|
->assertOk()
|
|
|
|
->assertSee('Admin');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_settings_manage_permission()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get('/settings')->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->giveUserPermissions($this->user, ['settings-manage']);
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get('/settings')->assertOk();
|
|
|
|
|
|
|
|
$resp = $this->post('/settings', []);
|
|
|
|
$resp->assertRedirect('/settings');
|
|
|
|
$resp = $this->get('/settings');
|
|
|
|
$resp->assertSee('Settings saved');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_restrictions_manage_all_permission()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
$page = Page::query()->get()->first();
|
|
|
|
|
|
|
|
$this->actingAs($this->user)->get($page->getUrl())->assertDontSee('Permissions');
|
|
|
|
$this->get($page->getUrl('/permissions'))->assertRedirect('/');
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->giveUserPermissions($this->user, ['restrictions-manage-all']);
|
2021-09-18 16:15:39 -04:00
|
|
|
|
|
|
|
$this->actingAs($this->user)->get($page->getUrl())->assertSee('Permissions');
|
|
|
|
|
|
|
|
$this->get($page->getUrl('/permissions'))
|
|
|
|
->assertOk()
|
|
|
|
->assertSee('Page Permissions');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_restrictions_manage_own_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Page $otherUsersPage */
|
|
|
|
$otherUsersPage = Page::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$content = $this->createEntityChainBelongingToUser($this->user);
|
2021-01-04 13:07:39 -05:00
|
|
|
|
|
|
|
// Set a different creator on the page we're checking to ensure
|
|
|
|
// that the owner fields are checked
|
|
|
|
$page = $content['page']; /** @var Page $page */
|
|
|
|
$page->created_by = $otherUsersPage->id;
|
|
|
|
$page->owned_by = $this->user->id;
|
|
|
|
$page->save();
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
// Check can't restrict other's content
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($otherUsersPage->getUrl())->assertDontSee('Permissions');
|
|
|
|
$this->get($otherUsersPage->getUrl('/permissions'))->assertRedirect('/');
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
// Check can't restrict own content
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($page->getUrl())->assertDontSee('Permissions');
|
|
|
|
$this->get($page->getUrl('/permissions'))->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['restrictions-manage-own']);
|
|
|
|
|
|
|
|
// Check can't restrict other's content
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($otherUsersPage->getUrl())->assertDontSee('Permissions');
|
|
|
|
$this->get($otherUsersPage->getUrl('/permissions'))->assertRedirect();
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
// Check can restrict own content
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($page->getUrl())->assertSee('Permissions');
|
|
|
|
$this->get($page->getUrl('/permissions'))->assertOk();
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Check a standard entity access permission.
|
2016-03-05 07:09:09 -05:00
|
|
|
*/
|
2021-09-18 16:15:39 -04:00
|
|
|
private function checkAccessPermission(string $permission, array $accessUrls = [], array $visibles = [])
|
2016-03-05 07:09:09 -05:00
|
|
|
{
|
|
|
|
foreach ($accessUrls as $url) {
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($url)->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
2021-09-18 16:15:39 -04:00
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
foreach ($visibles as $url => $text) {
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->get($url)
|
|
|
|
->assertElementNotContains('.action-buttons', $text);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, [$permission]);
|
|
|
|
|
|
|
|
foreach ($accessUrls as $url) {
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($url)->assertOk();
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
foreach ($visibles as $url => $text) {
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($url)->assertSee($text);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-21 10:15:16 -04:00
|
|
|
public function test_bookshelves_create_all_permissions()
|
|
|
|
{
|
|
|
|
$this->checkAccessPermission('bookshelf-create-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'/create-shelf',
|
2018-09-21 10:15:16 -04:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
'/shelves' => 'New Shelf',
|
2018-09-21 10:15:16 -04:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->post('/shelves', [
|
2021-09-18 16:21:44 -04:00
|
|
|
'name' => 'test shelf',
|
2021-09-18 16:15:39 -04:00
|
|
|
'description' => 'shelf desc',
|
|
|
|
])->assertRedirect('/shelves/test-shelf');
|
2018-09-21 10:15:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_bookshelves_edit_own_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Bookshelf $otherShelf */
|
|
|
|
$otherShelf = Bookshelf::query()->first();
|
2018-09-21 10:15:16 -04:00
|
|
|
$ownShelf = $this->newShelf(['name' => 'test-shelf', 'slug' => 'test-shelf']);
|
2020-12-30 17:18:28 -05:00
|
|
|
$ownShelf->forceFill(['owned_by' => $this->user->id, 'updated_by' => $this->user->id])->save();
|
2018-09-21 10:15:16 -04:00
|
|
|
$this->regenEntityPermissions($ownShelf);
|
|
|
|
|
|
|
|
$this->checkAccessPermission('bookshelf-update-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownShelf->getUrl('/edit'),
|
2018-09-21 10:15:16 -04:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownShelf->getUrl() => 'Edit',
|
2018-09-21 10:15:16 -04:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherShelf->getUrl())->assertElementNotContains('.action-buttons', 'Edit');
|
|
|
|
$this->get($otherShelf->getUrl('/edit'))->assertRedirect('/');
|
2018-09-21 10:15:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_bookshelves_edit_all_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Bookshelf $otherShelf */
|
|
|
|
$otherShelf = Bookshelf::query()->first();
|
2018-09-21 10:15:16 -04:00
|
|
|
$this->checkAccessPermission('bookshelf-update-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherShelf->getUrl('/edit'),
|
2018-09-21 10:15:16 -04:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherShelf->getUrl() => 'Edit',
|
2018-09-21 10:15:16 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_bookshelves_delete_own_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['bookshelf-update-all']);
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Bookshelf $otherShelf */
|
|
|
|
$otherShelf = Bookshelf::query()->first();
|
2018-09-21 10:15:16 -04:00
|
|
|
$ownShelf = $this->newShelf(['name' => 'test-shelf', 'slug' => 'test-shelf']);
|
2020-12-30 17:18:28 -05:00
|
|
|
$ownShelf->forceFill(['owned_by' => $this->user->id, 'updated_by' => $this->user->id])->save();
|
2018-09-21 10:15:16 -04:00
|
|
|
$this->regenEntityPermissions($ownShelf);
|
|
|
|
|
|
|
|
$this->checkAccessPermission('bookshelf-delete-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownShelf->getUrl('/delete'),
|
2018-09-21 10:15:16 -04:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownShelf->getUrl() => 'Delete',
|
2018-09-21 10:15:16 -04:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherShelf->getUrl())->assertElementNotContains('.action-buttons', 'Delete');
|
|
|
|
$this->get($otherShelf->getUrl('/delete'))->assertRedirect('/');
|
|
|
|
|
|
|
|
$this->get($ownShelf->getUrl());
|
|
|
|
$this->delete($ownShelf->getUrl())->assertRedirect('/shelves');
|
|
|
|
$this->get('/shelves')->assertDontSee($ownShelf->name);
|
2018-09-21 10:15:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_bookshelves_delete_all_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['bookshelf-update-all']);
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Bookshelf $otherShelf */
|
|
|
|
$otherShelf = Bookshelf::query()->first();
|
2018-09-21 10:15:16 -04:00
|
|
|
$this->checkAccessPermission('bookshelf-delete-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherShelf->getUrl('/delete'),
|
2018-09-21 10:15:16 -04:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherShelf->getUrl() => 'Delete',
|
2018-09-21 10:15:16 -04:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->delete($otherShelf->getUrl())->assertRedirect('/shelves');
|
|
|
|
$this->get('/shelves')->assertDontSee($otherShelf->name);
|
2018-09-21 10:15:16 -04:00
|
|
|
}
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
public function test_books_create_all_permissions()
|
|
|
|
{
|
|
|
|
$this->checkAccessPermission('book-create-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'/create-book',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
'/books' => 'Create New Book',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->post('/books', [
|
2021-09-18 16:21:44 -04:00
|
|
|
'name' => 'test book',
|
2021-09-18 16:15:39 -04:00
|
|
|
'description' => 'book desc',
|
|
|
|
])->assertRedirect('/books/test-book');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_books_edit_own_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Book $otherBook */
|
|
|
|
$otherBook = Book::query()->take(1)->get()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$ownBook = $this->createEntityChainBelongingToUser($this->user)['book'];
|
|
|
|
$this->checkAccessPermission('book-update-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownBook->getUrl() . '/edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownBook->getUrl() => 'Edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherBook->getUrl())->assertElementNotContains('.action-buttons', 'Edit');
|
|
|
|
$this->get($otherBook->getUrl('/edit'))->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_books_edit_all_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Book $otherBook */
|
|
|
|
$otherBook = Book::query()->take(1)->get()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkAccessPermission('book-update-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherBook->getUrl() . '/edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherBook->getUrl() => 'Edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_books_delete_own_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['book-update-all']);
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Book $otherBook */
|
|
|
|
$otherBook = Book::query()->take(1)->get()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$ownBook = $this->createEntityChainBelongingToUser($this->user)['book'];
|
|
|
|
$this->checkAccessPermission('book-delete-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownBook->getUrl() . '/delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownBook->getUrl() => 'Delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherBook->getUrl())->assertElementNotContains('.action-buttons', 'Delete');
|
|
|
|
$this->get($otherBook->getUrl('/delete'))->assertRedirect('/');
|
|
|
|
$this->get($ownBook->getUrl());
|
|
|
|
$this->delete($ownBook->getUrl())->assertRedirect('/books');
|
|
|
|
$this->get('/books')->assertDontSee($ownBook->name);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_books_delete_all_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['book-update-all']);
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Book $otherBook */
|
|
|
|
$otherBook = Book::query()->take(1)->get()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkAccessPermission('book-delete-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherBook->getUrl() . '/delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherBook->getUrl() => 'Delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherBook->getUrl());
|
|
|
|
$this->delete($otherBook->getUrl())->assertRedirect('/books');
|
|
|
|
$this->get('/books')->assertDontSee($otherBook->name);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_chapter_create_own_permissions()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Book $book */
|
|
|
|
$book = Book::query()->take(1)->get()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$ownBook = $this->createEntityChainBelongingToUser($this->user)['book'];
|
|
|
|
$this->checkAccessPermission('chapter-create-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownBook->getUrl('/create-chapter'),
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownBook->getUrl() => 'New Chapter',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->post($ownBook->getUrl('/create-chapter'), [
|
2021-09-18 16:21:44 -04:00
|
|
|
'name' => 'test chapter',
|
2021-09-18 16:15:39 -04:00
|
|
|
'description' => 'chapter desc',
|
|
|
|
])->assertRedirect($ownBook->getUrl('/chapter/test-chapter'));
|
2016-03-05 07:09:09 -05:00
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($book->getUrl())->assertElementNotContains('.action-buttons', 'New Chapter');
|
|
|
|
$this->get($book->getUrl('/create-chapter'))->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_chapter_create_all_permissions()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Book $book */
|
|
|
|
$book = Book::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkAccessPermission('chapter-create-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$book->getUrl('/create-chapter'),
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$book->getUrl() => 'New Chapter',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->post($book->getUrl('/create-chapter'), [
|
2021-09-18 16:21:44 -04:00
|
|
|
'name' => 'test chapter',
|
2021-09-18 16:15:39 -04:00
|
|
|
'description' => 'chapter desc',
|
|
|
|
])->assertRedirect($book->getUrl('/chapter/test-chapter'));
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_chapter_edit_own_permission()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Chapter $otherChapter */
|
|
|
|
$otherChapter = Chapter::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$ownChapter = $this->createEntityChainBelongingToUser($this->user)['chapter'];
|
|
|
|
$this->checkAccessPermission('chapter-update-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownChapter->getUrl() . '/edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownChapter->getUrl() => 'Edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherChapter->getUrl())->assertElementNotContains('.action-buttons', 'Edit');
|
|
|
|
$this->get($otherChapter->getUrl('/edit'))->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_chapter_edit_all_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Chapter $otherChapter */
|
|
|
|
$otherChapter = Chapter::query()->take(1)->get()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkAccessPermission('chapter-update-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherChapter->getUrl() . '/edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherChapter->getUrl() => 'Edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_chapter_delete_own_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['chapter-update-all']);
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Chapter $otherChapter */
|
2021-09-18 16:15:39 -04:00
|
|
|
$otherChapter = Chapter::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$ownChapter = $this->createEntityChainBelongingToUser($this->user)['chapter'];
|
|
|
|
$this->checkAccessPermission('chapter-delete-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownChapter->getUrl() . '/delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownChapter->getUrl() => 'Delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
|
|
|
$bookUrl = $ownChapter->book->getUrl();
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherChapter->getUrl())->assertElementNotContains('.action-buttons', 'Delete');
|
|
|
|
$this->get($otherChapter->getUrl('/delete'))->assertRedirect('/');
|
|
|
|
$this->get($ownChapter->getUrl());
|
|
|
|
$this->delete($ownChapter->getUrl())->assertRedirect($bookUrl);
|
|
|
|
$this->get($bookUrl)->assertElementNotContains('.book-content', $ownChapter->name);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_chapter_delete_all_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['chapter-update-all']);
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Chapter $otherChapter */
|
|
|
|
$otherChapter = Chapter::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkAccessPermission('chapter-delete-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherChapter->getUrl() . '/delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherChapter->getUrl() => 'Delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
|
|
|
$bookUrl = $otherChapter->book->getUrl();
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherChapter->getUrl());
|
|
|
|
$this->delete($otherChapter->getUrl())->assertRedirect($bookUrl);
|
|
|
|
$this->get($bookUrl)->assertElementNotContains('.book-content', $otherChapter->name);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_create_own_permissions()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Book $book */
|
|
|
|
$book = Book::query()->first();
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
|
|
|
|
$entities = $this->createEntityChainBelongingToUser($this->user);
|
|
|
|
$ownBook = $entities['book'];
|
|
|
|
$ownChapter = $entities['chapter'];
|
|
|
|
|
2018-03-25 06:34:42 -04:00
|
|
|
$createUrl = $ownBook->getUrl('/create-page');
|
|
|
|
$createUrlChapter = $ownChapter->getUrl('/create-page');
|
2016-03-13 08:04:08 -04:00
|
|
|
$accessUrls = [$createUrl, $createUrlChapter];
|
|
|
|
|
|
|
|
foreach ($accessUrls as $url) {
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($url)->assertRedirect('/');
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->checkAccessPermission('page-create-own', [], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownBook->getUrl() => 'New Page',
|
|
|
|
$ownChapter->getUrl() => 'New Page',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2016-03-13 08:04:08 -04:00
|
|
|
$this->giveUserPermissions($this->user, ['page-create-own']);
|
|
|
|
|
|
|
|
foreach ($accessUrls as $index => $url) {
|
2021-09-18 16:15:39 -04:00
|
|
|
$resp = $this->actingAs($this->user)->get($url);
|
|
|
|
$expectedUrl = Page::query()->where('draft', '=', true)->orderBy('id', 'desc')->first()->getUrl();
|
|
|
|
$resp->assertRedirect($expectedUrl);
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($createUrl);
|
|
|
|
/** @var Page $draft */
|
|
|
|
$draft = Page::query()->where('draft', '=', true)->orderBy('id', 'desc')->first();
|
|
|
|
$this->post($draft->getUrl(), [
|
|
|
|
'name' => 'test page',
|
|
|
|
'html' => 'page desc',
|
|
|
|
])->assertRedirect($ownBook->getUrl('/page/test-page'));
|
|
|
|
|
|
|
|
$this->get($book->getUrl())->assertElementNotContains('.action-buttons', 'New Page');
|
|
|
|
$this->get($book->getUrl('/create-page'))->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($chapter->getUrl())->assertElementNotContains('.action-buttons', 'New Page');
|
|
|
|
$this->get($chapter->getUrl('/create-page'))->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_create_all_permissions()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Book $book */
|
|
|
|
$book = Book::query()->first();
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->first();
|
2018-03-25 06:34:42 -04:00
|
|
|
$createUrl = $book->getUrl('/create-page');
|
2016-03-13 08:04:08 -04:00
|
|
|
|
2018-03-25 06:34:42 -04:00
|
|
|
$createUrlChapter = $chapter->getUrl('/create-page');
|
2016-03-13 08:04:08 -04:00
|
|
|
$accessUrls = [$createUrl, $createUrlChapter];
|
|
|
|
|
|
|
|
foreach ($accessUrls as $url) {
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->get($url)->assertRedirect('/');
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->checkAccessPermission('page-create-all', [], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$book->getUrl() => 'New Page',
|
|
|
|
$chapter->getUrl() => 'New Page',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2016-03-13 08:04:08 -04:00
|
|
|
$this->giveUserPermissions($this->user, ['page-create-all']);
|
|
|
|
|
|
|
|
foreach ($accessUrls as $index => $url) {
|
2021-09-18 16:15:39 -04:00
|
|
|
$resp = $this->actingAs($this->user)->get($url);
|
|
|
|
$expectedUrl = Page::query()->where('draft', '=', true)->orderBy('id', 'desc')->first()->getUrl();
|
|
|
|
$resp->assertRedirect($expectedUrl);
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($createUrl);
|
|
|
|
/** @var Page $draft */
|
|
|
|
$draft = Page::query()->where('draft', '=', true)->orderByDesc('id')->first();
|
|
|
|
$this->post($draft->getUrl(), [
|
|
|
|
'name' => 'test page',
|
|
|
|
'html' => 'page desc',
|
|
|
|
])->assertRedirect($book->getUrl('/page/test-page'));
|
2016-03-05 07:09:09 -05:00
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($chapter->getUrl('/create-page'));
|
|
|
|
/** @var Page $draft */
|
|
|
|
$draft = Page::query()->where('draft', '=', true)->orderByDesc('id')->first();
|
|
|
|
$this->post($draft->getUrl(), [
|
|
|
|
'name' => 'new test page',
|
|
|
|
'html' => 'page desc',
|
|
|
|
])->assertRedirect($book->getUrl('/page/new-test-page'));
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_edit_own_permission()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Page $otherPage */
|
|
|
|
$otherPage = Page::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$ownPage = $this->createEntityChainBelongingToUser($this->user)['page'];
|
|
|
|
$this->checkAccessPermission('page-update-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownPage->getUrl() . '/edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownPage->getUrl() => 'Edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherPage->getUrl())->assertElementNotContains('.action-buttons', 'Edit');
|
|
|
|
$this->get($otherPage->getUrl() . '/edit')->assertRedirect('/');
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_edit_all_permission()
|
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Page $otherPage */
|
|
|
|
$otherPage = Page::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkAccessPermission('page-update-all', [
|
2021-09-18 16:15:39 -04:00
|
|
|
$otherPage->getUrl('/edit'),
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherPage->getUrl() => 'Edit',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_delete_own_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['page-update-all']);
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Page $otherPage */
|
|
|
|
$otherPage = Page::query()->first();
|
2016-03-05 07:09:09 -05:00
|
|
|
$ownPage = $this->createEntityChainBelongingToUser($this->user)['page'];
|
|
|
|
$this->checkAccessPermission('page-delete-own', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownPage->getUrl() . '/delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$ownPage->getUrl() => 'Delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2019-12-21 08:48:44 -05:00
|
|
|
$parent = $ownPage->chapter ?? $ownPage->book;
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherPage->getUrl())->assertElementNotContains('.action-buttons', 'Delete');
|
|
|
|
$this->get($otherPage->getUrl('/delete'))->assertRedirect('/');
|
|
|
|
$this->get($ownPage->getUrl());
|
|
|
|
$this->delete($ownPage->getUrl())->assertRedirect($parent->getUrl());
|
|
|
|
$this->get($parent->getUrl())->assertElementNotContains('.book-content', $ownPage->name);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_delete_all_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['page-update-all']);
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Page $otherPage */
|
|
|
|
$otherPage = Page::query()->first();
|
|
|
|
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkAccessPermission('page-delete-all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherPage->getUrl() . '/delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
], [
|
2021-06-26 11:23:15 -04:00
|
|
|
$otherPage->getUrl() => 'Delete',
|
2016-03-05 07:09:09 -05:00
|
|
|
]);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Entity $parent */
|
2019-12-21 08:48:44 -05:00
|
|
|
$parent = $otherPage->chapter ?? $otherPage->book;
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->get($otherPage->getUrl());
|
|
|
|
|
|
|
|
$this->delete($otherPage->getUrl())->assertRedirect($parent->getUrl());
|
|
|
|
$this->get($parent->getUrl())->assertDontSee($otherPage->name);
|
2016-03-05 07:09:09 -05:00
|
|
|
}
|
|
|
|
|
2016-09-29 12:07:58 -04:00
|
|
|
public function test_public_role_visible_in_user_edit_screen()
|
2016-05-01 14:36:53 -04:00
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var User $user */
|
|
|
|
$user = User::query()->first();
|
2020-08-04 09:55:01 -04:00
|
|
|
$adminRole = Role::getSystemRole('admin');
|
|
|
|
$publicRole = Role::getSystemRole('public');
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->asAdmin()->get('/settings/users/' . $user->id)
|
|
|
|
->assertElementExists('[name="roles[' . $adminRole->id . ']"]')
|
|
|
|
->assertElementExists('[name="roles[' . $publicRole->id . ']"]');
|
2016-05-01 14:36:53 -04:00
|
|
|
}
|
|
|
|
|
2016-09-29 12:07:58 -04:00
|
|
|
public function test_public_role_visible_in_role_listing()
|
2016-05-01 14:36:53 -04:00
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->asAdmin()->get('/settings/roles')
|
|
|
|
->assertSee('Admin')
|
|
|
|
->assertSee('Public');
|
2016-05-01 14:36:53 -04:00
|
|
|
}
|
|
|
|
|
2016-09-29 12:07:58 -04:00
|
|
|
public function test_public_role_visible_in_default_role_setting()
|
2016-05-01 14:36:53 -04:00
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->asAdmin()->get('/settings')
|
|
|
|
->assertElementExists('[data-system-role-name="admin"]')
|
|
|
|
->assertElementExists('[data-system-role-name="public"]');
|
2016-05-01 14:36:53 -04:00
|
|
|
}
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
public function test_public_role_not_deletable()
|
2016-09-29 12:07:58 -04:00
|
|
|
{
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Role $publicRole */
|
|
|
|
$publicRole = Role::getSystemRole('public');
|
|
|
|
$resp = $this->asAdmin()->delete('/settings/roles/delete/' . $publicRole->id);
|
|
|
|
$resp->assertRedirect('/');
|
|
|
|
|
|
|
|
$this->get('/settings/roles/delete/' . $publicRole->id);
|
|
|
|
$resp = $this->delete('/settings/roles/delete/' . $publicRole->id);
|
|
|
|
$resp->assertRedirect('/settings/roles/delete/' . $publicRole->id);
|
|
|
|
$resp = $this->get('/settings/roles/delete/' . $publicRole->id);
|
|
|
|
$resp->assertSee('This role is a system role and cannot be deleted');
|
2016-09-29 12:07:58 -04:00
|
|
|
}
|
|
|
|
|
2017-01-08 14:19:30 -05:00
|
|
|
public function test_image_delete_own_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['image-update-all']);
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->first();
|
2021-10-30 16:29:59 -04:00
|
|
|
$image = Image::factory()->create([
|
2021-09-18 16:15:39 -04:00
|
|
|
'uploaded_to' => $page->id,
|
2021-09-18 16:21:44 -04:00
|
|
|
'created_by' => $this->user->id,
|
|
|
|
'updated_by' => $this->user->id,
|
2021-09-18 16:15:39 -04:00
|
|
|
]);
|
2017-01-08 14:19:30 -05:00
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->json('delete', '/images/' . $image->id)->assertStatus(403);
|
2017-01-08 14:19:30 -05:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['image-delete-own']);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->json('delete', '/images/' . $image->id)->assertOk();
|
|
|
|
$this->assertDatabaseMissing('images', ['id' => $image->id]);
|
2017-01-08 14:19:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_image_delete_all_permission()
|
|
|
|
{
|
|
|
|
$this->giveUserPermissions($this->user, ['image-update-all']);
|
|
|
|
$admin = $this->getAdmin();
|
2021-09-18 16:15:39 -04:00
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->first();
|
2021-10-30 16:29:59 -04:00
|
|
|
$image = Image::factory()->create(['uploaded_to' => $page->id, 'created_by' => $admin->id, 'updated_by' => $admin->id]);
|
2017-01-08 14:19:30 -05:00
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->json('delete', '/images/' . $image->id)->assertStatus(403);
|
2017-01-08 14:19:30 -05:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['image-delete-own']);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->json('delete', '/images/' . $image->id)->assertStatus(403);
|
2017-01-08 14:19:30 -05:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['image-delete-all']);
|
|
|
|
|
2021-09-18 16:15:39 -04:00
|
|
|
$this->actingAs($this->user)->json('delete', '/images/' . $image->id)->assertOk();
|
|
|
|
$this->assertDatabaseMissing('images', ['id' => $image->id]);
|
2017-01-08 14:19:30 -05:00
|
|
|
}
|
|
|
|
|
2017-07-02 10:40:42 -04:00
|
|
|
public function test_role_permission_removal()
|
|
|
|
{
|
|
|
|
// To cover issue fixed in f99c8ff99aee9beb8c692f36d4b84dc6e651e50a.
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->first();
|
2020-11-20 13:53:01 -05:00
|
|
|
$viewerRole = Role::getRole('viewer');
|
2017-07-02 10:40:42 -04:00
|
|
|
$viewer = $this->getViewer();
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($viewer)->get($page->getUrl())->assertOk();
|
2017-07-02 10:40:42 -04:00
|
|
|
|
|
|
|
$this->asAdmin()->put('/settings/roles/' . $viewerRole->id, [
|
|
|
|
'display_name' => $viewerRole->display_name,
|
2021-06-26 11:23:15 -04:00
|
|
|
'description' => $viewerRole->description,
|
|
|
|
'permission' => [],
|
2021-09-17 19:33:03 -04:00
|
|
|
])->assertStatus(302);
|
2017-07-02 10:40:42 -04:00
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($viewer)->get($page->getUrl())->assertStatus(404);
|
2017-07-02 10:40:42 -04:00
|
|
|
}
|
|
|
|
|
2017-07-02 10:59:40 -04:00
|
|
|
public function test_empty_state_actions_not_visible_without_permission()
|
|
|
|
{
|
|
|
|
$admin = $this->getAdmin();
|
|
|
|
// Book links
|
2021-10-30 16:29:59 -04:00
|
|
|
$book = Book::factory()->create(['created_by' => $admin->id, 'updated_by' => $admin->id]);
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->regenEntityPermissions($book);
|
|
|
|
$this->actingAs($this->getViewer())->get($book->getUrl())
|
|
|
|
->assertDontSee('Create a new page')
|
|
|
|
->assertDontSee('Add a chapter');
|
2017-07-02 10:59:40 -04:00
|
|
|
|
|
|
|
// Chapter links
|
2021-10-30 16:29:59 -04:00
|
|
|
$chapter = Chapter::factory()->create(['created_by' => $admin->id, 'updated_by' => $admin->id, 'book_id' => $book->id]);
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->regenEntityPermissions($chapter);
|
|
|
|
$this->actingAs($this->getViewer())->get($chapter->getUrl())
|
|
|
|
->assertDontSee('Create a new page')
|
|
|
|
->assertDontSee('Sort the current book');
|
2017-07-02 10:59:40 -04:00
|
|
|
}
|
|
|
|
|
2021-06-26 11:23:15 -04:00
|
|
|
public function test_comment_create_permission()
|
|
|
|
{
|
2017-06-12 17:01:17 -04:00
|
|
|
$ownPage = $this->createEntityChainBelongingToUser($this->user)['page'];
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)
|
|
|
|
->addComment($ownPage)
|
|
|
|
->assertStatus(403);
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['comment-create-all']);
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)
|
|
|
|
->addComment($ownPage)
|
|
|
|
->assertOk();
|
2017-06-12 17:01:17 -04:00
|
|
|
}
|
|
|
|
|
2021-06-26 11:23:15 -04:00
|
|
|
public function test_comment_update_own_permission()
|
|
|
|
{
|
2017-06-12 17:01:17 -04:00
|
|
|
$ownPage = $this->createEntityChainBelongingToUser($this->user)['page'];
|
|
|
|
$this->giveUserPermissions($this->user, ['comment-create-all']);
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->addComment($ownPage);
|
|
|
|
/** @var Comment $comment */
|
|
|
|
$comment = $ownPage->comments()->latest()->first();
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
// no comment-update-own
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->updateComment($comment)->assertStatus(403);
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['comment-update-own']);
|
|
|
|
|
|
|
|
// now has comment-update-own
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->updateComment($comment)->assertOk();
|
2017-06-12 17:01:17 -04:00
|
|
|
}
|
|
|
|
|
2021-06-26 11:23:15 -04:00
|
|
|
public function test_comment_update_all_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Page $ownPage */
|
2017-06-12 17:01:17 -04:00
|
|
|
$ownPage = $this->createEntityChainBelongingToUser($this->user)['page'];
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->asAdmin()->addComment($ownPage);
|
|
|
|
/** @var Comment $comment */
|
|
|
|
$comment = $ownPage->comments()->latest()->first();
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
// no comment-update-all
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->updateComment($comment)->assertStatus(403);
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['comment-update-all']);
|
|
|
|
|
|
|
|
// now has comment-update-all
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->updateComment($comment)->assertOk();
|
2017-06-12 17:01:17 -04:00
|
|
|
}
|
|
|
|
|
2021-06-26 11:23:15 -04:00
|
|
|
public function test_comment_delete_own_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Page $ownPage */
|
2017-06-12 17:01:17 -04:00
|
|
|
$ownPage = $this->createEntityChainBelongingToUser($this->user)['page'];
|
|
|
|
$this->giveUserPermissions($this->user, ['comment-create-all']);
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->addComment($ownPage);
|
|
|
|
|
|
|
|
/** @var Comment $comment */
|
|
|
|
$comment = $ownPage->comments()->latest()->first();
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
// no comment-delete-own
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->deleteComment($comment)->assertStatus(403);
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['comment-delete-own']);
|
|
|
|
|
|
|
|
// now has comment-update-own
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->deleteComment($comment)->assertOk();
|
2017-06-12 17:01:17 -04:00
|
|
|
}
|
|
|
|
|
2021-06-26 11:23:15 -04:00
|
|
|
public function test_comment_delete_all_permission()
|
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
/** @var Page $ownPage */
|
2017-06-12 17:01:17 -04:00
|
|
|
$ownPage = $this->createEntityChainBelongingToUser($this->user)['page'];
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->asAdmin()->addComment($ownPage);
|
|
|
|
/** @var Comment $comment */
|
|
|
|
$comment = $ownPage->comments()->latest()->first();
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
// no comment-delete-all
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->deleteComment($comment)->assertStatus(403);
|
2017-06-12 17:01:17 -04:00
|
|
|
|
|
|
|
$this->giveUserPermissions($this->user, ['comment-delete-all']);
|
|
|
|
|
|
|
|
// now has comment-delete-all
|
2021-09-17 19:33:03 -04:00
|
|
|
$this->actingAs($this->user)->deleteComment($comment)->assertOk();
|
2017-06-12 17:01:17 -04:00
|
|
|
}
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
private function addComment(Page $page): TestResponse
|
2021-06-26 11:23:15 -04:00
|
|
|
{
|
2021-10-30 16:29:59 -04:00
|
|
|
$comment = Comment::factory()->make();
|
2021-09-18 16:21:44 -04:00
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
return $this->postJson("/comment/$page->id", $comment->only('text', 'html'));
|
2017-06-12 17:01:17 -04:00
|
|
|
}
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
private function updateComment(Comment $comment): TestResponse
|
2021-06-26 11:23:15 -04:00
|
|
|
{
|
2021-10-30 16:29:59 -04:00
|
|
|
$commentData = Comment::factory()->make();
|
2021-09-18 16:21:44 -04:00
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
return $this->putJson("/comment/{$comment->id}", $commentData->only('text', 'html'));
|
2017-06-12 17:01:17 -04:00
|
|
|
}
|
|
|
|
|
2021-09-17 19:33:03 -04:00
|
|
|
private function deleteComment(Comment $comment): TestResponse
|
2021-06-26 11:23:15 -04:00
|
|
|
{
|
2021-09-17 19:33:03 -04:00
|
|
|
return $this->json('DELETE', '/comment/' . $comment->id);
|
2021-06-26 11:23:15 -04:00
|
|
|
}
|
2016-02-27 14:24:42 -05:00
|
|
|
}
|