コード例 #1
0
ファイル: VarnishTest.php プロジェクト: ataxel/tp
    public function testUnreachableException()
    {
        $mock = new MockPlugin();
        $mock->addException(new CurlException('connect to host'));

        $client = new Client();
        $client->addSubscriber($mock);

        $varnish = new Varnish(array('http://127.0.0.1:123'), 'my_hostname.dev', $client);

        try {
            $varnish->purge('/paths')->flush();
        } catch (ExceptionCollection $exceptions) {
            $this->assertCount(1, $exceptions);
            $this->assertInstanceOf('\FOS\HttpCache\Exception\ProxyUnreachableException', $exceptions->getFirst());
        }

        $mock->clearQueue();
        $mock->addResponse(new Response(200));

        // Queue must now be empty, so exception above must not be thrown again.
        $varnish->purge('/path')->flush();
    }
コード例 #2
0
 /**
  * @expectedException \Rabus\Bundle\Twitter\SignInBundle\Service\TwitterApiException
  */
 public function testGetRequestTokenThrowsException()
 {
     $this->factoryMock->expects($this->any())->method('getOAuthConnection')->will($this->returnValue($this->bootstrapClient()));
     $this->mockPlugin->addException(new CurlException());
     $this->bootstrapGateway()->getRequestToken('http://www.example.com/twitter/callback');
 }