本文整理汇总了PHP中Behat\Mink\Session::setCookie方法的典型用法代码示例。如果您正苦于以下问题:PHP Session::setCookie方法的具体用法?PHP Session::setCookie怎么用?PHP Session::setCookie使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Behat\Mink\Session
的用法示例。
在下文中一共展示了Session::setCookie方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function it_loads_base_url_and_sets_a_cookie_if_not_using_kernel_driver_and_driver_is_currently_outside_base_url(Session $minkSession, DriverInterface $driver)
{
$minkSession->getDriver()->willReturn($driver);
$minkSession->getCurrentUrl()->willReturn('http://sylius.org');
$minkSession->visit('http://localhost:8080/')->shouldBeCalled();
$minkSession->setCookie('abc', 'def')->shouldBeCalled();
$this->setCookie('abc', 'def');
}
示例2: logIn
/**
* {@inheritdoc}
*/
public function logIn($email, $providerKey, Session $minkSession)
{
$user = $this->userRepository->findOneBy(['username' => $email]);
if (null === $user) {
throw new \InvalidArgumentException(sprintf('There is no user with email %s', $email));
}
$token = new UsernamePasswordToken($user, $user->getPassword(), $providerKey, $user->getRoles());
$this->session->set('_security_user', serialize($token));
$this->session->save();
$minkSession->setCookie($this->session->getName(), $this->session->getId());
}
示例3: array
function it_does_not_log_user_in_if_user_was_not_found($userRepository, $session, UserInterface $user, Session $minkSession)
{
$userRoles = ['ROLE_USER'];
$userRepository->findOneBy(array('username' => 'sylius@example.com'))->willReturn(null);
$user->getRoles()->willReturn($userRoles);
$user->getPassword()->willReturn('xyz');
$user->serialize()->willReturn('serialized_user');
$session->set('_security_user', Argument::any())->shouldNotBeCalled();
$session->save()->shouldNotBeCalled();
$session->getName()->willReturn('MOCKEDSID');
$session->getId()->willReturn('xyzc123');
$minkSession->setCookie('MOCKEDSID', 'xyzc123')->shouldNotBeCalled();
$this->shouldThrow(new \InvalidArgumentException(sprintf('There is no user with email sylius@example.com')))->during('logIn', array('sylius@example.com', 'default', $minkSession));
}
示例4: testSetCookie
public function testSetCookie()
{
$this->driver->expects($this->once())->method('setCookie')->with('name', 'value');
$this->session->setCookie('name', 'value');
}
示例5: _setCookie
public function _setCookie($cookie, $value)
{
$this->session->setCookie($cookie, $value);
}
示例6: setCookie
/**
* {@inheritdoc}
*/
public function setCookie($name, $value)
{
$this->prepareMinkSessionIfNeeded();
$this->minkSession->setCookie($name, $value);
}
示例7: iChangeMyCurrentChannelTo
/**
* @When I change my current channel to :channel
*/
public function iChangeMyCurrentChannelTo(ChannelInterface $channel)
{
$this->prepareSessionIfNeeded();
$this->minkSession->setCookie('_channel_code', $channel->getCode());
}