mirror of https://github.com/kcal-app/kcal.git
107 lines
2.8 KiB
PHP
107 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Http\Controllers;
|
|
|
|
use App\Http\Controllers\UserController;
|
|
use App\Models\User;
|
|
use Database\Factories\UserFactory;
|
|
|
|
class UserControllerTest extends HttpControllerTestCase
|
|
{
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function class(): string
|
|
{
|
|
return UserController::class;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function factory(): UserFactory
|
|
{
|
|
return User::factory();
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function routeKey(): string
|
|
{
|
|
return 'user';
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected function createInstance(): User
|
|
{
|
|
return $this->factory()->createOneWithMedia();
|
|
}
|
|
|
|
/**
|
|
* @doesNotPerformAssertions
|
|
*/
|
|
public function testCanViewInstance(): void
|
|
{
|
|
$this->setName('can *not* view instance');
|
|
// Users are not independently viewable.
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function testCanAddInstance(): void
|
|
{
|
|
$create_url = action([$this->class(), 'create']);
|
|
$response = $this->get($create_url);
|
|
$response->assertOk();
|
|
$instance = $this->factory()->make();
|
|
$attributes = $instance->toArray();
|
|
$attributes['password'] = 'password';
|
|
$attributes['password_confirmation'] = $attributes['password'];
|
|
$store_url = action([$this->class(), 'store']);
|
|
$response = $this->post($store_url, $attributes);
|
|
$response->assertSessionHasNoErrors();
|
|
}
|
|
|
|
public function testCanChangeUserPassword(): void {
|
|
$user = $this->createInstance();
|
|
$user->password = 'password1';
|
|
$user->save();
|
|
|
|
$input = $user->toArray();
|
|
$input['password'] = 'password2';
|
|
$input['password_confirmation'] = 'password2';
|
|
|
|
$put_url = action([$this->class(), 'update'], [$this->routeKey() => $user]);
|
|
$response = $this->put($put_url, $input);
|
|
$response->assertSessionHasNoErrors();
|
|
|
|
$user->refresh();
|
|
$this->logout();
|
|
$response = $this-> post('/login', ['username' => $user->username, 'password' => 'password1']);
|
|
$response->assertSessionHasErrors();
|
|
$this->post('/login', ['username' => $user->username, 'password' => 'password2']);
|
|
$this->assertAuthenticatedAs($user);
|
|
}
|
|
|
|
public function testCanNotDeleteSelf(): void {
|
|
$user = User::first();
|
|
$edit_url = action([$this->class(), 'delete'], [$this->routeKey() => $user]);
|
|
$response = $this->get($edit_url);
|
|
$response->assertForbidden();
|
|
}
|
|
|
|
public function testCanNotAccessIndexAsNonAdmin(): void {
|
|
$this->logout();
|
|
$this->loginUser();
|
|
$index_url = action([$this->class(), 'index']);
|
|
$response = $this->get($index_url);
|
|
$response->assertForbidden();
|
|
}
|
|
|
|
}
|