2023-04-01 14:23:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Engelsystem\Test\Unit\Controllers;
|
|
|
|
|
2023-11-12 17:40:21 +01:00
|
|
|
use Engelsystem\Controllers\RegistrationController;
|
2023-04-01 14:23:52 +02:00
|
|
|
use Engelsystem\Factories\User;
|
|
|
|
use Engelsystem\Helpers\Authenticator;
|
|
|
|
use Engelsystem\Models\OAuth;
|
|
|
|
use Engelsystem\Models\User\User as EngelsystemUser;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
|
|
|
|
/**
|
2023-11-12 17:40:21 +01:00
|
|
|
* @group registration-controller-tests
|
2023-04-01 14:23:52 +02:00
|
|
|
*/
|
2023-11-12 17:40:21 +01:00
|
|
|
final class RegistrationControllerTest extends ControllerTest
|
2023-04-01 14:23:52 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var Authenticator&MockObject
|
|
|
|
*/
|
|
|
|
private Authenticator $authenticator;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var MockObject&User
|
|
|
|
*/
|
|
|
|
private User $userFactory;
|
|
|
|
|
2023-11-12 17:40:21 +01:00
|
|
|
private RegistrationController $subject;
|
2023-04-01 14:23:52 +02:00
|
|
|
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$this->mockTranslator();
|
|
|
|
|
|
|
|
$this->authenticator = $this->getMockBuilder(Authenticator::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->app->instance(Authenticator::class, $this->authenticator);
|
|
|
|
$this->app->alias(Authenticator::class, 'authenticator');
|
|
|
|
|
|
|
|
$this->userFactory = $this->getMockBuilder(User::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->config->set('oauth', []);
|
|
|
|
$this->app->instance(User::class, $this->userFactory);
|
2023-11-12 17:40:21 +01:00
|
|
|
$this->subject = $this->app->make(RegistrationController::class);
|
2023-04-01 14:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-11-12 17:40:21 +01:00
|
|
|
* @covers \Engelsystem\Controllers\RegistrationController
|
2023-04-01 14:23:52 +02:00
|
|
|
*/
|
|
|
|
public function testSave(): void
|
|
|
|
{
|
|
|
|
$this->setPasswordRegistrationEnabledConfig();
|
|
|
|
|
|
|
|
$userData = ['user' => 'data'];
|
|
|
|
$request = $this->request->withParsedBody($userData);
|
|
|
|
|
|
|
|
// Assert the controller passes the submitted data to the user factory
|
|
|
|
$this->userFactory
|
|
|
|
->expects(self::once())
|
|
|
|
->method('createFromData')
|
|
|
|
->with($userData)
|
|
|
|
->willReturn(new EngelsystemUser());
|
|
|
|
|
|
|
|
// Assert that the user is redirected to home
|
|
|
|
$this->response
|
|
|
|
->expects(self::once())
|
|
|
|
->method('redirectTo')
|
|
|
|
->with('http://localhost/', 302);
|
|
|
|
|
|
|
|
$this->subject->save($request);
|
|
|
|
|
|
|
|
// Assert that the success notification is there
|
|
|
|
self::assertEquals(
|
|
|
|
[
|
2023-11-12 17:40:21 +01:00
|
|
|
'messages.message' => ['registration.successful'],
|
2023-04-01 14:23:52 +02:00
|
|
|
],
|
|
|
|
$this->session->all()
|
|
|
|
);
|
|
|
|
|
|
|
|
// Assert that "show_welcome" is not set in session,
|
|
|
|
// because "welcome_msg" is not configured.
|
|
|
|
$this->assertFalse($this->session->has('show_welcome'));
|
|
|
|
}
|
|
|
|
|
2023-08-30 17:39:16 +02:00
|
|
|
/**
|
2023-11-12 17:40:21 +01:00
|
|
|
* @covers \Engelsystem\Controllers\RegistrationController
|
2023-08-30 17:39:16 +02:00
|
|
|
*/
|
|
|
|
public function testSaveAlreadyLoggedIn(): void
|
|
|
|
{
|
|
|
|
$this->setPasswordRegistrationEnabledConfig();
|
|
|
|
$request = $this->request->withParsedBody(['user' => 'data']);
|
|
|
|
|
|
|
|
// Fake logged in user
|
|
|
|
$this->authenticator->method('user')->willReturn(new EngelsystemUser());
|
|
|
|
|
2023-11-12 17:40:21 +01:00
|
|
|
// Assert that the user is redirected to /register again
|
2023-08-30 17:39:16 +02:00
|
|
|
$this->response
|
|
|
|
->expects(self::once())
|
|
|
|
->method('redirectTo')
|
2023-11-12 16:12:45 +01:00
|
|
|
->with('http://localhost/register', 302);
|
2023-08-30 17:39:16 +02:00
|
|
|
|
|
|
|
$this->subject->save($request);
|
|
|
|
}
|
|
|
|
|
2023-04-01 14:23:52 +02:00
|
|
|
/**
|
2023-11-12 17:40:21 +01:00
|
|
|
* @covers \Engelsystem\Controllers\RegistrationController
|
2023-04-01 14:23:52 +02:00
|
|
|
*/
|
|
|
|
public function testSaveOAuth(): void
|
|
|
|
{
|
|
|
|
$this->setPasswordRegistrationEnabledConfig();
|
|
|
|
|
|
|
|
$userData = ['user' => 'data'];
|
|
|
|
$request = $this->request->withParsedBody($userData);
|
|
|
|
|
|
|
|
$user = (new EngelsystemUser())->factory()->create();
|
|
|
|
$oauth = (new OAuth())->factory()->create([
|
|
|
|
'user_id' => $user->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->userFactory
|
|
|
|
->expects(self::once())
|
|
|
|
->method('createFromData')
|
|
|
|
->with($userData)
|
|
|
|
->willReturn($user);
|
|
|
|
|
|
|
|
// Assert that the user is redirected to the OAuth login
|
|
|
|
$this->response
|
|
|
|
->expects(self::once())
|
|
|
|
->method('redirectTo')
|
|
|
|
->with('http://localhost/oauth/' . $oauth->provider, 302);
|
|
|
|
|
|
|
|
$this->subject->save($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-11-12 17:40:21 +01:00
|
|
|
* @covers \Engelsystem\Controllers\RegistrationController
|
2023-04-01 14:23:52 +02:00
|
|
|
*/
|
|
|
|
public function testSaveWithWelcomeMesssage(): void
|
|
|
|
{
|
|
|
|
$this->setPasswordRegistrationEnabledConfig();
|
|
|
|
$this->config->set('welcome_msg', true);
|
|
|
|
|
|
|
|
$userData = ['user' => 'data'];
|
|
|
|
$request = $this->request->withParsedBody($userData);
|
|
|
|
$this->subject->save($request);
|
|
|
|
|
|
|
|
// Assert that "show_welcome" is set in session,
|
|
|
|
// because "welcome_msg" is enabled in the config.
|
|
|
|
$this->assertTrue($this->session->get('show_welcome'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-11-12 17:40:21 +01:00
|
|
|
* @covers \Engelsystem\Controllers\RegistrationController
|
2023-04-01 14:23:52 +02:00
|
|
|
*/
|
|
|
|
public function testSaveRegistrationDisabled(): void
|
|
|
|
{
|
|
|
|
$this->config->set('registration_enabled', false);
|
|
|
|
$request = $this->request->withParsedBody([]);
|
|
|
|
|
|
|
|
// Assert the controller does not call createFromData
|
|
|
|
$this->userFactory
|
|
|
|
->expects(self::never())
|
|
|
|
->method('createFromData');
|
|
|
|
|
|
|
|
// Assert that the user is redirected to home
|
|
|
|
$this->response
|
|
|
|
->expects(self::once())
|
|
|
|
->method('redirectTo')
|
|
|
|
->with('http://localhost/', 302);
|
|
|
|
|
|
|
|
$this->subject->save($request);
|
|
|
|
|
|
|
|
// Assert that the error notification is there
|
|
|
|
self::assertEquals(
|
|
|
|
[
|
2023-11-12 17:40:21 +01:00
|
|
|
'messages.information' => ['registration.disabled'],
|
2023-04-01 14:23:52 +02:00
|
|
|
],
|
|
|
|
$this->session->all()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-11-12 17:40:21 +01:00
|
|
|
* @covers \Engelsystem\Controllers\RegistrationController
|
2023-04-01 14:23:52 +02:00
|
|
|
*/
|
|
|
|
public function testViewRegistrationDisabled(): void
|
|
|
|
{
|
|
|
|
$this->config->set('registration_enabled', false);
|
|
|
|
|
|
|
|
// Assert the controller does not call createFromData
|
|
|
|
$this->userFactory
|
|
|
|
->expects(self::never())
|
|
|
|
->method('createFromData');
|
|
|
|
|
|
|
|
// Assert that the user is redirected to home
|
|
|
|
$this->response
|
|
|
|
->expects(self::once())
|
|
|
|
->method('redirectTo')
|
|
|
|
->with('http://localhost/', 302);
|
|
|
|
|
2024-03-25 00:03:39 +01:00
|
|
|
$this->subject->view();
|
2023-04-01 14:23:52 +02:00
|
|
|
|
|
|
|
// Assert that the error notification is there
|
|
|
|
self::assertEquals(
|
|
|
|
[
|
2023-11-12 17:40:21 +01:00
|
|
|
'messages.information' => ['registration.disabled'],
|
2023-04-01 14:23:52 +02:00
|
|
|
],
|
|
|
|
$this->session->all()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setPasswordRegistrationEnabledConfig(): void
|
|
|
|
{
|
|
|
|
$this->config->set('registration_enabled', true);
|
|
|
|
$this->authenticator
|
|
|
|
->method('can')
|
|
|
|
->with('register')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->userFactory->method('determineIsPasswordEnabled')
|
|
|
|
->willReturn(true);
|
|
|
|
}
|
|
|
|
}
|