diff --git a/src/Symfony/Component/BrowserKit/Client.php b/src/Symfony/Component/BrowserKit/Client.php index 0beea40c4d9eb..f185d43feee7f 100644 --- a/src/Symfony/Component/BrowserKit/Client.php +++ b/src/Symfony/Component/BrowserKit/Client.php @@ -151,14 +151,15 @@ public function getServerParameter($key, $default = '') return isset($this->server[$key]) ? $this->server[$key] : $default; } - public function switchToXHR() + public function xmlHttpRequest(string $method, string $uri, array $parameters = array(), array $files = array(), array $server = array(), string $content = null, bool $changeHistory = true): Crawler { $this->setServerParameter('HTTP_X_REQUESTED_WITH', 'XMLHttpRequest'); - } - public function removeXHR() - { - unset($this->server['HTTP_X_REQUESTED_WITH']); + try { + return $this->request($method, $uri, $parameters, $files, $server, $content, $changeHistory); + } finally { + unset($this->server['HTTP_X_REQUESTED_WITH']); + } } /** diff --git a/src/Symfony/Component/BrowserKit/Tests/ClientTest.php b/src/Symfony/Component/BrowserKit/Tests/ClientTest.php index e441432989558..741b29b9c72a7 100644 --- a/src/Symfony/Component/BrowserKit/Tests/ClientTest.php +++ b/src/Symfony/Component/BrowserKit/Tests/ClientTest.php @@ -104,13 +104,11 @@ public function testGetRequestNull() $this->assertNull($client->getRequest()); } - public function testGetRequestWithXHR() + public function testXmlHttpRequest() { $client = new TestClient(); - $client->switchToXHR(); - $client->request('GET', 'http://example.com/', array(), array(), array(), null, true, true); + $client->xmlHttpRequest('GET', 'http://example.com/', array(), array(), array(), null, true); $this->assertEquals($client->getRequest()->getServer()['HTTP_X_REQUESTED_WITH'], 'XMLHttpRequest'); - $client->removeXHR(); $this->assertFalse($client->getServerParameter('HTTP_X_REQUESTED_WITH', false)); }
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Alternative Proxies: