Click here to Skip to main content
15,888,113 members
Articles / Programming Languages / PHP

Using Cookies with PHPUnit and Symfony Basic Client

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
21 Apr 2017CPOL2 min read 6.5K  
Using Cookies with PHPUnit and Symfony basic client

Introduction

I was writing and running some simple PHPUnit functional tests using the Symfony basic client (as described here), and after authenticating (submitting a form), I noticed the client didn’t have any cookies set; or at least it appears that way. Then later after a lot of struggling, I realized that it is just a simple crawler (simple browser) and that I needed to set the cookies on my test code side. This article tells you what I did.

Creating a Client and Getting a Response

To create a client in a class that extends WebTestCase, you simply call this code:

PHP
$client = static::createClient();

This creates a client, and then you can do various things with the client. For example, on the local machine, you might want to get the homepage (in this case “/”) like so:

PHP
$client->request('GET', '/');

This works fine, except for one key point: In my case, the Symfony controller (actually the twig file) was expecting certain cookies to be set in order to know that the user had already authenticated. With cookies set, then the response returned by the controller would contain different content. In my application, it is where a student has filled in a form and then a cookie gets stored in the browser, the browser then maintains the cookie.

Using the Symfony client using the above 2 commands would not return the expected content, since the cookies need to first be set.

Setting Cookies

To set a cookie, we first need to get a CookieJar (holds cookies), also make sure you keep the CookieJar away from the Cookie Monster. We get the CookieJar from the client like so:

PHP
$client->getCookieJar();

The CookieJar has a set method, where we can pass in a cookie. We can combine this with the above and issue a command like so:

PHP
$client->getCookieJar()->set( $cookie );

Where in the above line, $cookie is a Cookie object.

Final Running Code

My final code looks like the following:

PHP
<?php
// tests/AppBundle/Functional/DefaultControllerTest.php
namespace tests\AppBundle\Functional;

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Component\BrowserKit\Cookie;

class DefaultControllerTest extends WebTestCase
{
   ...
   public function testWithCookies(){
      $client = static::createClient();
      $client->getCookieJar()->set
      ( new Cookie('form_complete', '1', strtotime('+1 day')) );
      $client->getCookieJar()->set
      ( new Cookie('consent_complete', '1', strtotime('+1 day')) );

      $client->request('GET', '/');

      $this->assertContains(
            'Consent for Release of',
            $client->getResponse()->getContent()
      );
   }
}

In the above notice, the use statement for the Cookie (you need that), and also I’ve combined setting the cookie with the getCookieJar->set() method. Then, I perform my PHPUnit assertion of the expected content.

Hopefully this will help you, as I struggled for a while with it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Taft College
United States United States
I’m a software developer. Currently I’m working at Taft College as a Programmer.

Comments and Discussions

 
-- There are no messages in this forum --