Exemple #1
0
 /**
  * @covers            Islandora\Fedora\Chullo::modifyResource
  * @uses              GuzzleHttp\Client
  * @expectedException GuzzleHttp\Exception\ClientException
  */
 public function testThrowsExceptionOn412()
 {
     $mock = new MockHandler([new Response(412)]);
     $handler = HandlerStack::create($mock);
     $guzzle = new Client(['handler' => $handler, 'base_uri' => 'http://localhost:8080/fcrepo/rest']);
     $client = new Chullo($guzzle);
     $result = $client->modifyResource("");
 }
 /**
  * @covers            Islandora\Fedora\Chullo::modifyResource
  * @uses              GuzzleHttp\Client
  */
 public function testReturnsFalseOtherwise()
 {
     $mock = new MockHandler([new Response(412), new Response(404)]);
     $handler = HandlerStack::create($mock);
     $guzzle = new Client(['handler' => $handler]);
     $api = new FedoraApi($guzzle);
     $client = new Chullo($api);
     foreach ($mock as $response) {
         $result = $client->modifyResource("");
         $this->assertFalse($result);
     }
 }