false]); $this->expectException(HttpNotFound::class); $this->controller->certificate($this->request); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::checkPermission */ public function testCertificateNotAllowed(): void { config(['ifsg_enabled' => true]); $this->expectException(HttpForbidden::class); $this->controller->certificate($this->request); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::__construct * @covers \Engelsystem\Controllers\Admin\UserSettingsController::certificate * @covers \Engelsystem\Controllers\Admin\UserSettingsController::checkPermission * @covers \Engelsystem\Controllers\Admin\UserSettingsController::getUser * @covers \Engelsystem\Controllers\Admin\UserSettingsController::view */ public function testCertificateByPermission(): void { config(['ifsg_enabled' => true]); $this->setExpects($this->auth, 'can', ['user.ifsg.edit'], true, $this->atLeastOnce()); $this->response->expects($this->once()) ->method('withView') ->willReturnCallback(function (string $view, array $data): Response { $this->assertArrayHasKey('certificates', $data); $this->assertArrayHasKey('settings_menu', $data); $this->assertArrayHasKey('is_admin', $data); $this->assertTrue($data['is_admin']); $this->assertArrayHasKey('admin_user', $data); $this->assertEquals($this->userChanged->id, $data['admin_user']->id); return $this->response; }); $this->controller->certificate($this->request); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::certificate * @covers \Engelsystem\Controllers\Admin\UserSettingsController::checkPermission * @covers \Engelsystem\Controllers\Admin\UserSettingsController::isIfsgSupporter */ public function testCertificateByAngelTypeSupporter(): void { config(['ifsg_enabled' => true]); $this->setExpects($this->response, 'withView', null, $this->response); $angelType = AngelType::factory()->create(['requires_ifsg_certificate' => true]); $this->user->userAngelTypes()->attach($angelType, ['supporter' => true]); $this->controller->certificate($this->request); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::saveIfsgCertificate */ public function testSaveIfsgCertificateDisabled(): void { config(['ifsg_enabled' => false]); $this->expectException(HttpNotFound::class); $this->controller->saveIfsgCertificate($this->request); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::saveIfsgCertificate */ public function testSaveIfsgCertificateNotAllowed(): void { config(['ifsg_enabled' => true]); $this->expectException(HttpForbidden::class); $this->controller->saveIfsgCertificate($this->request); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::saveIfsgCertificate */ public function testSaveIfsgCertificateConfirmed(): void { config(['ifsg_enabled' => true]); $this->setExpects($this->auth, 'can', ['user.ifsg.edit'], true, $this->atLeastOnce()); $body = [ 'ifsg_certificate' => true, 'ifsg_confirmed' => true, ]; $this->request = $this->request->withParsedBody($body); $this->response->expects($this->once()) ->method('redirectTo') ->with('http://localhost/users/' . $this->userChanged->id . '/certificates') ->willReturn($this->response); $this->controller->saveIfsgCertificate($this->request); $this->assertTrue($this->log->hasInfoThatContains('Certificate')); $this->assertFalse($this->userChanged->license->ifsg_certificate_light); $this->assertTrue($this->userChanged->license->ifsg_certificate); $this->assertTrue($this->userChanged->license->ifsg_confirmed); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::saveIfsgCertificate */ public function testSaveIfsgCertificate(): void { config(['ifsg_enabled' => true]); $this->setExpects($this->auth, 'can', ['user.ifsg.edit'], true, $this->atLeastOnce()); $body = [ 'ifsg_certificate' => true, ]; $this->request = $this->request->withParsedBody($body); $this->response->expects($this->once()) ->method('redirectTo') ->with('http://localhost/users/' . $this->userChanged->id . '/certificates') ->willReturn($this->response); $this->controller->saveIfsgCertificate($this->request); $this->assertFalse($this->userChanged->license->ifsg_certificate_light); $this->assertTrue($this->userChanged->license->ifsg_certificate); $this->assertFalse($this->userChanged->license->ifsg_confirmed); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::saveIfsgCertificate */ public function testSaveIfsgCertificateLite(): void { config(['ifsg_enabled' => true, 'ifsg_light_enabled' => true]); $this->setExpects($this->auth, 'can', ['user.ifsg.edit'], true, $this->atLeastOnce()); $body = [ 'ifsg_certificate_light' => true, ]; $this->request = $this->request->withParsedBody($body); $this->response->expects($this->once()) ->method('redirectTo') ->with('http://localhost/users/' . $this->userChanged->id . '/certificates') ->willReturn($this->response); $this->controller->saveIfsgCertificate($this->request); $this->assertTrue($this->userChanged->license->ifsg_certificate_light); $this->assertFalse($this->userChanged->license->ifsg_certificate); $this->assertFalse($this->userChanged->license->ifsg_confirmed); } /** * @covers \Engelsystem\Controllers\Admin\UserSettingsController::settingsMenu */ public function testSettingsMenu(): void { $menu = $this->controller->settingsMenu($this->userChanged); $this->assertArrayHasKey('http://localhost/users?action=view&user_id=' . $this->userChanged->id, $menu); config(['ifsg_enabled' => true]); $menu = $this->controller->settingsMenu($this->userChanged); $this->assertArrayHasKey('http://localhost/users/' . $this->userChanged->id . '/certificates', $menu); } /** * Setup environment */ public function setUp(): void { parent::setUp(); $this->app->bind('http.urlGenerator', UrlGenerator::class); $this->user = User::factory()->create(); $this->userChanged = User::factory() ->has(License::factory()) ->create(); $this->auth = $this->createMock(Authenticator::class); $this->app->instance(Authenticator::class, $this->auth); $this->setExpects($this->auth, 'user', null, $this->user, $this->any()); $this->request = $this->request->withAttribute('user_id', $this->userChanged->id); $this->controller = $this->app->make(UserSettingsController::class); $this->controller->setValidator(new Validator()); } }