I have a application that uses an external service via a cookie set to my applications domain. During development I create this cookie by hand but in production this cookie would be generated via a login. Is there any way to use the cookie I set during development before I run my tests for this external service?

I have a guess that I can use curl to automate this a little but I was wondering if I missing some hidden feature or technique in PHPUnit and/or Selenium.

[class extending PHPUnit_Extensions_SeleniumTestCase]

/**
 * Can get the current authenticated user.
 */
public function testCanGetTheCurrentAuthenticatedUser()
{
    $this->open('http://my/local/virtual/host/api/getCurrentUser');
    $json = json_decode($this->getBodyText());
    $this->assertEquals('25', $json->response->id); 

}
link|improve this question

67% accept rate
feedback

2 Answers

up vote 0 down vote accepted

The Selenium documentation has createCookie(), and it's listed as a method in PHPUnit_Extensions_SeleniumTestCase. From the docs you can use the following to set the login cookie to frank.wilson for five minutes.

$this->createCookie('login=frank.wilson', 'max_age=600');
link|improve this answer
The information is good but my problem is still not solved. David, do you have any example code using createCookie? – Quincy Glenn Jan 27 at 20:21
I haven't used it yet. Our Selenium-based testing is very limited. Try using getCookie() or getCookieByName() after createCookie() to see if it was set. Another option is to see if Selenium 2 works. – David Harkness Jan 27 at 22:14
feedback

Ended up using Curl for tests that required cookie authentication.

$curl = curl_init('http://my/local/virtual/host/api/getCurrentUser');
curl_setopt($curl, CURLOPT_COOKIE, 'mycookie=authentication'); 
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($curl);
$json = json_decode($output);
$this->assertEquals('25', $json->response->id);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.