mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
420 lines
20 KiB
PHP
420 lines
20 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Tests\Controller;
|
|
|
|
use App\Configuration\SystemConfiguration;
|
|
use App\Entity\User;
|
|
|
|
/**
|
|
* @group integration
|
|
*/
|
|
class SystemConfigurationControllerTest extends AbstractControllerBaseTestCase
|
|
{
|
|
public function testIsSecure(): void
|
|
{
|
|
$this->assertUrlIsSecured('/admin/system-config/');
|
|
}
|
|
|
|
public function testIsSecureForRole(): void
|
|
{
|
|
$this->assertUrlIsSecuredForRole(User::ROLE_ADMIN, '/admin/system-config/');
|
|
}
|
|
|
|
private function getSystemConfiguration(): SystemConfiguration
|
|
{
|
|
return static::getContainer()->get(SystemConfiguration::class); // @phpstan-ignore return.type
|
|
}
|
|
|
|
public function testIndexAction(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/');
|
|
|
|
$expectedForms = $this->getTestDataForms();
|
|
$expectedCount = \count($expectedForms) + 1; // the menu is another card
|
|
|
|
$result = $client->getCrawler()->filter('section.content div.card');
|
|
self::assertEquals($expectedCount, \count($result));
|
|
|
|
$result = $client->getCrawler()->filter('section.content div.card form');
|
|
self::assertEquals(\count($expectedForms), \count($result));
|
|
|
|
foreach ($expectedForms as $formConfig) {
|
|
$result = $client->getCrawler()->filter($formConfig[0]);
|
|
self::assertEquals(1, \count($result));
|
|
$form = $result->form();
|
|
self::assertStringEndsWith($formConfig[1], $form->getUri());
|
|
self::assertEquals('POST', $form->getMethod());
|
|
}
|
|
}
|
|
|
|
public function testSectionAction(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/edit/timesheet');
|
|
|
|
$result = $client->getCrawler()->filter('section.content div.card');
|
|
self::assertEquals(1, \count($result));
|
|
|
|
$result = $client->getCrawler()->filter('section.content div.card form');
|
|
self::assertEquals(1, \count($result));
|
|
|
|
$result = $client->getCrawler()->filter('form[name=system_configuration_form_timesheet]');
|
|
self::assertEquals(1, \count($result));
|
|
$form = $result->form();
|
|
self::assertEquals('POST', $form->getMethod());
|
|
}
|
|
|
|
/**
|
|
* @return array<array<non-empty-string>>
|
|
*/
|
|
public function getTestDataForms(): array
|
|
{
|
|
return [
|
|
['form[name=system_configuration_form_timesheet]', $this->createUrl('/admin/system-config/update/timesheet')],
|
|
['form[name=system_configuration_form_quick_entry]', $this->createUrl('/admin/system-config/update/quick_entry')],
|
|
['form[name=system_configuration_form_lockdown_period]', $this->createUrl('/admin/system-config/update/lockdown_period')],
|
|
['form[name=system_configuration_form_invoice]', $this->createUrl('/admin/system-config/update/invoice')],
|
|
['form[name=system_configuration_form_authentication]', $this->createUrl('/admin/system-config/update/authentication')],
|
|
['form[name=system_configuration_form_rounding]', $this->createUrl('/admin/system-config/update/rounding')],
|
|
['form[name=system_configuration_form_customer]', $this->createUrl('/admin/system-config/update/customer')],
|
|
['form[name=system_configuration_form_project]', $this->createUrl('/admin/system-config/update/project')],
|
|
['form[name=system_configuration_form_activity]', $this->createUrl('/admin/system-config/update/activity')],
|
|
['form[name=system_configuration_form_user]', $this->createUrl('/admin/system-config/update/user')],
|
|
['form[name=system_configuration_form_theme]', $this->createUrl('/admin/system-config/update/theme')],
|
|
['form[name=system_configuration_form_calendar]', $this->createUrl('/admin/system-config/update/calendar')],
|
|
['form[name=system_configuration_form_branding]', $this->createUrl('/admin/system-config/update/branding')],
|
|
];
|
|
}
|
|
|
|
public function testUpdateTimesheetConfig(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/');
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertEquals('default', $configService->find('timesheet.mode'));
|
|
self::assertTrue($configService->find('timesheet.rules.allow_future_times'));
|
|
self::assertTrue($configService->find('timesheet.rules.allow_zero_duration'));
|
|
self::assertEquals(1, $configService->find('timesheet.active_entries.hard_limit'));
|
|
|
|
$form = $client->getCrawler()->filter('form[name=system_configuration_form_timesheet]')->form();
|
|
$client->submit($form, [
|
|
'system_configuration_form_timesheet' => [
|
|
'configuration' => [
|
|
['name' => 'timesheet.mode', 'value' => 'punch'],
|
|
['name' => 'timesheet.default_begin', 'value' => '23:59'],
|
|
['name' => 'timesheet.rules.allow_future_times', 'value' => false],
|
|
['name' => 'timesheet.rules.allow_zero_duration', 'value' => true],
|
|
['name' => 'timesheet.rules.allow_overlapping_records', 'value' => false],
|
|
['name' => 'timesheet.rules.allow_overbooking_budget', 'value' => false],
|
|
['name' => 'timesheet.active_entries.hard_limit', 'value' => 99],
|
|
]
|
|
]
|
|
]);
|
|
|
|
$this->assertIsRedirect($client, $this->createUrl('/admin/system-config/'));
|
|
$client->followRedirect();
|
|
self::assertTrue($client->getResponse()->isSuccessful());
|
|
$this->assertHasFlashSaveSuccess($client);
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertEquals('punch', $configService->find('timesheet.mode'));
|
|
self::assertFalse($configService->find('timesheet.rules.allow_future_times'));
|
|
self::assertFalse($configService->find('timesheet.rules.allow_overlapping_records'));
|
|
self::assertEquals(99, $configService->find('timesheet.active_entries.hard_limit'));
|
|
}
|
|
|
|
public function testUpdateLockdownPeriodConfig(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/');
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertNull($configService->find('timesheet.rules.lockdown_period_start'));
|
|
self::assertNull($configService->find('timesheet.rules.lockdown_period_end'));
|
|
self::assertNull($configService->find('timesheet.rules.lockdown_period_timezone'));
|
|
self::assertNull($configService->find('timesheet.rules.lockdown_grace_period'));
|
|
|
|
$form = $client->getCrawler()->filter('form[name=system_configuration_form_lockdown_period]')->form();
|
|
$client->submit($form, [
|
|
'system_configuration_form_lockdown_period' => [
|
|
'configuration' => [
|
|
['name' => 'timesheet.rules.lockdown_period_start', 'value' => 'first day of last month 01:23:45'],
|
|
['name' => 'timesheet.rules.lockdown_period_end', 'value' => 'last day of last month 23:01:45'],
|
|
['name' => 'timesheet.rules.lockdown_period_timezone', 'value' => 'Africa/Bangui'],
|
|
['name' => 'timesheet.rules.lockdown_grace_period', 'value' => '+ 12 hours'],
|
|
]
|
|
]
|
|
]);
|
|
|
|
$this->assertIsRedirect($client, $this->createUrl('/admin/system-config/'));
|
|
$client->followRedirect();
|
|
self::assertTrue($client->getResponse()->isSuccessful());
|
|
$this->assertHasFlashSaveSuccess($client);
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertEquals('first day of last month 01:23:45', $configService->find('timesheet.rules.lockdown_period_start'));
|
|
self::assertEquals('last day of last month 23:01:45', $configService->find('timesheet.rules.lockdown_period_end'));
|
|
self::assertEquals('Africa/Bangui', $configService->find('timesheet.rules.lockdown_period_timezone'));
|
|
self::assertEquals('+ 12 hours', $configService->find('timesheet.rules.lockdown_grace_period'));
|
|
}
|
|
|
|
public function testUpdateTimesheetConfigValidation(): void
|
|
{
|
|
$this->assertFormHasValidationError(
|
|
User::ROLE_SUPER_ADMIN,
|
|
'/admin/system-config/',
|
|
'form[name=system_configuration_form_timesheet]',
|
|
[
|
|
'system_configuration_form_timesheet' => [
|
|
'configuration' => [
|
|
['name' => 'timesheet.mode', 'value' => 'foo'],
|
|
['name' => 'timesheet.default_begin', 'value' => '23:59'],
|
|
['name' => 'timesheet.rules.allow_future_times', 'value' => 1],
|
|
['name' => 'timesheet.rules.allow_zero_duration', 'value' => 1],
|
|
['name' => 'timesheet.rules.allow_overlapping_records', 'value' => 1],
|
|
['name' => 'timesheet.rules.allow_overbooking_budget', 'value' => 1],
|
|
['name' => 'timesheet.active_entries.hard_limit', 'value' => -1],
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'#system_configuration_form_timesheet_configuration_0_value', // mode
|
|
'#system_configuration_form_timesheet_configuration_6_value', // hard_limit
|
|
]
|
|
);
|
|
}
|
|
|
|
public function testUpdateCustomerConfig(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/');
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertNull($configService->find('defaults.customer.timezone'));
|
|
self::assertEquals('DE', $configService->find('defaults.customer.country'));
|
|
self::assertEquals('EUR', $configService->find('defaults.customer.currency'));
|
|
|
|
$form = $client->getCrawler()->filter('form[name=system_configuration_form_customer]')->form();
|
|
$client->submit($form, [
|
|
'system_configuration_form_customer' => [
|
|
'configuration' => [
|
|
['name' => 'defaults.customer.timezone', 'value' => 'Atlantic/Canary'],
|
|
['name' => 'defaults.customer.country', 'value' => 'BB'],
|
|
['name' => 'defaults.customer.currency', 'value' => 'GBP'],
|
|
]
|
|
]
|
|
]);
|
|
|
|
$this->assertIsRedirect($client, $this->createUrl('/admin/system-config/'));
|
|
$client->followRedirect();
|
|
self::assertTrue($client->getResponse()->isSuccessful());
|
|
$this->assertHasFlashSaveSuccess($client);
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertEquals('Atlantic/Canary', $configService->find('defaults.customer.timezone'));
|
|
self::assertEquals('BB', $configService->find('defaults.customer.country'));
|
|
self::assertEquals('GBP', $configService->find('defaults.customer.currency'));
|
|
}
|
|
|
|
public function testUpdateCustomerConfigWithSingleParam(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/edit/customer');
|
|
|
|
$form = $client->getCrawler()->filter('form[name=system_configuration_form_customer]')->form();
|
|
self::assertStringEndsWith('/admin/system-config/update/customer/1', $form->getUri());
|
|
$client->submit($form, [
|
|
'system_configuration_form_customer' => [
|
|
'configuration' => [
|
|
['name' => 'defaults.customer.timezone', 'value' => 'Atlantic/Canary'],
|
|
['name' => 'defaults.customer.country', 'value' => 'BB'],
|
|
['name' => 'defaults.customer.currency', 'value' => 'GBP'],
|
|
]
|
|
]
|
|
]);
|
|
|
|
$this->assertIsRedirect($client, $this->createUrl('/admin/system-config/edit/customer'));
|
|
$client->followRedirect();
|
|
self::assertTrue($client->getResponse()->isSuccessful());
|
|
$this->assertHasFlashSaveSuccess($client);
|
|
}
|
|
|
|
public function testUpdateUserConfig(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/edit/user');
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertNull($configService->find('defaults.user.timezone'));
|
|
self::assertEquals('default', $configService->find('defaults.user.theme'));
|
|
self::assertEquals('en', $configService->find('defaults.user.language'));
|
|
|
|
$form = $client->getCrawler()->filter('form[name=system_configuration_form_user]')->form();
|
|
$client->submit($form, [
|
|
'system_configuration_form_user' => [
|
|
'configuration' => [
|
|
['name' => 'defaults.user.timezone', 'value' => 'Pacific/Tahiti'],
|
|
['name' => 'defaults.user.language', 'value' => 'ru'],
|
|
['name' => 'defaults.user.theme', 'value' => 'dark'],
|
|
]
|
|
]
|
|
]);
|
|
|
|
$this->assertIsRedirect($client, $this->createUrl('/admin/system-config/edit/user'));
|
|
$client->followRedirect();
|
|
self::assertTrue($client->getResponse()->isSuccessful());
|
|
$this->assertHasFlashSaveSuccess($client);
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertEquals('Pacific/Tahiti', $configService->find('defaults.user.timezone'));
|
|
self::assertEquals('dark', $configService->find('defaults.user.theme'));
|
|
self::assertEquals('ru', $configService->find('defaults.user.language'));
|
|
}
|
|
|
|
public function testUpdateCustomerConfigValidation(): void
|
|
{
|
|
$this->assertFormHasValidationError(
|
|
User::ROLE_SUPER_ADMIN,
|
|
'/admin/system-config/',
|
|
'form[name=system_configuration_form_customer]',
|
|
[
|
|
'system_configuration_form_customer' => [
|
|
'configuration' => [
|
|
['name' => 'defaults.customer.timezone', 'value' => 'XX'],
|
|
['name' => 'defaults.customer.country', 'value' => 1],
|
|
['name' => 'defaults.customer.currency', 'value' => 'XXX'],
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'#system_configuration_form_customer_configuration_0_value',
|
|
'#system_configuration_form_customer_configuration_1_value',
|
|
'#system_configuration_form_customer_configuration_2_value',
|
|
]
|
|
);
|
|
}
|
|
|
|
public function testUpdateThemeConfig(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/');
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertFalse($configService->find('timesheet.markdown_content'));
|
|
|
|
$form = $client->getCrawler()->filter('form[name=system_configuration_form_theme]')->form();
|
|
$client->submit($form, [
|
|
'system_configuration_form_theme' => [
|
|
'configuration' => [
|
|
['name' => 'timesheet.markdown_content', 'value' => 1],
|
|
]
|
|
]
|
|
]);
|
|
|
|
$this->assertIsRedirect($client, $this->createUrl('/admin/system-config/'));
|
|
$client->followRedirect();
|
|
self::assertTrue($client->getResponse()->isSuccessful());
|
|
$this->assertHasFlashSaveSuccess($client);
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertTrue($configService->find('timesheet.markdown_content'));
|
|
}
|
|
|
|
public function testUpdateThemeConfigValidation(): void
|
|
{
|
|
$this->assertFormHasValidationError(
|
|
User::ROLE_SUPER_ADMIN,
|
|
'/admin/system-config/',
|
|
'form[name=system_configuration_form_theme]',
|
|
[
|
|
'system_configuration_form_theme' => [
|
|
'configuration' => [
|
|
['name' => 'timesheet.markdown_content', 'value' => 1],
|
|
['name' => 'theme.color_choices', 'value' => '112324567865=)(/&%$§Silver|#c0c0c0'],
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'#system_configuration_form_theme_configuration_1_value',
|
|
]
|
|
);
|
|
}
|
|
|
|
public function testUpdateCalendarConfig(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_SUPER_ADMIN);
|
|
$this->assertAccessIsGranted($client, '/admin/system-config/');
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertTrue($configService->find('calendar.week_numbers'));
|
|
self::assertTrue($configService->find('calendar.weekends'));
|
|
self::assertEquals('08:00', $configService->find('calendar.businessHours.begin'));
|
|
self::assertEquals('20:00', $configService->find('calendar.businessHours.end'));
|
|
self::assertEquals('00:00', $configService->find('calendar.visibleHours.begin'));
|
|
self::assertEquals('23:59', $configService->find('calendar.visibleHours.end'));
|
|
|
|
$form = $client->getCrawler()->filter('form[name=system_configuration_form_calendar]')->form();
|
|
$client->submit($form, [
|
|
'system_configuration_form_calendar' => [
|
|
'configuration' => [
|
|
['name' => 'calendar.week_numbers', 'value' => false],
|
|
['name' => 'calendar.weekends', 'value' => false],
|
|
['name' => 'calendar.businessHours.begin', 'value' => '10:00'],
|
|
['name' => 'calendar.businessHours.end', 'value' => '16:00'],
|
|
['name' => 'calendar.visibleHours.begin', 'value' => '05:17'],
|
|
['name' => 'calendar.visibleHours.end', 'value' => '21:43'],
|
|
]
|
|
]
|
|
]);
|
|
|
|
$this->assertIsRedirect($client, $this->createUrl('/admin/system-config/'));
|
|
$client->followRedirect();
|
|
self::assertTrue($client->getResponse()->isSuccessful());
|
|
$this->assertHasFlashSaveSuccess($client);
|
|
|
|
$configService = $this->getSystemConfiguration();
|
|
self::assertFalse($configService->find('calendar.week_numbers'));
|
|
self::assertFalse($configService->find('calendar.weekends'));
|
|
self::assertEquals('10:00', $configService->find('calendar.businessHours.begin'));
|
|
self::assertEquals('16:00', $configService->find('calendar.businessHours.end'));
|
|
self::assertEquals('05:17', $configService->find('calendar.visibleHours.begin'));
|
|
self::assertEquals('21:43', $configService->find('calendar.visibleHours.end'));
|
|
}
|
|
|
|
public function testUpdateCalendarConfigValidation(): void
|
|
{
|
|
$this->assertFormHasValidationError(
|
|
User::ROLE_SUPER_ADMIN,
|
|
'/admin/system-config/',
|
|
'form[name=system_configuration_form_calendar]',
|
|
[
|
|
'system_configuration_form_calendar' => [
|
|
'configuration' => [
|
|
['name' => 'calendar.week_numbers', 'value' => 'foo'],
|
|
['name' => 'calendar.weekends', 'value' => 'bar'],
|
|
['name' => 'calendar.businessHours.begin', 'value' => '25:13'],
|
|
['name' => 'calendar.businessHours.end', 'value' => null],
|
|
['name' => 'calendar.visibleHours.begin', 'value' => 'aa:bb'],
|
|
['name' => 'calendar.visibleHours.end', 'value' => ''],
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'#system_configuration_form_calendar_configuration_2_value',
|
|
'#system_configuration_form_calendar_configuration_3_value',
|
|
'#system_configuration_form_calendar_configuration_4_value',
|
|
'#system_configuration_form_calendar_configuration_5_value',
|
|
]
|
|
);
|
|
}
|
|
}
|