Directory Tests/AOP/Fixture/

Directory Created:
2008-06-04 12:47
Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
10
Lines of Code:
0

[root]/Tests/AOP/Fixture

Lines of Code

Tests/AOP/Fixture/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 39 (100.0%) 426 (100.0%) 10.9
robert 10 (25.6%) 353 (82.9%) 35.3
k-fish 29 (74.4%) 73 (17.1%) 2.5

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 10 files:

  • Tests/AOP/Fixture: AspectClassWithAllAdviceTypes.php (del), ClassTaggedWithSomething.php (del), F3_FLOW3_Tests_AOP_Fixture_AspectClassWithAllAdviceTypes.php (del), F3_FLOW3_Tests_AOP_Fixture_ClassTaggedWithSomething.php (del), F3_FLOW3_Tests_AOP_Fixture_CustomFilter.php (del), F3_FLOW3_Tests_AOP_Fixture_EmptyClass.php (del), F3_FLOW3_Tests_AOP_Fixture_InterfaceForIntroduction.php (del), F3_FLOW3_Tests_AOP_Fixture_MethodsTaggedWithSomething.php (del), InterfaceForIntroduction.php (del), MethodsTaggedWithSomething.php (del)
k-fish 2009-07-16 15:02 Rev.: 2813

[+TASK] FLOW3: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Fluid: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Kickstart: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] PHP6: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] PHPUnit: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Testing: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Welcome: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] YAML: Removed file level docblocks and @package/@subpackage annotations.

0 lines of code changed in 4 files:

  • Tests/AOP/Fixture: AspectClassWithAllAdviceTypes.php (-8), ClassTaggedWithSomething.php (-8), InterfaceForIntroduction.php (-8), MethodsTaggedWithSomething.php (-8)
robert 2009-01-28 13:04 Rev.: 1811

!!! Globally renamed all class files to the new shorter version. Resolves #2524
FLOW3: (Resource) Adapted the class loader and other related parts of FLOW3 to the new class filename convention
FLOW3: Moved the FLOW3 bootstrap into the F3\FLOW3 namepace

32 lines of code changed in 4 files:

  • Tests/AOP/Fixture: AspectClassWithAllAdviceTypes.php (new 8), ClassTaggedWithSomething.php (new 8), InterfaceForIntroduction.php (new 8), MethodsTaggedWithSomething.php (new 8)
k-fish 2009-01-15 16:06 Rev.: 1749

FLOW3:
* fixed license name in @license annotation, fixes #2454

4 lines of code changed in 4 files:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_AspectClassWithAllAdviceTypes.php (+1 -1), F3_FLOW3_Tests_AOP_Fixture_ClassTaggedWithSomething.php (+1 -1), F3_FLOW3_Tests_AOP_Fixture_InterfaceForIntroduction.php (+1 -1), F3_FLOW3_Tests_AOP_Fixture_MethodsTaggedWithSomething.php (+1 -1)
robert 2009-01-15 15:24 Rev.: 1747

This is a big commit (sorry - not exactly Continuous Integration ...)
While all seems to be fine and stable, many features introduced in this commit are not complete. Especially AOP Proxy Caching, Logging (API), the System Logger and the Signal Slots mechanism need some further work.

* TYPO3 Distribution: Added a Log directory
* TYPO3 Distribution: Disabled security (for now) because some thing need to be refactored and tested again after this commit
* FLOW3: Further cleanup of the bootstrap. Addresses #2117
* FLOW3: Removed manual registration of objects from all classes and created an Objects.yaml configuration instead which declares the objects and configures their dependencies. This manual registration is necessary for objects such as the AOP Framework because at the time it is created, the Object Manager is not yet fully initialized.
* FLOW3: (AOP) Refactored and cleaned up the AOP initialization process. Resolves #441.
* FLOW3: (AOP) Completely rewrote all unit tests and added many new ones. Now no AOP test relies on the TestPackage anymore. Addresses #1868
* FLOW3: (AOP) Improved the automatic documentation rendering of the Proxy Class Builder. Resolves #35.
* FLOW3: (AOP) Externalized the creation of the AOP proxy and instead use the Caches.yaml configuration.
* FLOW3: (AOP) Removed all use of PHP's Reflection classes and replaced them with calls to the Reflection Service
* FLOW3: (AOP) Converted all classes involved in the proxy building process from static into dynamic calls
* FLOW3: (Cache) Introduced an (semi) automatic cache registration feature which assures that all necessary caches are registered when file changes are detected. In order to register a cache, just define it in the new "Caches.yaml" configuration file. See the FLOW3 package for examples. Resolves #1787
* FLOW3: (Cache) Wrote more tests for the File Backend. Resolves #1843
* FLOW3: (Configuration) Improved the performance of the special configuration management
* FLOW3: (Configuration) Added support for Caches.* configuration
* FLOW3: (Error) The exception handlers now log uncaught exceptions to the System Logger
* FLOW3: (Monitor) Introduced a new sub package "Monitor" which provides a mechanism for automatic detection of changes on monitored files. If monitored files or directories (the latter not yet implemented) change, a signal is emitted which can be catched by a slot taking further action. Currently all cache entries tagged with a class tag are flushed automatically if a class file changes.
* FLOW3: (Log) Introduced a special System Logger which is created automatically and can be injected if needed. Although it works quite well already, the general concept of injecting the logger and the LoggerInterface itself is not final! Watch for log files in the Data/Log/ directory when running TYPO3 / FLOW3 in development context.
* FLOW3: (Log) Introduced a Logger Factory for use in Objects configuration. Warning: the API might still change
* FLOW3: (Log) Made the SEVERITY constants conform to RFC3164 and PHP's LOG_* constants
* FLOW3: (Object) Refactored and detached more unit tests from the TestPackage. Addresses #2123
* FLOW3: (Object) Implemented an early configuration parse step which allows for configuring objects in the Objects.yaml file of the FLOW3 package even before the Package Manager is initialized.
* FLOW3: (Object) Introduced a lifecycle shutdown method (default is "shutdownObject") which can be used as a clean alternative to __destruct().
* FLOW3: (Reflection) Added new API methods: isClassReflected, getInterfaceNamesImplementedByClass, isMethodFinal, isMethodStatic, isMethodPublic, isMethodProtected, isMethodPrivate
* FLOW3: (Reflection) getMethods() now returns information about the method visibility
* FLOW3: (Security) Refactored the ACL Policy Service - might still need some final work
* FLOW3: (SignalSlot) Fixed some small issues in the Dispatcher and implemented support for System Logger
* FLOW3: (Utility) Fixed a bug in Arrays::getValueByPath
* Testing: Implemented a method buildAccessibleProxy() in the BaseTestCase which allows for conveniently calling protected methods of a class. See FLOW3 unit tests for examples.
* TestPackage: Removed many classes which became obsolete due to the AOP tests refactoring. refs #1868

