Directory Tests/Unit/Persistence/Backend/GenericPdo/

Directory Created:
2010-01-20 14:38
Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
2
Lines of Code:
0

[root]/Tests/Unit/Persistence/Backend/GenericPdo

Lines of Code

Tests/Unit/Persistence/Backend/GenericPdo/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 17 (100.0%) 2465 (100.0%) 145.0
k-fish 16 (94.1%) 2453 (99.5%) 153.3
robert 1 (5.9%) 12 (0.5%) 12.0

Most Recent Commits

k-fish 2010-08-24 10:42 Rev.: 5057

Removed everything in trunk after move to git.

0 lines of code changed in 2 files:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (del), DataMapperTest.php (del)
k-fish 2010-08-13 16:21 Rev.: 4969

[-TASK] FLOW3: Removed @version keyword from files, resolves #8835.

0 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (-1)
k-fish 2010-06-27 20:20 Rev.: 4639

[~TASK] FLOW3 (Persistence): Adjusted unit tests not included in last commit (If objects have been blocked by security query rewriting, ignore them in certain places); relates to #6604.

3 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+3)
k-fish 2010-06-25 13:25 Rev.: 4636

[+BUGFIX] FLOW3 (Persistence): logicalNot() now works, fixes #8411. Some code cleanup along the way.

2 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+2 -2)
k-fish 2010-06-10 14:57 Rev.: 4483

[~TASK] FLOW3: Replaced generic exceptions by exceptions coming from the defined exception hierarchy, resolves #7682.
[~TASK] Fluid: Replaced generic exceptions by exceptions coming from the defined exception hierarchy, relates to #7682.
[~TASK] Kickstart: Replaced generic exceptions by exceptions coming from the defined exception hierarchy, relates to #7682.
[~TASK] Testing: Replaced generic exceptions by exceptions coming from the defined exception hierarchy, relates to #7682.
[~TASK] TypoScript: Replaced generic exceptions by exceptions coming from the defined exception hierarchy, relates to #7682. Renamed on exception to follow CGL.
[~TASK] TYPO3: Replaced generic exceptions by exceptions coming from the defined exception hierarchy, relates to #7682. Renamed existing exceptions to follow CGL.

1 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+1 -1)
k-fish 2010-04-30 16:13 Rev.: 4252

[+FEATURE] FLOW3 (Persistence): Added some more tests for nested array support, basics work; resolves #7495, resolves #7496.
[-TASK] FLOW3 (Persistence) removed getCleanState() from AbstractBackend, it was useless since the dirty checking refactoring, relates to #7567.
[~TASK] FLOW3 (Persistence): Adjusted the code to take care of removed objects inside arrays and SplObjectStorages, fixes #7567.

101 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+101 -9)
k-fish 2010-04-30 10:34 Rev.: 4246

[+FEATURE] FLOW3 (Persistence): Implemented nested array support, basics work; relates to #7495, relates to #7496.
[~TASK] FLOW3 (Debugger): Now the var_dump has a lined background even if there is an exception trace shown at the same time.

53 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+53 -6)
k-fish 2010-03-30 11:20 Rev.: 4035

[~TASK] FLOW3 (Error): When logging exceptions, the line number is now correctly output.
[+BUGFIX] FLOW3 (Persistence): Existing value objects' properties are now no longer persisted (nonsense, they are immutable anyway).
[+BUGFIX] FLOW3 (Persistence): When an entity is replaced through reference (as opposed to through a repository), it is now handled correctly.

18 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+18 -15)
k-fish 2010-03-24 12:16 Rev.: 4010

[+FEATURE] FLOW3 (Persistence): When persisting all new and dirty objects are validated now, resolves #3846. If validation fails, an exception is thrown.

113 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+113 -38)
k-fish 2010-03-11 21:07 Rev.: 3930

[+FEATURE] FLOW3 (Persistence): Reimplemented lazy loading, resolves #6120. See updated manual for details.
[+FEATURE] FLOW3 (Persistence): Lazy loaded SplObjectStorage can now be counted without triggering activation, resolves #3337.
[~API] FLOW3 (Persistence): Moved the BackendInterface into the Backend namespace.
[-API] FLOW3 (Persistence): Removed the DataMapperInterface. Backends should follow the defined data structure.
[~TASK] FLOW3 (Persistence): Optimized clean data handling while dirty checking, reducing memory usage.

15 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+15 -12)
robert 2010-02-22 16:17 Rev.: 3837

[+FEATURE] FLOW3 (Object): Implemented a static object container which is automatically built. It's essentially a hardcoded version of the autowired and configured object dependencies - just a lot faster. Many tests are still missing, but the version in this commit should be mostly functional. Addresses #3740 and resolves #2123.
[!!!][~API] FLOW3 (Object): Heavily refactored the Object Manager and its tests. The most important change is the removal of the Object Factory whose create() method is now located in the Object Manager. Furthermore, the getObject() method has been renamed to get() and a few minor important API functions within the Object Manager have been modified. This commit also contains a script which allows for semi automatically migrating existing code to the new API (see ./flow3 migrate objectmanagerusage). Resolves #6562
[~TASK] FLOW3 (Configuration): The Configuration Manager and its YAML source now doesn't depend on the YAML package anymore but refers to a YAML parser class within the FLOW3 package. Resolves #6564.

12 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: DataMapperTest.php (+12 -16)
k-fish 2010-02-18 23:32 Rev.: 3830

[~TASK] FLOW3 (Persistence): Completely rewrote dirty checking, achieves massive speedup; isNew() and isDirty() are no longer AOP'ed into objects but reside in the PersistenceManager now.
[+API] FLOW3 (Persistence): getObjectDataByQuery(), getObjectCountByQuery() now in PersistenceManagerInterface.
[~API] FLOW3 (Persistence): replaceObject() moved from BackendInterface to PersistenceManagerInterface.
[-API] FLOW3 (Persistence): removed getBackend() from PersistenceManager, no longer needed as API methods from backend moved to PersistenceManager.
[~TASK] FLOW3 (Persistence): Renamed DirtyMonitoringInterface to PersistenceMagicAspect.

259 lines of code changed in 2 files:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+204 -328), DataMapperTest.php (+55 -21)
k-fish 2010-01-27 18:32 Rev.: 3769

[~TASK] FLOW3 (Core): When setting up signal/slot wiring do not rely on the YAML parser returning true booleans in the specific case at hand.
[~TASK] FLOW3 (Monitor): Renamed $signalSlotDispatcher to $signalDispatcher like in other classes.
[+FEATURE] FLOW3 (Persistence): added signals when persisting new and updated objects and when removing objects, resolves #6177.
[~TASK] FLOW3 (Resource): Moved some work from the ResourceObjectConverter to the ResourceManager when importing uploaded files.
[+API] FLOW3 (Resource): added deleteResource() to ResourceManager to remove persisted resources.

71 lines of code changed in 1 file:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (+71 -77)
k-fish 2010-01-20 14:38 Rev.: 3734

[~TASK] FLOW3 (Persistence): Cleaned up persistence backend structure, resolves #6124.

1817 lines of code changed in 2 files:

  • Tests/Unit/Persistence/Backend/GenericPdo: BackendTest.php (new 1473), DataMapperTest.php (new 344)
Generated by StatSVN 0.5.0