koel/tests/Feature/ProfileTest.php
2024-07-06 17:44:42 +02:00

58 lines
1.5 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Support\Facades\Hash;
use Tests\TestCase;
use function Tests\create_user;
class ProfileTest extends TestCase
{
public function testUpdateProfileRequiresCurrentPassword(): void
{
$this->putAs('api/me', [
'name' => 'Foo',
'email' => 'bar@baz.com',
])
->assertUnprocessable();
}
public function testUpdateProfileWithoutNewPassword(): void
{
$user = create_user(['password' => Hash::make('secret')]);
$this->putAs('api/me', [
'name' => 'Foo',
'email' => 'bar@baz.com',
'current_password' => 'secret',
], $user);
$user->refresh();
self::assertSame('Foo', $user->name);
self::assertSame('bar@baz.com', $user->email);
self::assertTrue(Hash::check('secret', $user->password));
}
public function testUpdateProfileWithNewPassword(): void
{
$user = create_user(['password' => Hash::make('secret')]);
$token = $this->putAs('api/me', [
'name' => 'Foo',
'email' => 'bar@baz.com',
'new_password' => 'new-secret',
'current_password' => 'secret',
], $user)
->headers
->get('Authorization');
$user->refresh();
self::assertNotNull($token);
self::assertSame('Foo', $user->name);
self::assertSame('bar@baz.com', $user->email);
self::assertTrue(Hash::check('new-secret', $user->password));
}
}