Skip to content
Snippets Groups Projects
  1. Mar 14, 2023
  2. Oct 14, 2022
  3. Oct 19, 2021
    • Christian Kuhn's avatar
      [TASK] Do not cache phpunit results · 589df09c
      Christian Kuhn authored
      phpunit has a default-enabled feature to write test
      result to a cache file. phpunit however has no option
      to only run failed tests since those tests may have
      an @depends annatation and its hard for phpunit to
      sort this out. The cache file is of rather little
      use and mostly only pollutes the filesystem in real
      life.
      
      When developing core tests, developer typically
      use a filter or a path constraint to execute a sub set
      of tests only.
      
      Additionally, with multiple phpunit .xml files in
      one directory, the cache file overrides itself when
      different suites are executed.
      
      The patch disables that cache file by default in
      phpunit xml files.
      
      If anyone still wants to run the test suite and have
      tests that failed executed first, the option can be
      enabled on a per-use basis, example using runTests.sh:
      
        # Run suite and create cache file
        Build/Scripts/runTests.sh -e '--cache-result'
        # Run tests that failed first and update cache file
        Build/Scripts/runTests.sh -e '--cache-resul...
      589df09c
    • Jochen Roth's avatar
      [TASK] Add acceptance test for sitemap · 2e1d68b9
      Jochen Roth authored
      To make sure the sitemap works as expected
      a acceptance test has been added for
      the sitemap overview and detail view.
      
      Resolves: #94903
      Releases: master
      Change-Id: Ia747e4103aec5678300c0f91721bbef14e27e1d8
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70639
      
      
      Tested-by: default avatarcore-ci <typo3@b13.com>
      Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
      Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
      Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      2e1d68b9
  4. Aug 13, 2021
  5. Aug 06, 2021
  6. Feb 24, 2021
  7. Feb 15, 2021
  8. Jan 25, 2021
  9. May 26, 2020
  10. Apr 05, 2019
  11. Oct 25, 2018
  12. Sep 18, 2018
  13. Aug 10, 2018
  14. Jul 07, 2018
    • Davert's avatar
      [TASK] Refactor acceptance tests · aab39102
      Davert authored
      typo3/testing-framework got a major release:
      composer update typo3/testing-framework ^4.0
      
      * codeception acceptance tests now live in a proper php namespace
      * merged installation suites yml files into one
      * installer tests are now one suite with different environment settings
      * aligned with changes in typo3/testing-framework
      * renamed Acceptance test suite to Backend test suite
      * removed Admin/Editor steps, replaced with useExistingLogin('role')
      
      Resolves: #85472
      Releases: master
      Change-Id: Ia049b43f5f9f645dddb509bde557ad83a7ac9023
      Reviewed-on: https://review.typo3.org/57461
      
      
      Tested-by: default avatarTYPO3com <no-reply@typo3.com>
      Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      aab39102
  15. Jun 22, 2018
  16. Aug 14, 2017
  17. Jul 31, 2017
  18. May 20, 2017
  19. Feb 05, 2017
  20. Jan 27, 2017
  21. Nov 07, 2016
  22. Oct 24, 2016
  23. Oct 10, 2016
  24. Jun 08, 2016
  25. Mar 03, 2016
  26. Aug 11, 2015
  27. Jul 16, 2015
  28. Jul 15, 2015
  29. Apr 02, 2015
  30. Mar 28, 2015
  31. Mar 26, 2015
  32. Mar 25, 2015
    • Benjamin Mack's avatar
      [!!!][TASK] Use typo3/contrib/vendor/ instead of Packages/ · 637ccaa2
      Benjamin Mack authored
      In a result of best practices with composer as well as taking
      the tarball distributions (typo3_src.zip) into account, the
      directory Packages/ is not necessarily optimal now for either
      development and shipping a package.
      
      Distributions (like the composer-installer for TYPO3) can still
      use the Packages/ directory in their webroot for other
      packages.
      
      This means: The TYPO3 source will not contain any
      third party library anymore in its GIT repository but instead
      these are installed via composer.
      
      For development purposes this means that a "composer install"
      command will install all required dev-dependencies into
      typo3/contrib/vendor/ which is now ignored by git and no
      changes are installed anymore.
      
      For the packaging process a "composer install --no-dev -o" will
      be executed when building the tarball and zip files on each
      release, downloading the necessary third-party libraries directly
      into "typo3/contrib/vendor/".
      
      Existing developer installations need to run
      "rm -rf typo3/contrib/vendor/ bin/ Packages/Libraries/ composer.lock"
      inside the typo3 repository directory and do a "composer install"
      again after applying this patch.
      
      This way, there is no conflict between autoloader as well as the
      Packages/ directory anymore for the TYPO3 CMS Core.
      
      The typo3/contrib/vendor/ folder is completely removed from
      Git as it is now handled via composer.
      
      Resolves: #66001
      Releases: master
      Change-Id: I70ff4e1427f2b9d888b7de336e577851116b93cf
      Reviewed-on: http://review.typo3.org/38138
      
      
      Reviewed-by: default avatarMarkus Klein <klein.t3@reelworx.at>
      Tested-by: default avatarMarkus Klein <klein.t3@reelworx.at>
      637ccaa2
  33. Mar 24, 2015
  34. Jan 26, 2015
  35. Nov 30, 2014
  36. Sep 09, 2014
  37. Jun 25, 2014