Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Content Repository Test Suite #4455

Merged
merged 39 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
0454bf0
Introduce test support suite package
Jul 13, 2023
93da115
Declare test suite package in distribution
Jul 13, 2023
ace0152
Rename test suite package
Jul 13, 2023
9d747cf
Fix namespace
Jul 13, 2023
6658ba4
Add autoloading to test suite
Jul 13, 2023
7bdd4e8
Merge branch '9.0' into testSuite
Jul 31, 2023
3ea1df2
Merge branch '9.0' into testSuite
Aug 1, 2023
bf16879
Extract feature traits to TestSuite package
Aug 1, 2023
6e86c07
Introduce the test suite to linting
Aug 1, 2023
9f0cbe2
WIP: Adjust test suite
Aug 17, 2023
7176e5a
Adjust NodeTraversal tests
Aug 17, 2023
80653e5
Adjust NodeTypeChange tests
Aug 17, 2023
f6be389
Adjust final test cases
Aug 17, 2023
86071fd
Clean up stuff
Aug 17, 2023
b79dcb4
Merge branch '9.0' into testSuite
Aug 17, 2023
b16bde1
Pacify linter
Aug 17, 2023
d614486
(hopefully) Increase readability of tests
Aug 18, 2023
ce3589d
Further separate tests from CR registry
Aug 18, 2023
9934739
Run tests only on one graph adapter
Aug 18, 2023
4e87058
Extract CurrentSubgraphTrait
Aug 18, 2023
673a6e3
Move test helpers / bootstrap traits to respective packages
Aug 18, 2023
087a0a6
Adjust behavioral tests to registry architecture
Aug 19, 2023
c52215f
Make CRRegistrySubjectProvider work for 3rd party applications
Aug 19, 2023
86e020a
Pacify linter
Aug 19, 2023
cec6451
Require behat and phpunit
Aug 20, 2023
d2f90b8
Adjust DBAL adapter tests
Aug 20, 2023
8bdd842
Revert obsolete changes on ContentRepositoryRegistry::buildFactory
Aug 20, 2023
8e63465
Clean up higher level feature contexts
Aug 20, 2023
f0720dd
run CR setup before cleanup
Aug 25, 2023
c51663d
Remove implicit dependency from TestSuite to BehavioralTests
Aug 25, 2023
3d0a7eb
properly name reset method and correct nodeTypeManager::getNodeTypes …
Aug 25, 2023
a182756
Adjust DoctrineDBAL adapter and Neos test suites
Aug 25, 2023
fb4714a
Adjust Neos.Neos behavioral tests
Aug 25, 2023
d7fea93
Fix typo
Aug 26, 2023
373d253
Merge branch '9.0' into testSuite
Aug 26, 2023
b3e6431
Move test suite helpers to test folders to avoid autoloading in non-t…
Aug 29, 2023
e12ebe4
Move BT helpers
Aug 29, 2023
d994260
Revert "Move BT helpers"
Aug 29, 2023
b11cbe4
Revert "Move test suite helpers to test folders to avoid autoloading …
Aug 29, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ trait CRTestSuiteTrait
protected function setupCRTestSuiteTrait(bool $alwaysRunCrSetup = false): void
{
if (getenv('CATCHUPTRIGGER_ENABLE_SYNCHRONOUS_OPTION')) {
CatchUpTriggerWithSynchronousOption::enableSynchonityForSpeedingUpTesting();
CatchUpTriggerWithSynchronousOption::enableSynchronicityForSpeedingUpTesting();
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class CatchUpTriggerWithSynchronousOption implements ProjectionCatchUpTriggerInt
/**
* INTERNAL
*/
public static function enableSynchonityForSpeedingUpTesting(): void
public static function enableSynchronicityForSpeedingUpTesting(): void
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks fixes: #4347

{
self::$synchronousEnabled = true;
}
Expand Down