Directory Tests/Unit/Cache/Backend/

Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
8
Lines of Code:
0

[root]/Tests/Unit/Cache/Backend

Lines of Code

Tests/Unit/Cache/Backend/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 32 (100.0%) 963 (100.0%) 30.0
k-fish 27 (84.4%) 717 (74.5%) 26.5
robert 4 (12.5%) 245 (25.4%) 61.2
andi 1 (3.1%) 1 (0.1%) 1.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 8 files:

  • Tests/Unit/Cache/Backend: APCBackendTest.php (del), AbstractBackendTest.php (del), ApcBackendTest.php (del), FileBackendTest.php (del), MemcachedBackendTest.php (del), MockBackend.php (del), PdoBackendTest.php (del), TransientMemoryBackendTest.php (del)
k-fish 2010-08-18 12:55 Rev.: 5001

[~TASK] FLOW3 (Cache): Made testcases for APC and memcache backends more reliable.

36 lines of code changed in 2 files:

  • Tests/Unit/Cache/Backend: ApcBackendTest.php (+20 -19), MemcachedBackendTest.php (+16 -16)
k-fish 2010-08-18 09:43 Rev.: 4998

[+BUGFIX] FLOW3 (Cache): Sanitizing entry identifier in Cache\FileBackend, fixes #9357.

126 lines of code changed in 1 file:

  • Tests/Unit/Cache/Backend: FileBackendTest.php (+126 -1)
k-fish 2010-08-13 16:21 Rev.: 4969

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

0 lines of code changed in 10 files:

  • Tests/Unit/Cache/Backend: AbstractBackendTest.php (-1), ApcBackendTest.php (-1), FileBackendTest.php (-1), MemcachedBackendTest.php (-1), MockBackend.php (new), PdoBackendTest.php (-1), TransientMemoryBackendTest.php (-1)
andi 2010-07-28 12:00 Rev.: 4921

[~BUGFIX] FLOW3: Various tests are now using the concatenatePaths utitlity method when building a path to the temp directory. This resolves #8913.

1 lines of code changed in 1 file:

  • Tests/Unit/Cache/Backend: PdoBackendTest.php (+1 -1)
k-fish 2010-02-23 23:04 Rev.: 3845

[~TASK] Fluid (Unit Tests): Fixed TemplateParserTest and ViewHelperNodeComparatorTest by what counts as a rewrite.
[~TASK] FLOW3 (Unit Tests): Fixed some test failures with recent changes as well as when using vanilla PHPUnit.

3 lines of code changed in 2 files:

  • Tests/Unit/Cache/Backend: MemcachedBackendTest.php (+3 -1)
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.

16 lines of code changed in 1 file:

  • Tests/Unit/Cache/Backend: PdoBackendTest.php (+16 -15)
robert 2010-01-26 10:54 Rev.: 3758

[+FEATURE] FLOW3 (Cache): Implemented a PHP Cache Frontend which allows for effective caching of PHP code which is included with require_once() instead of runtime parsing with eval(). This significantly improves speed when used in combination with an opcode cache such as APC. Currently only the FileBackend supports PHP code caching. Resolves #6137
[+FEATURE] FLOW3 (AOP): The AOP Framework now uses the new PHP cache frontend for storing AOP proxy classes. Speeds up the initial startup of FLOW3 enormously. Relates to #6137
[~TASK] FLOW3: Removed all dependencies from the PHP6 package because the unicode support we were using didn't really make sense in the respective situations.
[+BUGFIX] FLOW3 (Utility): Fixed a bug in Files::emptyDirectoryRecursively() which wrongly recognized certain files as directories due to incorrect usage of the directory iterator.

228 lines of code changed in 1 file:

  • Tests/Unit/Cache/Backend: FileBackendTest.php (+228 -349)
robert 2010-01-15 15:38 Rev.: 3643

[~TASK] FLOW3 (Documentation): Updated the Coding Guidelines: removed inconsistent exceptions from the general class naming rules. Also added the rule that names of aspect classes must end with "Aspect". Relates to #5658
[~TASK] Global: Renamed many classes and interfaces in order to be consistent with FLOW3's naming rules. A migration script to update third-party applications will follow soon. Resolves #5658

1 lines of code changed in 2 files:

  • Tests/Unit/Cache/Backend: FileBackendTest.php (new)
k-fish 2010-01-13 17:30 Rev.: 3616

[+FEATURE] FLOW3 (Persistence): Wrote a new persistence backend using a database directly instead of TYPO3CR. Details see below. Resolves #6006.
[+API] FLOW3 (Persistence): Added new backend classes that can be used for further backends.
[-API] FLOW3 (Persistence): Removed methods getIdentifierByObject(), getObjectByIdentifier() and isNewObject() from BackendInterface.
[+API] FLOW3 (Persistence): Removed methods getIdentifierByObject(), getObjectByIdentifier() and isNewObject() to ManagerInterface and Manager.
[-API] FLOW3 (Persistence): Removed withUUID() from QueryInterface, use getObjectByIdentifier() on Manager instead.
[+API] FLOW3 (Persistence): Added constants for query operators to QueryInterface.

0 lines of code changed in 1 file:

  • Tests/Unit/Cache/Backend: PdoBackendTest.php (-2)
k-fish 2009-12-11 10:53 Rev.: 3545

[~TASK] FLOW3 (Tests): fixed unit tests failing after my last commit...

1 lines of code changed in 1 file:

  • Tests/Unit/Cache/Backend: PdoBackendTest.php (+1 -1)
k-fish 2009-11-30 18:45 Rev.: 3528

[~TASK] FLOW3 (Cache): Implemented a PDO-based cache backend, resolves #5446.
[~TASK] FLOW3 (Cache): Renamed APCBackend to ApcBackend, some other changes and optimizations.
[+TASK] FLOW3 (Utility): Added a small PdoHelper to aid in setting up DB tables.

551 lines of code changed in 2 files:

  • Tests/Unit/Cache/Backend: ApcBackendTest.php (new 278), PdoBackendTest.php (new 273)
Generated by StatSVN 0.5.0