Example #1
0
 public function testCanSendAirSellFromRecommendation()
 {
     $mockSessionHandler = $this->getMockBuilder('Amadeus\\Client\\Session\\Handler\\HandlerInterface')->getMock();
     $mockedSendResult = new Client\Session\Handler\SendResult();
     $mockedSendResult->responseXml = 'dummyairsellfromrecommendationrmessage';
     $messageResult = new Client\Result($mockedSendResult);
     $expectedMessageResult = new Client\Struct\Air\SellFromRecommendation(new Client\RequestOptions\AirSellFromRecommendationOptions(['itinerary' => [new Client\RequestOptions\Air\SellFromRecommendation\Itinerary(['from' => 'BRU', 'to' => 'LON', 'segments' => [new Client\RequestOptions\Air\SellFromRecommendation\Segment(['departureDate' => \DateTime::createFromFormat('YmdHis', '20170120000000', new \DateTimeZone('UTC')), 'from' => 'BRU', 'to' => 'LGW', 'companyCode' => 'SN', 'flightNumber' => '123', 'bookingClass' => 'Y', 'nrOfPassengers' => 1, 'statusCode' => Client\RequestOptions\Air\SellFromRecommendation\Segment::STATUS_SELL_SEGMENT])]])]]));
     $mockSessionHandler->expects($this->once())->method('sendMessage')->with('Air_SellFromRecommendation', $expectedMessageResult, ['endSession' => false])->will($this->returnValue($mockedSendResult));
     $mockSessionHandler->expects($this->never())->method('getLastResponse');
     $mockSessionHandler->expects($this->once())->method('getMessagesAndVersions')->will($this->returnValue(['Air_SellFromRecommendation' => "5.2"]));
     $mockResponseHandler = $this->getMockBuilder('Amadeus\\Client\\ResponseHandler\\ResponseHandlerInterface')->getMock();
     $mockResponseHandler->expects($this->once())->method('analyzeResponse')->with($mockedSendResult, 'Air_SellFromRecommendation')->will($this->returnValue($messageResult));
     $par = new Params();
     $par->sessionHandler = $mockSessionHandler;
     $par->requestCreatorParams = new Params\RequestCreatorParams(['receivedFrom' => 'some RF string', 'originatorOfficeId' => 'BRUXXXXXX']);
     $par->responseHandler = $mockResponseHandler;
     $client = new Client($par);
     $response = $client->airSellFromRecommendation(new Client\RequestOptions\AirSellFromRecommendationOptions(['itinerary' => [new Client\RequestOptions\Air\SellFromRecommendation\Itinerary(['from' => 'BRU', 'to' => 'LON', 'segments' => [new Client\RequestOptions\Air\SellFromRecommendation\Segment(['departureDate' => \DateTime::createFromFormat('YmdHis', '20170120000000', new \DateTimeZone('UTC')), 'from' => 'BRU', 'to' => 'LGW', 'companyCode' => 'SN', 'flightNumber' => '123', 'bookingClass' => 'Y', 'nrOfPassengers' => 1, 'statusCode' => Client\RequestOptions\Air\SellFromRecommendation\Segment::STATUS_SELL_SEGMENT])]])]]));
     $this->assertEquals($messageResult, $response);
 }
Example #2
0
 */
include 'src/Amadeus/Client.php';
use Amadeus\Client;
// Instantiate the Amadeus class (Debug enabled)
$ws = new Client('AmadeusWebServices.wsdl', true);
// Authenticate
$ws->securityAuthenticate([YOUR_SOURCE], [YOUR_ORIGIN], [YOUR_PASSWORD], [PASSWORD_LENGTH], [ORGANIZATION_ID]);
// Travel from and to locations
$from = 'DEL';
$to = 'BLR';
// Travel Segments
$segments[] = array('dep_date' => '230612', 'dep_location' => 'DEL', 'dest_location' => 'BLR', 'company' => 'IT', 'flight_no' => '201', 'class' => 'Y', 'passengers' => '2');
$segments[] = array('dep_date' => '250612', 'dep_location' => 'BLR', 'dest_location' => 'DEL', 'company' => 'IT', 'flight_no' => '202', 'class' => 'Y', 'passengers' => '2');
// Setup travellers
$travellers['A'] = array(array('surname' => 'DOE', 'first_name' => 'JOHN'));
$travellers['C'] = array(array('surname' => 'DWYNE', 'first_name' => 'JOHNSON'));
$travellers['I'] = array(array('first_name' => 'JANE'));
// Airline Code
$code = 'IT';
// Here 2 types of passengers -> Adult and a Child
$types = 2;
// Make the booking
$ws->airSellFromRecommendation($from, $to, $segments);
$ws->pnrAddMultiElements($travellers);
$ws->farePricePNRWithBookingClass($code);
$ws->ticketCreateTSTFromPricing($types);
$ws->pnrAddMultiElementsFinal();
// To Retreive PNR pass the PNR ID returned by the previous booking call.
// $ws->pnrRetrieve('YFJG9V');
// Signout
$ws->securitySignout();