You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

55 lines
1.5 KiB

<?php
namespace Tests\Feature\Auth;
use Tests\TestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class ChangePasswordTest extends TestCase
{
use DatabaseMigrations;
/** @test */
public function user_can_change_password()
{
$user = $this->loginAsUser(['password' => bcrypt('secret')]);
$this->visit(route('home'));
$this->click(trans('auth.change_password'));
$this->submitForm(trans('auth.change_password'), [
'old_password' => 'secret',
'new_password' => 'rahasia',
'new_password_confirmation' => 'rahasia',
]);
$this->seeText(trans('auth.change_password_success'));
$this->assertTrue(
app('hash')->check('rahasia', $user->password),
'The password should changed!'
);
}
/** @test */
public function user_cannot_change_password_if_old_password_wrong()
{
$user = $this->loginAsUser(['password' => bcrypt('secret')]);
$this->visit(route('home'));
$this->click(trans('auth.change_password'));
$this->submitForm(trans('auth.change_password'), [
'old_password' => 'member1',
'new_password' => 'rahasia',
'new_password_confirmation' => 'rahasia',
]);
$this->seeText(trans('passwords.old_password'));
$this->assertTrue(
app('hash')->check('secret', $user->password),
'The password shouldn\'t changed!'
);
}
}