Browse Source

Add change password test

pull/15/head
Nafies Luthfi 7 years ago
parent
commit
dfb1cbdef2
  1. 55
      tests/Feature/ChangePasswordTest.php

55
tests/Feature/ChangePasswordTest.php

@ -0,0 +1,55 @@
<?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!'
);
}
}
Loading…
Cancel
Save