[TASK] Add first functional test and enable pipelines #36
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This changes adds the
ExtensionLoadedTestas firsttest along with a
AbstractFunctionalTestCaseclassto test basic things without testing extension code
directly, for example:
Ensure that using
AbstractFunctionalTestCaseloads theextension itself and the TYPO3 instance can find it using
the
EXTENSION_KEYandCOMPOSER_PACKAGE_NAMEdeclaredin the root
composer.jsonof the extension.Bootstraping extension with the instance already checks for
derecated api or other deprecation including automatic TCA
migration emitting
E_USER_DEPRECATEDby the for. It alsoreveales related issues directly like
Services.yamlissues.Beside acting as a first test, this test provides a simple base
test for the abstract testcase class and basic bootstrap related
issues helping on updates to use it as single test, as it may be
harder to find systematic issues with a later complete test suite.
Used command(s):
Build/Scripts/runTests.sh -p 7.4 -t 11 -s composerUpdate \ && Build/Scripts/runTests.sh -p 7.4 -t 11 -s cgl