2021-09-24 20:28:51 +02:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-09-24 20:28:51 +02:00
|
|
|
namespace Engelsystem\Test\Unit\Controllers\Admin;
|
|
|
|
|
2023-03-05 03:00:38 +01:00
|
|
|
use Engelsystem\Config\GoodieType;
|
2021-09-24 20:28:51 +02:00
|
|
|
use Engelsystem\Controllers\Admin\UserShirtController;
|
|
|
|
use Engelsystem\Helpers\Authenticator;
|
|
|
|
use Engelsystem\Http\Redirector;
|
|
|
|
use Engelsystem\Http\Validation\Validator;
|
|
|
|
use Engelsystem\Models\User\PersonalData;
|
|
|
|
use Engelsystem\Models\User\State;
|
|
|
|
use Engelsystem\Models\User\User;
|
|
|
|
use Engelsystem\Test\Unit\Controllers\ControllerTest;
|
|
|
|
use Engelsystem\Test\Unit\HasDatabase;
|
|
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
|
|
|
|
class UserShirtControllerTest extends ControllerTest
|
|
|
|
{
|
|
|
|
use HasDatabase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Controllers\Admin\UserShirtController::editShirt
|
|
|
|
* @covers \Engelsystem\Controllers\Admin\UserShirtController::__construct
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testIndex(): void
|
2021-09-24 20:28:51 +02:00
|
|
|
{
|
2022-12-11 18:01:34 +01:00
|
|
|
$request = $this->request->withAttribute('user_id', 1);
|
2021-09-24 20:28:51 +02:00
|
|
|
/** @var Authenticator|MockObject $auth */
|
|
|
|
$auth = $this->createMock(Authenticator::class);
|
|
|
|
/** @var Redirector|MockObject $redirector */
|
|
|
|
$redirector = $this->createMock(Redirector::class);
|
|
|
|
$user = new User();
|
|
|
|
User::factory()->create();
|
|
|
|
|
|
|
|
$this->setExpects($this->response, 'withView', ['admin/user/edit-shirt.twig'], $this->response);
|
|
|
|
|
|
|
|
$controller = new UserShirtController($auth, $this->config, $this->log, $redirector, $this->response, $user);
|
|
|
|
|
|
|
|
$controller->editShirt($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Controllers\Admin\UserShirtController::editShirt
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testIndexUserNotFound(): void
|
2021-09-24 20:28:51 +02:00
|
|
|
{
|
|
|
|
/** @var Authenticator|MockObject $auth */
|
|
|
|
$auth = $this->createMock(Authenticator::class);
|
|
|
|
/** @var Redirector|MockObject $redirector */
|
|
|
|
$redirector = $this->createMock(Redirector::class);
|
|
|
|
$user = new User();
|
|
|
|
|
|
|
|
$controller = new UserShirtController($auth, $this->config, $this->log, $redirector, $this->response, $user);
|
|
|
|
|
|
|
|
$this->expectException(ModelNotFoundException::class);
|
|
|
|
$controller->editShirt($this->request);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Controllers\Admin\UserShirtController::saveShirt
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testSaveShirt(): void
|
2021-09-24 20:28:51 +02:00
|
|
|
{
|
2023-03-05 03:00:38 +01:00
|
|
|
$this->config->set('goodie_type', GoodieType::Tshirt->value);
|
2021-09-24 20:28:51 +02:00
|
|
|
$request = $this->request
|
2022-12-11 18:01:34 +01:00
|
|
|
->withAttribute('user_id', 1)
|
2021-09-24 20:28:51 +02:00
|
|
|
->withParsedBody([
|
|
|
|
'shirt_size' => 'S',
|
|
|
|
]);
|
|
|
|
/** @var Authenticator|MockObject $auth */
|
|
|
|
$auth = $this->createMock(Authenticator::class);
|
2023-01-27 21:01:23 +01:00
|
|
|
$this->config->set('tshirt_sizes', ['S' => 'Small', 'XS' => 'Extra Small']);
|
2021-09-24 20:28:51 +02:00
|
|
|
/** @var Redirector|MockObject $redirector */
|
|
|
|
$redirector = $this->createMock(Redirector::class);
|
|
|
|
User::factory()
|
|
|
|
->has(State::factory())
|
|
|
|
->has(PersonalData::factory())
|
|
|
|
->create();
|
|
|
|
|
|
|
|
$auth
|
2023-03-05 03:00:38 +01:00
|
|
|
->expects($this->exactly(6))
|
2021-09-24 20:28:51 +02:00
|
|
|
->method('can')
|
|
|
|
->with('admin_arrive')
|
2023-03-05 03:00:38 +01:00
|
|
|
->willReturnOnConsecutiveCalls(true, true, true, false, false, true);
|
|
|
|
$this->setExpects($redirector, 'back', null, $this->response, $this->exactly(6));
|
2021-09-24 20:28:51 +02:00
|
|
|
|
|
|
|
$controller = new UserShirtController(
|
|
|
|
$auth,
|
|
|
|
$this->config,
|
|
|
|
$this->log,
|
|
|
|
$redirector,
|
|
|
|
$this->response,
|
|
|
|
new User()
|
|
|
|
);
|
|
|
|
$controller->setValidator(new Validator());
|
|
|
|
|
|
|
|
// Set shirt size
|
|
|
|
$controller->saveShirt($request);
|
|
|
|
|
|
|
|
$this->assertHasNotification('user.edit.success');
|
|
|
|
$this->assertTrue($this->log->hasInfoThatContains('Updated user shirt state'));
|
|
|
|
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertEquals('S', $user->personalData->shirt_size);
|
|
|
|
$this->assertFalse($user->state->arrived);
|
|
|
|
$this->assertFalse($user->state->active);
|
|
|
|
$this->assertFalse($user->state->got_shirt);
|
|
|
|
|
|
|
|
// Set active, arrived and got_shirt
|
|
|
|
$request = $request
|
|
|
|
->withParsedBody([
|
|
|
|
'shirt_size' => 'S',
|
|
|
|
'arrived' => '1',
|
|
|
|
'active' => '1',
|
|
|
|
'got_shirt' => '1',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$controller->saveShirt($request);
|
|
|
|
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertTrue($user->state->active);
|
|
|
|
$this->assertTrue($user->state->arrived);
|
|
|
|
$this->assertTrue($user->state->got_shirt);
|
|
|
|
|
|
|
|
// Shirt size not available
|
|
|
|
$request = $request
|
|
|
|
->withParsedBody([
|
|
|
|
'shirt_size' => 'L',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$controller->saveShirt($request);
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertEquals('S', $user->personalData->shirt_size);
|
|
|
|
|
|
|
|
// Not allowed changing arrived
|
|
|
|
$request = $request
|
|
|
|
->withParsedBody([
|
|
|
|
'shirt_size' => 'S',
|
|
|
|
'arrived' => '1',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertFalse($user->state->arrived);
|
|
|
|
$controller->saveShirt($request);
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertFalse($user->state->arrived);
|
2023-01-27 21:01:23 +01:00
|
|
|
|
|
|
|
// Shirt disabled
|
2023-03-05 03:00:38 +01:00
|
|
|
$this->config->set('goodie_type', GoodieType::None->value);
|
|
|
|
$request = $request
|
|
|
|
->withParsedBody([
|
|
|
|
'shirt_size' => 'XS',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$controller->saveShirt($request);
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertEquals('S', $user->personalData->shirt_size);
|
|
|
|
|
|
|
|
// Shirt enabled
|
|
|
|
$this->config->set('goodie_type', GoodieType::Tshirt->value);
|
2023-01-27 21:01:23 +01:00
|
|
|
$request = $request
|
|
|
|
->withParsedBody([
|
|
|
|
'shirt_size' => 'XS',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$controller->saveShirt($request);
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertEquals('XS', $user->personalData->shirt_size);
|
2021-09-24 20:28:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Controllers\Admin\UserShirtController::saveShirt
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testSaveShirtUserNotFound(): void
|
2021-09-24 20:28:51 +02:00
|
|
|
{
|
|
|
|
/** @var Authenticator|MockObject $auth */
|
|
|
|
$auth = $this->createMock(Authenticator::class);
|
|
|
|
/** @var Redirector|MockObject $redirector */
|
|
|
|
$redirector = $this->createMock(Redirector::class);
|
|
|
|
$user = new User();
|
|
|
|
|
|
|
|
$controller = new UserShirtController($auth, $this->config, $this->log, $redirector, $this->response, $user);
|
|
|
|
|
|
|
|
$this->expectException(ModelNotFoundException::class);
|
|
|
|
$controller->editShirt($this->request);
|
|
|
|
}
|
|
|
|
}
|