PHP Classes

File: test/Builder/BuilderTest.php

Recommend this page to a friend!
  Classes of nvb   PHP CURL Component   test/Builder/BuilderTest.php   Download  
File: test/Builder/BuilderTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: PHP CURL Component
Compose and execute HTTP requests with Curl
Author: By
Last change: replaced >>array()<< notation with >>[]<<
Date: 6 years ago
Size: 2,576 bytes
 

Contents

Class file image Download
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-12-16
 */
namespace Test\Net\Bazzline\Component\Curl\Builder;

use
Test\Net\Bazzline\Component\Curl\AbstractTestCase;

class
BuilderTest extends AbstractTestCase
{
    public function
testFetchTheResponse()
    {
       
$dispatcher = $this->getMockOfTheDispatcher();
       
$request = $this->getNewRequest($dispatcher);
       
$builder = $this->getNewBuilder($request);
       
$response = $this->getNewResponse();

       
$dispatcher->shouldReceive('dispatch')
            ->
with(
               
$this->getUrl(),
               
$this->buildDispatcherOptions('PUT')
            )
            ->
andReturn($response)
            ->
once();

       
$builder->onTheUrl($this->getUrl());
       
$builder->usePut();

       
$builder->andFetchTheResponse();
    }

    public function
testFetchTheResponseAsJson()
    {
       
$dispatcher = $this->getMockOfTheDispatcher();
       
$request = $this->getNewRequest($dispatcher);
       
$builder = $this->getNewBuilder($request);
       
$response = $this->getNewResponse();

       
$dispatcher->shouldReceive('dispatch')
            ->
with(
               
$this->getUrl(),
               
$this->buildDispatcherOptions(
                   
'PUT',
                    [
                       
'Content-Type: application/json; charset=UTF-8'
                   
],
                    [],
                   
json_encode(null)
                )
            )
            ->
andReturn($response)
            ->
once();

       
$builder->asJson();
       
$builder->onTheUrl($this->getUrl());
       
$builder->usePut();

       
$builder->andFetchTheResponse();
    }

    public function
testFetchTheResponseWithBehaviours()
    {
       
$behaviour = $this->getMockOfTheBehaviour();
       
$dispatcher = $this->getMockOfTheDispatcher();
       
$request = $this->getNewRequest($dispatcher);
       
$builder = $this->getNewBuilder($request);
       
$response = $this->getNewResponse();

       
$behaviour->shouldReceive('behave')
            ->
with($response)
            ->
andReturn($response)
            ->
once();

       
$dispatcher->shouldReceive('dispatch')
            ->
with(
               
$this->getUrl(),
               
$this->buildDispatcherOptions('PUT')
            )
            ->
andReturn($response)
            ->
once();

       
$builder->onTheUrl($this->getUrl());
       
$builder->usePut();
       
$builder->withTheResponseBehaviour($behaviour);

       
$builder->andFetchTheResponse();
    }
}