2023-08-30 11:13:38 -07:00
|
|
|
<?php
|
|
|
|
|
2024-06-04 10:48:53 -07:00
|
|
|
namespace Tests\Feature\Users\Api;
|
2023-08-30 11:13:38 -07:00
|
|
|
|
2024-04-17 02:47:48 -07:00
|
|
|
use App\Models\Company;
|
2024-06-03 16:49:44 -07:00
|
|
|
use App\Models\Department;
|
2024-04-17 15:23:26 -07:00
|
|
|
use App\Models\Group;
|
2024-06-03 16:49:44 -07:00
|
|
|
use App\Models\Location;
|
2023-08-30 11:13:38 -07:00
|
|
|
use App\Models\User;
|
2024-06-03 16:49:44 -07:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2023-08-30 11:13:38 -07:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
2024-06-03 16:50:56 -07:00
|
|
|
class UpdateUserTest extends TestCase
|
2023-08-30 11:13:38 -07:00
|
|
|
{
|
2024-06-03 16:49:44 -07:00
|
|
|
public function testCanUpdateUserViaPatch()
|
|
|
|
{
|
|
|
|
$admin = User::factory()->superuser()->create();
|
|
|
|
$manager = User::factory()->create();
|
|
|
|
$company = Company::factory()->create();
|
|
|
|
$department = Department::factory()->create();
|
|
|
|
$location = Location::factory()->create();
|
|
|
|
[$groupA, $groupB] = Group::factory()->count(2)->create();
|
|
|
|
|
|
|
|
$user = User::factory()->create([
|
|
|
|
'activated' => false,
|
|
|
|
'remote' => false,
|
|
|
|
'vip' => false,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($admin)
|
|
|
|
->patchJson(route('api.users.update', $user), [
|
|
|
|
'first_name' => 'Mabel',
|
|
|
|
'last_name' => 'Mora',
|
|
|
|
'username' => 'mabel',
|
|
|
|
'password' => 'super-secret',
|
|
|
|
'email' => 'mabel@onlymurderspod.com',
|
|
|
|
'permissions' => '{"a.new.permission":"1"}',
|
|
|
|
'activated' => true,
|
|
|
|
'phone' => '619-555-5555',
|
|
|
|
'jobtitle' => 'Host',
|
|
|
|
'manager_id' => $manager->id,
|
|
|
|
'employee_num' => '1111',
|
|
|
|
'notes' => 'Pretty good artist',
|
|
|
|
'company_id' => $company->id,
|
|
|
|
'department_id' => $department->id,
|
|
|
|
'location_id' => $location->id,
|
|
|
|
'remote' => true,
|
|
|
|
'groups' => $groupA->id,
|
|
|
|
'vip' => true,
|
|
|
|
'start_date' => '2021-08-01',
|
|
|
|
'end_date' => '2025-12-31',
|
|
|
|
])
|
|
|
|
->assertOk();
|
|
|
|
|
|
|
|
$user->refresh();
|
|
|
|
$this->assertEquals('Mabel', $user->first_name, 'First name was not updated');
|
|
|
|
$this->assertEquals('Mora', $user->last_name, 'Last name was not updated');
|
|
|
|
$this->assertEquals('mabel', $user->username, 'Username was not updated');
|
|
|
|
$this->assertTrue(Hash::check('super-secret', $user->password), 'Password was not updated');
|
|
|
|
$this->assertEquals('mabel@onlymurderspod.com', $user->email, 'Email was not updated');
|
|
|
|
$this->assertArrayHasKey('a.new.permission', $user->decodePermissions(), 'Permissions were not updated');
|
|
|
|
$this->assertTrue((bool) $user->activated, 'User not marked as activated');
|
|
|
|
$this->assertEquals('619-555-5555', $user->phone, 'Phone was not updated');
|
|
|
|
$this->assertEquals('Host', $user->jobtitle, 'Job title was not updated');
|
|
|
|
$this->assertTrue($user->manager->is($manager), 'Manager was not updated');
|
|
|
|
$this->assertEquals('1111', $user->employee_num, 'Employee number was not updated');
|
|
|
|
$this->assertEquals('Pretty good artist', $user->notes, 'Notes was not updated');
|
|
|
|
$this->assertTrue($user->company->is($company), 'Company was not updated');
|
|
|
|
$this->assertTrue($user->department->is($department), 'Department was not updated');
|
|
|
|
$this->assertTrue($user->location->is($location), 'Location was not updated');
|
|
|
|
$this->assertEquals(1, $user->remote, 'Remote was not updated');
|
|
|
|
$this->assertTrue($user->groups->contains($groupA), 'Groups were not updated');
|
|
|
|
$this->assertEquals(1, $user->vip, 'VIP was not updated');
|
|
|
|
$this->assertEquals('2021-08-01', $user->start_date, 'Start date was not updated');
|
|
|
|
$this->assertEquals('2025-12-31', $user->end_date, 'End date was not updated');
|
|
|
|
|
|
|
|
// `groups` can be an id or array or ids
|
|
|
|
$this->patch(route('api.users.update', $user), ['groups' => [$groupA->id, $groupB->id]]);
|
|
|
|
|
|
|
|
$user->refresh();
|
|
|
|
$this->assertTrue($user->groups->contains($groupA), 'Not part of expected group');
|
|
|
|
$this->assertTrue($user->groups->contains($groupB), 'Not part of expected group');
|
|
|
|
}
|
|
|
|
|
2023-08-30 11:13:38 -07:00
|
|
|
public function testApiUsersCanBeActivatedWithNumber()
|
|
|
|
{
|
|
|
|
$admin = User::factory()->superuser()->create();
|
|
|
|
$user = User::factory()->create(['activated' => 0]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($admin)
|
|
|
|
->patch(route('api.users.update', $user), [
|
|
|
|
'activated' => 1,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $user->refresh()->activated);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testApiUsersCanBeActivatedWithBooleanTrue()
|
|
|
|
{
|
|
|
|
$admin = User::factory()->superuser()->create();
|
|
|
|
$user = User::factory()->create(['activated' => false]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($admin)
|
|
|
|
->patch(route('api.users.update', $user), [
|
|
|
|
'activated' => true,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $user->refresh()->activated);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testApiUsersCanBeDeactivatedWithNumber()
|
|
|
|
{
|
|
|
|
$admin = User::factory()->superuser()->create();
|
|
|
|
$user = User::factory()->create(['activated' => true]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($admin)
|
|
|
|
->patch(route('api.users.update', $user), [
|
|
|
|
'activated' => 0,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(0, $user->refresh()->activated);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testApiUsersCanBeDeactivatedWithBooleanFalse()
|
|
|
|
{
|
|
|
|
$admin = User::factory()->superuser()->create();
|
|
|
|
$user = User::factory()->create(['activated' => true]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($admin)
|
|
|
|
->patch(route('api.users.update', $user), [
|
|
|
|
'activated' => false,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(0, $user->refresh()->activated);
|
|
|
|
}
|
2024-04-17 02:47:48 -07:00
|
|
|
|
|
|
|
public function testUsersScopedToCompanyDuringUpdateWhenMultipleFullCompanySupportEnabled()
|
|
|
|
{
|
|
|
|
$this->settings->enableMultipleFullCompanySupport();
|
|
|
|
|
|
|
|
$companyA = Company::factory()->create(['name'=>'Company A']);
|
|
|
|
$companyB = Company::factory()->create(['name'=>'Company B']);
|
|
|
|
|
|
|
|
$adminA = User::factory(['company_id' => $companyA->id])->admin()->create();
|
|
|
|
$adminB = User::factory(['company_id' => $companyB->id])->admin()->create();
|
|
|
|
$adminNoCompany = User::factory(['company_id' => null])->admin()->create();
|
|
|
|
|
2024-04-17 12:29:01 -07:00
|
|
|
// Create users that belongs to company A and B and one that is unscoped
|
2024-04-17 12:29:51 -07:00
|
|
|
$scoped_user_in_companyA = User::factory()->create(['company_id' => $companyA->id]);
|
|
|
|
$scoped_user_in_companyB = User::factory()->create(['company_id' => $companyB->id]);
|
|
|
|
$scoped_user_in_no_company = User::factory()->create(['company_id' => null]);
|
2024-04-17 02:47:48 -07:00
|
|
|
|
|
|
|
// Admin for Company A should allow updating user from Company A
|
|
|
|
$this->actingAsForApi($adminA)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_companyA))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(200);
|
|
|
|
|
|
|
|
// Admin for Company A should get denied updating user from Company B
|
|
|
|
$this->actingAsForApi($adminA)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_companyB))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(403);
|
|
|
|
|
|
|
|
// Admin for Company A should get denied updating user without a company
|
|
|
|
$this->actingAsForApi($adminA)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_no_company))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(403);
|
|
|
|
|
|
|
|
// Admin for Company B should allow updating user from Company B
|
|
|
|
$this->actingAsForApi($adminB)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_companyB))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(200);
|
|
|
|
|
|
|
|
// Admin for Company B should get denied updating user from Company A
|
|
|
|
$this->actingAsForApi($adminB)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_companyA))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(403);
|
|
|
|
|
|
|
|
// Admin for Company B should get denied updating user without a company
|
|
|
|
$this->actingAsForApi($adminB)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_no_company))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(403);
|
|
|
|
|
|
|
|
// Admin without a company should allow updating user without a company
|
|
|
|
$this->actingAsForApi($adminNoCompany)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_no_company))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(200);
|
|
|
|
|
|
|
|
// Admin without a company should get denied updating user from Company A
|
|
|
|
$this->actingAsForApi($adminNoCompany)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_companyA))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(403);
|
|
|
|
|
|
|
|
// Admin without a company should get denied updating user from Company B
|
|
|
|
$this->actingAsForApi($adminNoCompany)
|
2024-04-17 12:29:01 -07:00
|
|
|
->patchJson(route('api.users.update', $scoped_user_in_companyB))
|
2024-04-17 02:47:48 -07:00
|
|
|
->assertStatus(403);
|
2024-04-17 15:23:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUserGroupsAreOnlyUpdatedIfAuthenticatedUserIsSuperUser()
|
|
|
|
{
|
|
|
|
$groupToJoin = Group::factory()->create();
|
|
|
|
|
2024-05-21 01:56:57 -07:00
|
|
|
$userWhoCanEditUsers = User::factory()->editUsers()->create();
|
2024-04-17 15:23:26 -07:00
|
|
|
$superUser = User::factory()->superuser()->create();
|
|
|
|
|
2024-05-22 03:00:31 -07:00
|
|
|
$userToUpdateByUserWhoCanEditUsers = User::factory()->create();
|
|
|
|
$userToUpdateByToUserBySuperuser = User::factory()->create();
|
2024-04-17 15:23:26 -07:00
|
|
|
|
2024-05-21 01:56:57 -07:00
|
|
|
$this->actingAsForApi($userWhoCanEditUsers)
|
2024-05-22 03:00:47 -07:00
|
|
|
->patchJson(route('api.users.update', $userToUpdateByUserWhoCanEditUsers), [
|
2024-04-17 15:23:26 -07:00
|
|
|
'groups' => [$groupToJoin->id],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($superUser)
|
2024-05-22 03:03:38 -07:00
|
|
|
->patchJson(route('api.users.update', $userToUpdateByToUserBySuperuser), [
|
2024-04-17 15:23:26 -07:00
|
|
|
'groups' => [$groupToJoin->id],
|
|
|
|
]);
|
|
|
|
|
2024-05-22 03:00:52 -07:00
|
|
|
$this->assertFalse($userToUpdateByUserWhoCanEditUsers->refresh()->groups->contains($groupToJoin),
|
2024-04-17 15:23:26 -07:00
|
|
|
'Non-super-user was able to modify user group'
|
|
|
|
);
|
2024-05-21 01:56:57 -07:00
|
|
|
|
2024-05-22 03:03:46 -07:00
|
|
|
$this->assertTrue($userToUpdateByToUserBySuperuser->refresh()->groups->contains($groupToJoin));
|
2024-04-17 15:23:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUserGroupsCanBeClearedBySuperUser()
|
|
|
|
{
|
|
|
|
$normalUser = User::factory()->editUsers()->create();
|
|
|
|
$superUser = User::factory()->superuser()->create();
|
|
|
|
|
|
|
|
$oneUserToUpdate = User::factory()->create();
|
|
|
|
$anotherUserToUpdate = User::factory()->create();
|
|
|
|
|
|
|
|
$joinedGroup = Group::factory()->create();
|
|
|
|
$oneUserToUpdate->groups()->sync([$joinedGroup->id]);
|
|
|
|
$anotherUserToUpdate->groups()->sync([$joinedGroup->id]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($normalUser)
|
|
|
|
->patchJson(route('api.users.update', $oneUserToUpdate), [
|
|
|
|
'groups' => null,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($superUser)
|
|
|
|
->patchJson(route('api.users.update', $anotherUserToUpdate), [
|
|
|
|
'groups' => null,
|
|
|
|
]);
|
2024-04-17 02:47:48 -07:00
|
|
|
|
2024-04-17 15:23:26 -07:00
|
|
|
$this->assertTrue($oneUserToUpdate->refresh()->groups->contains($joinedGroup));
|
|
|
|
$this->assertFalse($anotherUserToUpdate->refresh()->groups->contains($joinedGroup));
|
2024-04-17 02:47:48 -07:00
|
|
|
}
|
2024-05-21 01:56:57 -07:00
|
|
|
|
|
|
|
public function testNonSuperuserCannotUpdateOwnGroups()
|
|
|
|
{
|
|
|
|
$groupToJoin = Group::factory()->create();
|
|
|
|
$user = User::factory()->editUsers()->create();
|
|
|
|
|
|
|
|
$this->actingAsForApi($user)
|
|
|
|
->patchJson(route('api.users.update', $user), [
|
|
|
|
'groups' => [$groupToJoin->id],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertFalse($user->refresh()->groups->contains($groupToJoin),
|
|
|
|
'Non-super-user was able to modify user group'
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testNonSuperuserCannotUpdateGroups()
|
|
|
|
{
|
|
|
|
$user = User::factory()->editUsers()->create();
|
|
|
|
$group = Group::factory()->create();
|
|
|
|
$user->groups()->sync([$group->id]);
|
|
|
|
$newGroupToJoin = Group::factory()->create();
|
|
|
|
|
|
|
|
$this->actingAsForApi($user)
|
|
|
|
->patchJson(route('api.users.update', $user), [
|
|
|
|
'groups' => [$newGroupToJoin->id],
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertFalse($user->refresh()->groups->contains($newGroupToJoin),
|
|
|
|
'Non-super-user was able to modify user group membership'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue($user->refresh()->groups->contains($group));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUsersGroupsAreNotClearedIfNoGroupPassedBySuperUser()
|
|
|
|
{
|
|
|
|
$user = User::factory()->create();
|
|
|
|
$superUser = User::factory()->superuser()->create();
|
|
|
|
|
|
|
|
$group = Group::factory()->create();
|
|
|
|
$user->groups()->sync([$group->id]);
|
|
|
|
|
|
|
|
$this->actingAsForApi($superUser)
|
|
|
|
->patchJson(route('api.users.update', $user), []);
|
|
|
|
|
|
|
|
$this->assertTrue($user->refresh()->groups->contains($group));
|
|
|
|
}
|
|
|
|
|
2024-05-22 04:35:03 -07:00
|
|
|
public function testMultipleGroupsUpdateBySuperUser()
|
|
|
|
{
|
|
|
|
$user = User::factory()->create();
|
|
|
|
$superUser = User::factory()->superuser()->create();
|
|
|
|
|
|
|
|
$groupA = Group::factory()->create(['name'=>'Group A']);
|
|
|
|
$groupB = Group::factory()->create(['name'=>'Group B']);
|
|
|
|
|
2024-05-22 04:37:49 -07:00
|
|
|
$this->actingAsForApi($superUser)
|
2024-05-22 04:35:03 -07:00
|
|
|
->patchJson(route('api.users.update', $user), [
|
|
|
|
'groups' => [$groupA->id, $groupB->id],
|
|
|
|
])->json();
|
|
|
|
|
|
|
|
$this->assertTrue($user->refresh()->groups->contains($groupA));
|
|
|
|
$this->assertTrue($user->refresh()->groups->contains($groupB));
|
|
|
|
}
|
|
|
|
|
2023-08-30 11:13:38 -07:00
|
|
|
}
|