[TASK] Merge UnitDeprecated into Unit
Younger phpunit come with a happy little feature to suppress E_DEPRECATED and E_USER_DEPRECATED errors: The attribute `#[IgnoreDeprecations]` makes a test not fail when such a deprecation is triggered by the test subject, even when failOnDeprecation=true is set in phpunit XML. Using the attribute has been recommended by phpunit maintainer Sebastian Bergmann. This allows us to give up on the current strategy of moving tests that test deprecated subjects to an own directory. This simplifies maintenance, makes patches that deprecate things more easy to review, and saves some CI jobs. During 'deprecation removal phase' at the beginning of new major branches, we now simply look up usages of the attribute to see what needs to be removed. The patch takes care of 'UnitDeprecated' tests by merging them back into 'Unit' and adding the attribute. It also adapts runTests.sh to remove the `-s unitDeprecated` test suite and adapts CI. 'FunctionalDeprecated' will follow with a separate patch. Resolves: #104582 Releases: main Change-Id: I44473b04b3fe800a6fdd4032c6b2bd7682810979 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/85572 Tested-by:Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Simon Praetorius <simon@praetorius.me> Reviewed-by:
Andreas Kienast <a.fernandez@scripting-base.de> Tested-by:
Simon Praetorius <simon@praetorius.me> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Andreas Kienast <a.fernandez@scripting-base.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
Showing
- Build/Scripts/phpIntegrityChecker.php 0 additions, 1 deletionBuild/Scripts/phpIntegrityChecker.php
- Build/Scripts/runTests.sh 1 addition, 6 deletionsBuild/Scripts/runTests.sh
- Build/gitlab-ci/nightly/unit.yml 0 additions, 60 deletionsBuild/gitlab-ci/nightly/unit.yml
- Build/gitlab-ci/pre-merge/unit.yml 0 additions, 23 deletionsBuild/gitlab-ci/pre-merge/unit.yml
- Build/phpstan/phpstan-baseline.neon 0 additions, 65 deletionsBuild/phpstan/phpstan-baseline.neon
- Build/phpunit/UnitTestsDeprecated.xml 0 additions, 44 deletionsBuild/phpunit/UnitTestsDeprecated.xml
- typo3/sysext/core/Tests/Unit/Compatibility/Fixtures/PublicMethodDeprecationTraitTextFixture.php 1 addition, 1 deletion...lity/Fixtures/PublicMethodDeprecationTraitTextFixture.php
- typo3/sysext/core/Tests/Unit/Compatibility/PublicMethodDeprecationTraitTest.php 23 additions, 2 deletions...s/Unit/Compatibility/PublicMethodDeprecationTraitTest.php
- typo3/sysext/core/Tests/Unit/Compatibility/PublicPropertyDeprecationTraitTest.php 17 additions, 12 deletions...Unit/Compatibility/PublicPropertyDeprecationTraitTest.php
- typo3/sysext/core/Tests/Unit/Imaging/IconTest.php 96 additions, 17 deletionstypo3/sysext/core/Tests/Unit/Imaging/IconTest.php
- typo3/sysext/core/Tests/Unit/Type/EnumerationTest.php 30 additions, 18 deletionstypo3/sysext/core/Tests/Unit/Type/EnumerationTest.php
- typo3/sysext/core/Tests/Unit/Type/Fixture/Enumeration/CompleteEnumeration.php 2 additions, 2 deletions...sts/Unit/Type/Fixture/Enumeration/CompleteEnumeration.php
- typo3/sysext/core/Tests/Unit/Type/Fixture/Enumeration/DuplicateConstantValueEnumeration.php 2 additions, 2 deletions...Fixture/Enumeration/DuplicateConstantValueEnumeration.php
- typo3/sysext/core/Tests/Unit/Type/Fixture/Enumeration/InvalidConstantEnumeration.php 2 additions, 2 deletions...t/Type/Fixture/Enumeration/InvalidConstantEnumeration.php
- typo3/sysext/core/Tests/Unit/Type/Fixture/Enumeration/MissingConstantsEnumeration.php 2 additions, 2 deletions.../Type/Fixture/Enumeration/MissingConstantsEnumeration.php
- typo3/sysext/core/Tests/Unit/Type/Fixture/Enumeration/MissingDefaultEnumeration.php 2 additions, 2 deletions...it/Type/Fixture/Enumeration/MissingDefaultEnumeration.php
- typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php 31 additions, 0 deletionstypo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
- typo3/sysext/core/Tests/Unit/Utility/MathUtilityTest.php 15 additions, 0 deletionstypo3/sysext/core/Tests/Unit/Utility/MathUtilityTest.php
- typo3/sysext/core/Tests/Unit/Utility/PathUtilityPublicPathsTest.php 27 additions, 7 deletions...xt/core/Tests/Unit/Utility/PathUtilityPublicPathsTest.php
- typo3/sysext/core/Tests/Unit/Versioning/VersionStateTest.php 4 additions, 1 deletiontypo3/sysext/core/Tests/Unit/Versioning/VersionStateTest.php
Please register or sign in to comment