133 lines of code changed in 2 files:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_AspectClassWithAllAdviceTypes.php (new 78), F3_FLOW3_Tests_AOP_Fixture_InterfaceForIntroduction.php (new 55)
k-fish 2009-01-07 11:37 Rev.: 1707

FLOW3:
* changed license to LGPL v3 or later

56 lines of code changed in 4 files:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_ClassTaggedWithSomething.php (+14 -7), F3_FLOW3_Tests_AOP_Fixture_CustomFilter.php (+14 -7), F3_FLOW3_Tests_AOP_Fixture_EmptyClass.php (+14 -7), F3_FLOW3_Tests_AOP_Fixture_MethodsTaggedWithSomething.php (+14 -7)
robert 2008-12-15 16:53 Rev.: 1634

* FLOW3: (AOP) Implemented new pointcut designator methodTaggedWith(). Resolves #2138

64 lines of code changed in 1 file:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_MethodsTaggedWithSomething.php (new 64)
k-fish 2008-12-10 15:39 Rev.: 1599

!!! 5.3.0alpha3 namespaces refactoring:
* changed namespace delimiter from :: to \
* all class references in namespaced code prepended by \

PHPUnit:
* adapted mock object handling to the new namespaces syntax

FLOW3:
* PropertyReflection now uses setAccessible() instead of array cast to access protected properties

PHPCR:
* added a missing interface already used for type hints

5 lines of code changed in 3 files:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_ClassTaggedWithSomething.php (+1 -1), F3_FLOW3_Tests_AOP_Fixture_CustomFilter.php (+3 -3), F3_FLOW3_Tests_AOP_Fixture_EmptyClass.php (+1 -1)
k-fish 2008-09-16 11:55 Rev.: 1225

FLOW3: Renamed some classes in the Reflection subpackage, fixes #1523.

1 lines of code changed in 1 file:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_CustomFilter.php (+1 -1)
k-fish 2008-09-12 16:07 Rev.: 1210

!!! Major change, will break existing code.

Part 3 - Packages

FLOW3, most other packages:
* added namespaces to the code of FLOW3 and all packages in the current TYPO3v5 distribution.

PHPUnit:
* some changes to make PHPUnit (more) namespace-compatible.

Some notes:
* Documentation updates will follow
* you might need to change your class names when adapting namespaces to avoid using "Class", "Empty", "Default", ...
* expect FLOW3CGL and/or PHPCodeSniffer to be broken (I'll have a look)
* some parts might still be broken, especially in edge-cases where the global namespace needs to explicitly used

7 lines of code changed in 3 files:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_ClassTaggedWithSomething.php (+2 -1), F3_FLOW3_Tests_AOP_Fixture_CustomFilter.php (+3 -2), F3_FLOW3_Tests_AOP_Fixture_EmptyClass.php (+2 -1)
robert 2008-07-15 16:45 Rev.: 1010

* FLOW3: (AOP) Added a new pointcut designator: filter() allows for creating custom pointcut filters (see FLOW3 manual). Resolves #889

78 lines of code changed in 2 files:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_CustomFilter.php (new 44), F3_FLOW3_Tests_AOP_Fixture_EmptyClass.php (new 34)
robert 2008-06-04 12:47 Rev.: 903

* FLOW3: (AOP) Added support for a new pointcut designator which allows to filter for matching annotations. This designator is called "classTaggedWith()". Resolves #47.
* FLOW3: (Documentation) Added documentation for the above pointcut designator.
* FLOW3: (Reflection) FLOW3's Reflection Class and Reflection Method implementation did not always return reflection objects of their own kinds if asked for getDeclaringClass() etc. - added some tests and support for that.
* FLOW3: (AOP) Refactored the pointcut filtering for making the classTaggedWith() filter possible.

46 lines of code changed in 1 file:

  • Tests/AOP/Fixture: F3_FLOW3_Tests_AOP_Fixture_ClassTaggedWithSomething.php (new 46)
Generated by StatSVN 0.5.0