Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

in 2.0 the code below worked correctly, since upgrading to 2.1 the session var is going MIA.

public function __construct()
{

    $this->client = static::createClient(array(), array(
        'PHP_AUTH_USER' => 'unittest@test.com',
        'PHP_AUTH_PW'   => 'test',
    ));

    //set the session
    $this->container = $this->client->getContainer();
    $this->client->getCookieJar()->set(new \Symfony\Component\BrowserKit\Cookie(session_name(), true));
    $this->session = $this->container->get('session');
    $this->session->set('company_id', '9999');
    $this->session->save();

}

public function testGetClientsAction()
{

    $this->client->request(
       'GET',
       '/clients',
        array(),
        array(),
        array('HTTP_X-Requested-With' => 'XMLHttpRequest', 'HTTP_accept' => 'application/json')
    );

    $content = $this->client->getResponse()->getContent();
    $status = $this->client->getResponse()->getStatusCode();

    $this->assertNotEmpty($content);
    $this->assertEquals(200, $status);
}
share|improve this question
This question pops frequently, I think they changed something in the session, but I don't remember. – ChocoDeveloper Dec 1 '12 at 4:42
Hmm, I can't seem to find any other posts with the same problem. – greg Dec 3 '12 at 21:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.