CodeIgniter4/tests/system/CodeIgniterTest.php
2025-01-13 11:15:24 +08:00

961 lines
31 KiB
PHP

<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter;
use App\Controllers\Home;
use CodeIgniter\Config\Services;
use CodeIgniter\Debug\Timer;
use CodeIgniter\Exceptions\PageNotFoundException;
use CodeIgniter\HTTP\Method;
use CodeIgniter\HTTP\Response;
use CodeIgniter\Router\RouteCollection;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Filters\CITestStreamFilter;
use CodeIgniter\Test\Mock\MockCodeIgniter;
use Config\App;
use Config\Cache;
use Config\Filters as FiltersConfig;
use Config\Modules;
use Config\Routing;
use PHPUnit\Framework\Attributes\BackupGlobals;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;
use PHPUnit\Framework\Attributes\WithoutErrorHandler;
use Tests\Support\Filters\Customfilter;
use Tests\Support\Filters\RedirectFilter;
/**
* @internal
*/
#[BackupGlobals(true)]
#[Group('Others')]
#[RunTestsInSeparateProcesses]
final class CodeIgniterTest extends CIUnitTestCase
{
private CodeIgniter $codeigniter;
#[WithoutErrorHandler]
protected function setUp(): void
{
parent::setUp();
$this->resetServices();
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$this->codeigniter = new MockCodeIgniter(new App());
$response = service('response');
$response->pretend();
}
protected function tearDown(): void
{
parent::tearDown();
$this->resetServices();
}
public function testRunEmptyDefaultRoute(): void
{
$_SERVER['argv'] = ['index.php'];
$_SERVER['argc'] = 1;
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('Welcome to CodeIgniter', $output);
}
public function testOutputBufferingControl(): void
{
ob_start();
$this->codeigniter->run();
ob_get_clean();
// 1 phpunit output buffering level
$this->assertSame(1, ob_get_level());
}
public function testRunEmptyDefaultRouteReturnResponse(): void
{
$_SERVER['argv'] = ['index.php'];
$_SERVER['argc'] = 1;
$response = $this->codeigniter->run(null, true);
$this->assertStringContainsString('Welcome to CodeIgniter', $response->getBody());
}
public function testRunClosureRoute(): void
{
$_SERVER['argv'] = ['index.php', 'pages/about'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add('pages/(:segment)', static function ($segment): void {
echo 'You want to see "' . esc($segment) . '" page.';
});
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('You want to see "about" page.', $output);
}
/**
* @psalm-suppress UndefinedClass
*/
public function testRun404Override(): void
{
$_SERVER['REQUEST_METHOD'] = 'GET';
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->setAutoRoute(false);
$routes->set404Override('Tests\Support\Errors::show404');
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run($routes);
$output = ob_get_clean();
$this->assertStringContainsString("Can't find a route for 'GET: pages/about'.", $output);
$this->assertSame(404, response()->getStatusCode());
}
public function testRun404OverrideControllerReturnsResponse(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
// Inject mock router.
$routes = service('routes');
$routes->setAutoRoute(false);
$routes->set404Override('Tests\Support\Controllers\Popcorn::pop');
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
$response = $this->codeigniter->run($routes, true);
$this->assertStringContainsString('Oops', $response->getBody());
$this->assertSame(567, $response->getStatusCode());
}
public function testRun404OverrideReturnResponse(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
// Inject mock router.
$routes = service('routes');
$routes->setAutoRoute(false);
$routes->set404Override('Tests\Support\Controllers\Popcorn::pop');
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
$response = $this->codeigniter->run($routes, true);
$this->assertStringContainsString('Oops', $response->getBody());
}
public function testRun404OverrideByClosure(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
// Inject mock router.
$routes = new RouteCollection(service('locator'), new Modules(), new Routing());
$routes->setAutoRoute(false);
$routes->set404Override(static function (): void {
echo '404 Override by Closure.';
});
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run($routes);
$output = ob_get_clean();
$this->assertStringContainsString('404 Override by Closure.', $output);
$this->assertSame(404, response()->getStatusCode());
}
public function testControllersCanReturnString(): void
{
$_SERVER['argv'] = ['index.php', 'pages/about'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add(
'pages/(:segment)',
static fn ($segment): string => 'You want to see "' . esc($segment) . '" page.',
);
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('You want to see "about" page.', $output);
}
public function testControllersCanReturnResponseObject(): void
{
$_SERVER['argv'] = ['index.php', 'pages/about'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add('pages/(:segment)', static function ($segment) {
$response = service('response');
$string = "You want to see 'about' page.";
return $response->setBody($string);
});
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString("You want to see 'about' page.", $output);
}
/**
* @see https://github.com/codeigniter4/CodeIgniter4/issues/6358
*/
public function testControllersCanReturnDownloadResponseObject(): void
{
$_SERVER['argv'] = ['index.php', 'pages/about'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add('pages/(:segment)', static function ($segment) {
$response = service('response');
return $response->download('some.txt', 'some text', true);
});
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertSame('some text', $output);
}
public function testRunExecuteFilterByClassName(): void
{
$_SERVER['argv'] = ['index.php', 'pages/about'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add(
'pages/about',
static fn () => service('incomingrequest')->getBody(),
['filter' => Customfilter::class],
);
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('http://hellowworld.com', $output);
$this->resetServices();
}
public function testRegisterSameFilterTwiceWithDifferentArgument(): void
{
$_SERVER['argv'] = ['index.php', 'pages/about'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$routes = service('routes');
$routes->add(
'pages/about',
static fn () => service('incomingrequest')->getBody(),
// Set filter with no argument.
['filter' => 'test-customfilter'],
);
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
/** @var FiltersConfig $filterConfig */
$filterConfig = config('Filters');
$filterConfig->filters = [
// Set filter with argument.
'test-customfilter:arg1' => [
'before' => ['pages/*'],
],
];
service('filters', $filterConfig);
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('http://hellowworld.comhttp://hellowworld.com', $output);
$this->resetServices();
}
public function testDisableControllerFilters(): void
{
$_SERVER['argv'] = ['index.php', 'pages/about'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/pages/about';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add(
'pages/about',
static fn () => service('incomingrequest')->getBody(),
['filter' => Customfilter::class],
);
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->disableFilters();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('', $output);
$this->resetServices();
}
public function testResponseConfigEmpty(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
$response = service('response', null, false);
$this->assertInstanceOf(Response::class, $response);
}
public function testRoutesIsEmpty(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
// Inject mock router.
$router = service('router', null, service('incomingrequest'), false);
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('Welcome to CodeIgniter', $output);
}
public function testTransfersCorrectHTTPVersion(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/2.0';
ob_start();
$this->codeigniter->run();
ob_get_clean();
$response = $this->getPrivateProperty($this->codeigniter, 'response');
$this->assertSame('2.0', $response->getProtocolVersion());
}
public function testSupportsHttp3(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/3.0';
ob_start();
$this->codeigniter->run();
ob_get_clean();
$response = $this->getPrivateProperty($this->codeigniter, 'response');
$this->assertSame('3.0', $response->getProtocolVersion());
}
public function testIgnoringErrorSuppressedByAt(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
ob_start();
@unlink('inexistent-file');
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('Welcome to CodeIgniter', $output);
}
public function testRunForceSecure(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
$filterConfig = config(FiltersConfig::class);
$filterConfig->required['before'][] = 'forcehttps';
$config = config(App::class);
$config->forceGlobalSecureRequests = true;
$codeigniter = new MockCodeIgniter($config);
$codeigniter->setContext('web');
$this->getPrivateMethodInvoker($codeigniter, 'getRequestObject')();
$this->getPrivateMethodInvoker($codeigniter, 'getResponseObject')();
$response = $this->getPrivateProperty($codeigniter, 'response');
$this->assertNull($response->header('Location'));
$response = $codeigniter->run(null, true);
$this->assertSame('https://example.com/index.php/', $response->header('Location')->getValue());
}
public function testRunRedirectionWithNamed(): void
{
$_SERVER['argv'] = ['index.php', 'example'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/example';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add('pages/named', static function (): void {
}, ['as' => 'name']);
$routes->addRedirect('example', 'name');
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$response = $this->getPrivateProperty($this->codeigniter, 'response');
$this->assertSame('http://example.com/pages/named', $response->header('Location')->getValue());
}
public function testRunRedirectionWithURI(): void
{
$_SERVER['argv'] = ['index.php', 'example'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/example';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add('pages/uri', static function (): void {
});
$routes->addRedirect('example', 'pages/uri');
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$response = $this->getPrivateProperty($this->codeigniter, 'response');
$this->assertSame('http://example.com/pages/uri', $response->header('Location')->getValue());
}
/**
* @see https://github.com/codeigniter4/CodeIgniter4/issues/3041
*/
public function testRunRedirectionWithGET(): void
{
$_SERVER['argv'] = ['index.php', 'example'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/example';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['REQUEST_METHOD'] = 'GET';
// Inject mock router.
$routes = service('routes');
// addRedirect() sets status code 302 by default.
$routes->addRedirect('example', 'pages/notset');
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$response = $this->getPrivateProperty($this->codeigniter, 'response');
$this->assertSame('http://example.com/pages/notset', $response->header('Location')->getValue());
$this->assertSame(302, $response->getStatusCode());
}
public function testRunRedirectionWithGETAndHTTPCode301(): void
{
$_SERVER['argv'] = ['index.php', 'example'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/example';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['REQUEST_METHOD'] = 'GET';
// Inject mock router.
$routes = service('routes');
$routes->addRedirect('example', 'pages/notset', 301);
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$response = $this->getPrivateProperty($this->codeigniter, 'response');
$this->assertSame(301, $response->getStatusCode());
}
public function testRunRedirectionWithPOSTAndHTTPCode301(): void
{
$_SERVER['argv'] = ['index.php', 'example'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/example';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['REQUEST_METHOD'] = 'POST';
// Inject mock router.
$routes = service('routes');
$routes->addRedirect('example', 'pages/notset', 301);
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$response = $this->getPrivateProperty($this->codeigniter, 'response');
$this->assertSame(301, $response->getStatusCode());
}
public function testStoresPreviousURL(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
// Inject mock router.
$router = service('router', null, service('incomingrequest'), false);
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$this->assertArrayHasKey('_ci_previous_url', $_SESSION);
$this->assertSame('http://example.com/index.php/', $_SESSION['_ci_previous_url']);
}
public function testNotStoresPreviousURL(): void
{
$_SERVER['argv'] = ['index.php', 'example'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/example';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['REQUEST_METHOD'] = 'GET';
// Inject mock router.
$routes = service('routes');
$routes->addRedirect('example', 'pages/notset', 301);
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$this->assertArrayNotHasKey('_ci_previous_url', $_SESSION);
}
public function testNotStoresPreviousURLByCheckingContentType(): void
{
$_SERVER['argv'] = ['index.php', 'image'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/image';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->add('image', static function () {
$response = service('response');
return $response->setContentType('image/jpeg', '');
});
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
ob_start();
$this->codeigniter->run();
ob_get_clean();
$this->assertArrayNotHasKey('_ci_previous_url', $_SESSION);
}
/**
* The method after all test, reset Servces:: config
* Can't use static::tearDownAfterClass. This will cause a buffer exception
* need improve
*/
public function testRunDefaultRoute(): void
{
$_SERVER['argv'] = ['index.php', '/'];
$_SERVER['argc'] = 2;
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('Welcome to CodeIgniter', $output);
}
public function testRunCLIRoute(): void
{
$_SERVER['argv'] = ['index.php', 'cli'];
$_SERVER['argc'] = 2;
$_SERVER['REQUEST_URI'] = '/cli';
$_SERVER['SCRIPT_NAME'] = 'public/index.php';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['REQUEST_METHOD'] = 'CLI';
$routes = service('routes');
$routes->cli('cli', '\Tests\Support\Controllers\Popcorn::index');
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('Method Not Allowed', $output);
}
public function testSpoofRequestMethodCanUsePUT(): void
{
$_SERVER['argv'] = ['index.php'];
$_SERVER['argc'] = 1;
$_SERVER['REQUEST_URI'] = '/';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['REQUEST_METHOD'] = 'POST';
$_POST['_method'] = Method::PUT;
$routes = service('routes');
$routes->setDefaultNamespace('App\Controllers');
$routes->resetRoutes();
$routes->post('/', 'Home::index');
$routes->put('/', 'Home::index');
ob_start();
$this->codeigniter->run();
ob_get_clean();
$this->assertSame(Method::PUT, service('incomingrequest')->getMethod());
}
public function testSpoofRequestMethodCannotUseGET(): void
{
$_SERVER['argv'] = ['index.php'];
$_SERVER['argc'] = 1;
$_SERVER['REQUEST_URI'] = '/';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['REQUEST_METHOD'] = 'POST';
$_POST['_method'] = 'GET';
$routes = service('routes');
$routes->setDefaultNamespace('App\Controllers');
$routes->resetRoutes();
$routes->post('/', 'Home::index');
$routes->get('/', 'Home::index');
ob_start();
$this->codeigniter->run();
ob_get_clean();
$this->assertSame('POST', service('incomingrequest')->getMethod());
}
/**
* @see https://github.com/codeigniter4/CodeIgniter4/issues/6281
*/
public function testPageCacheSendSecureHeaders(): void
{
// Suppress command() output
CITestStreamFilter::registration();
CITestStreamFilter::addErrorFilter();
CITestStreamFilter::addOutputFilter();
// Clear Page cache
command('cache:clear');
$_SERVER['REQUEST_URI'] = '/test';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$routes = service('routes');
$routes->add('test', static function () {
CodeIgniter::cache(3600);
$response = service('response');
$string = 'This is a test page. Elapsed time: {elapsed_time}';
return $response->setBody($string);
});
$router = service('router', $routes, service('incomingrequest'));
Services::injectMock('router', $router);
/** @var FiltersConfig $filterConfig */
$filterConfig = config('Filters');
$filterConfig->globals['after'] = ['secureheaders'];
service('filters', $filterConfig);
// The first response to be cached.
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('This is a test page', $output);
$response = service('response');
$headers = $response->headers();
$this->assertArrayHasKey('X-Frame-Options', $headers);
// The second response from the Page cache.
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertStringContainsString('This is a test page', $output);
$response = service('response');
$headers = $response->headers();
$this->assertArrayHasKey('X-Frame-Options', $headers);
// Clear Page cache
command('cache:clear');
// Remove stream filters
CITestStreamFilter::removeErrorFilter();
CITestStreamFilter::removeOutputFilter();
}
/**
* @param array|bool $cacheQueryStringValue
*
* @see https://github.com/codeigniter4/CodeIgniter4/pull/6410
*/
#[DataProvider('providePageCacheWithCacheQueryString')]
public function testPageCacheWithCacheQueryString(
$cacheQueryStringValue,
int $expectedPagesInCache,
array $testingUrls,
): void {
// Suppress command() output
CITestStreamFilter::registration();
CITestStreamFilter::addOutputFilter();
CITestStreamFilter::addErrorFilter();
// Create cache config with cacheQueryString value from the dataProvider
$cacheConfig = config(Cache::class);
$cacheConfig->cacheQueryString = $cacheQueryStringValue;
// Clear cache before starting the test
command('cache:clear');
// Calculate amount of items in the cache before the test
$cache = \Config\Services::cache();
$cacheStartCounter = count($cache->getCacheInfo());
// Generate request to each URL from the testing array
foreach ($testingUrls as $testingUrl) {
$this->resetServices();
$_SERVER['REQUEST_URI'] = '/' . $testingUrl;
$_SERVER['SCRIPT_NAME'] = '/index.php';
$this->codeigniter = new MockCodeIgniter(new App());
$routes = service('routes', true);
$routePath = explode('?', $testingUrl)[0];
$string = 'This is a test page, to check cache configuration';
$routes->add($routePath, static function () use ($string) {
service('responsecache')->setTtl(60);
$response = service('response');
return $response->setBody($string);
});
// Inject router
$router = service('router', $routes, service('incomingrequest', null, false));
Services::injectMock('router', $router);
// Cache the page output using default caching function and $cacheConfig
// with value from the data provider
ob_start();
$this->codeigniter->run();
$output = ob_get_clean();
$this->assertSame($string, $output);
}
// Calculate how much cached items exist in the cache after the test requests
$cacheEndCounter = count($cache->getCacheInfo());
$newPagesCached = $cacheEndCounter - $cacheStartCounter;
// Clear cache after the test
command('cache:clear');
// Check that amount of new items created in the cache matching expected value from the data provider
$this->assertSame($expectedPagesInCache, $newPagesCached);
// Remove stream filters
CITestStreamFilter::removeOutputFilter();
CITestStreamFilter::removeErrorFilter();
}
public static function providePageCacheWithCacheQueryString(): iterable
{
$testingUrls = [
// URL #1
'test',
// URL #2
'test?important_parameter=1',
// URL #3
'test?important_parameter=2',
// URL #4
'test?important_parameter=1&not_important_parameter=2',
// URL #5
'test?important_parameter=1&not_important_parameter=2&another_not_important_parameter=3',
];
return [
// We expect only 1 page in the cache, because when cacheQueryString
// is set to false, all GET parameter should be ignored, and page URI
// will be absolutely same "/test" string for all 5 requests
'$cacheQueryString=false' => [false, 1, $testingUrls],
// We expect all 5 pages in the cache, because when cacheQueryString
// is set to true, all GET parameter should be processed as unique requests
'$cacheQueryString=true' => [true, 5, $testingUrls],
// We expect only 3 pages in the cache, because when cacheQueryString
// is set to array with important parameters, we should ignore all
// parameters thats not in the array. Only URL #1, URL #2 and URL #3
// should be cached. URL #4 and URL #5 is duplication of URL #2
// (with value ?important_parameter=1), so they should not be processed
// as new unique requests and application should return already cached
// page for URL #2
'$cacheQueryString=array' => [['important_parameter'], 3, $testingUrls],
];
}
/**
* See https://github.com/codeigniter4/CodeIgniter4/issues/7205
*/
public function testRunControllerNotFoundBeforeFilter(): void
{
$_SERVER['argv'] = ['index.php'];
$_SERVER['argc'] = 1;
$_SERVER['REQUEST_URI'] = '/cannotFound';
$_SERVER['SCRIPT_NAME'] = '/index.php';
// Inject mock router.
$routes = service('routes');
$routes->setAutoRoute(true);
// Inject the before filter.
$filterConfig = config('Filters');
$filterConfig->aliases['redirectFilter'] = RedirectFilter::class;
$filterConfig->globals['before'] = ['redirectFilter'];
service('filters', $filterConfig);
$this->expectException(PageNotFoundException::class);
$this->codeigniter->run($routes);
}
public function testStartControllerPermitsInvoke(): void
{
$this->setPrivateProperty($this->codeigniter, 'benchmark', new Timer());
$this->setPrivateProperty($this->codeigniter, 'controller', '\\' . Home::class);
$startController = $this->getPrivateMethodInvoker($this->codeigniter, 'startController');
$this->setPrivateProperty($this->codeigniter, 'method', '__invoke');
$startController();
// No PageNotFoundException
$this->assertTrue(true);
}
}