Good morning.
Tldr:私はSymfony Test Clientのために、js xhrの設定と似ています:withcredentals:true。symfony test - 新しいリクエストでは動作しません。
Symfony 3.1. I have action in rest api controller:
/**
* @Rest\GET("/get-stuff")
* @Rest\View
* @Security("is_granted('IS_AUTHENTICATED_FULLY')")
*/
public function GetStuffAction($userId)
{
// get userId from session
$userId = $this->getUser()->getId();
$em = $this->getDoctrine()->getManager();
$Stuff = $em->getRepository('MyApiBundle:Stuff')->findBy(['user' => $userId]);
return $this->viewGroup($Stuff, ['stuff']);
}
正しく動作します。
は今、私はテストをしたいので、私は持っている:それについて
class TestCase extends WebTestCase
{
public function testIndex()
{
$this->client = self::createClient();
$this->storage = new MockFileSessionStorage(__dir__.'/../../../../app/cache/test/sessions');
$this->session = new Session($this->storage);
$this->logIn($this->getUser(), new Response());
$this->client->request('GET', '/get-stuff');
$content = $this->client->getResponse()->getContent();
$this->assertEquals({"message":"Full authentication is required to access this resource.","code":0},$content);
}
public function logIn(User $user, Response $response)
{
$this->session->start();
$this->cookie = new Cookie('MOCKSESSID', $this->storage->getId());
$this->cookieJar = new CookieJar();
$this->cookieJar->set($this->cookie);
$this->token = new UsernamePasswordToken($user, 'user', 'main', $user->getRoles());
$this->session->set('_security_main', serialize($this->token));
$this->getSecurityManager()->loginUser(
$this->container->getParameter('fos_user.firewall_name'),
$user,
$response
);
$this->session->save();
}
}
とテストは私にメッセージを与える:「フル認証がこのリソースにアクセスするために必要とされます」。 logIn()メソッドの後、ログに記録されたユーザに接続されているセッションデータを読み込むことができます。 1.私のテストクラスはのWebTestCaseを拡張: にはどうすれば認証に関するメッセージ?:
$this->client->request('GET', '/get-stuff');
$content = $this->client->getResponse()->getContent();
詳細を受けないように、この部分の間にログインすることができます。 2.私のユーザーはFosUserBundleのために上書きされます。
私はそれがjavascriptのようなものだと考えます: var xhr = new XMLHttpRequest(); xhr.withCredentials = true; しかし、私は何を知りません。
問題を解決するためのお手伝いをしていただきありがとうございます。