- Move 12 markdown files from root to docs/ subdirectories - Organize documentation by category: • docs/troubleshooting/ (1 file) - Technical troubleshooting guides • docs/deployment/ (4 files) - Deployment and security documentation • docs/guides/ (3 files) - Feature-specific guides • docs/planning/ (4 files) - Planning and improvement proposals Root directory cleanup: - Reduced from 16 to 4 markdown files in root - Only essential project files remain: • CLAUDE.md (AI instructions) • README.md (Main project readme) • CLEANUP_PLAN.md (Current cleanup plan) • SRC_STRUCTURE_IMPROVEMENTS.md (Structure improvements) This improves: ✅ Documentation discoverability ✅ Logical organization by purpose ✅ Clean root directory ✅ Better maintainability
66 lines
2.7 KiB
PHP
66 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
use App\Framework\Attributes\Route;
|
|
use App\Framework\Http\Method;
|
|
use App\Framework\Router\ValueObjects\Placeholder;
|
|
use App\Framework\Router\ValueObjects\RoutePath;
|
|
|
|
echo "=== Testing Route Value Objects ===\n\n";
|
|
|
|
// Test 1: Traditional string route
|
|
echo "1. Traditional string route:\n";
|
|
$stringRoute = new Route(path: '/api/users/{id}', method: Method::GET);
|
|
echo " Path: " . $stringRoute->getPathAsString() . "\n";
|
|
echo " Dynamic: " . ($stringRoute->getRoutePath()->isDynamic() ? 'Yes' : 'No') . "\n";
|
|
echo " Parameters: " . implode(', ', $stringRoute->getRoutePath()->getParameterNames()) . "\n\n";
|
|
|
|
// Test 2: Value Object route - your original example
|
|
echo "2. Value Object route (your example):\n";
|
|
$routePath = RoutePath::fromElements('images', Placeholder::fromString('filename'));
|
|
$valueObjectRoute = new Route(path: $routePath, method: Method::GET);
|
|
echo " Path: " . $valueObjectRoute->getPathAsString() . "\n";
|
|
echo " Dynamic: " . ($valueObjectRoute->getRoutePath()->isDynamic() ? 'Yes' : 'No') . "\n";
|
|
echo " Parameters: " . implode(', ', $valueObjectRoute->getRoutePath()->getParameterNames()) . "\n\n";
|
|
|
|
// Test 3: Complex Value Object route
|
|
echo "3. Complex Value Object route:\n";
|
|
$complexPath = RoutePath::fromElements(
|
|
'api',
|
|
'users',
|
|
Placeholder::typed('userId', 'uuid'),
|
|
'posts',
|
|
Placeholder::typed('postId', 'int')
|
|
);
|
|
$complexRoute = new Route(path: $complexPath, method: Method::POST);
|
|
echo " Path: " . $complexRoute->getPathAsString() . "\n";
|
|
echo " Parameters: " . implode(', ', $complexRoute->getRoutePath()->getParameterNames()) . "\n\n";
|
|
|
|
// Test 4: Fluent builder
|
|
echo "4. Fluent builder approach:\n";
|
|
$fluentPath = RoutePath::create()
|
|
->segment('api')
|
|
->segment('files')
|
|
->typedParameter('filename', 'filename')
|
|
->build();
|
|
$fluentRoute = new Route(path: $fluentPath);
|
|
echo " Path: " . $fluentRoute->getPathAsString() . "\n";
|
|
|
|
// Test 5: Wildcard
|
|
echo "\n5. Wildcard route:\n";
|
|
$wildcardPath = RoutePath::fromElements('files', Placeholder::wildcard('path'));
|
|
$wildcardRoute = new Route(path: $wildcardPath);
|
|
echo " Path: " . $wildcardRoute->getPathAsString() . "\n";
|
|
echo " Regex: " . $wildcardRoute->getRoutePath()->toRegex() . "\n";
|
|
|
|
// Test 6: Compatibility check
|
|
echo "\n6. Compatibility check:\n";
|
|
$stringRoute2 = new Route(path: '/api/users/{id}');
|
|
$objectRoute2 = new Route(path: RoutePath::fromElements('api', 'users', Placeholder::fromString('id')));
|
|
echo " String and object routes are equivalent: " .
|
|
($stringRoute2->getPathAsString() === $objectRoute2->getPathAsString() ? 'Yes' : 'No') . "\n";
|
|
|
|
echo "\n=== All tests completed successfully! ===\n"; |