mirror of
https://github.com/werkraum-media/calendar.git
synced 2024-11-24 02:36:08 +01:00
Adopt functional tests for latest TYPO3. (#10)
TYPO3 now would return a 404 if cHash doesn't match. We now exclude the parameters within our functional tests to not run into this issue.
This commit is contained in:
parent
03320171ce
commit
33eb0a2a3b
3 changed files with 43 additions and 1 deletions
31
Documentation/Changelog/1.1.1.rst
Normal file
31
Documentation/Changelog/1.1.1.rst
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
1.1.1
|
||||||
|
=====
|
||||||
|
|
||||||
|
Breaking
|
||||||
|
--------
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
-----
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
Tasks
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Adopt functional tests for latest TYPO3.
|
||||||
|
|
||||||
|
TYPO3 now would return a 404 if cHash doesn't match.
|
||||||
|
We now exclude the parameters within our functional tests to not run into this issue.
|
||||||
|
|
||||||
|
Deprecation
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Nothing
|
||||||
|
|
|
@ -46,6 +46,17 @@ class CalendarControllerTest extends FunctionalTestCase
|
||||||
'typo3conf/ext/calendar/Tests/Fixtures/Sites' => 'typo3conf/sites',
|
'typo3conf/ext/calendar/Tests/Fixtures/Sites' => 'typo3conf/sites',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
protected $configurationToUseInTestInstance = [
|
||||||
|
'FE' => [
|
||||||
|
'cacheHash' => [
|
||||||
|
'excludedParameters' => [
|
||||||
|
'^tx_calendar_example[',
|
||||||
|
'^typoScriptDefaults',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
protected function setUp(): void
|
protected function setUp(): void
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
|
@ -10,7 +10,7 @@ $EM_CONF['calendar'] = [
|
||||||
'state' => 'alpha',
|
'state' => 'alpha',
|
||||||
'uploadfolder' => 0,
|
'uploadfolder' => 0,
|
||||||
'clearCacheOnLoad' => 0,
|
'clearCacheOnLoad' => 0,
|
||||||
'version' => '1.1.0',
|
'version' => '1.1.1',
|
||||||
'constraints' => [
|
'constraints' => [
|
||||||
'depends' => [
|
'depends' => [
|
||||||
'typo3' => '*',
|
'typo3' => '*',
|
||||||
|
|
Loading…
Reference in a new issue