mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
63 lines
2.2 KiB
PHP
63 lines
2.2 KiB
PHP
<?php
|
|
require_once(__DIR__ . '/SwaggerClient-php/autoload.php');
|
|
|
|
// show error reporting
|
|
//ini_set('display_errors', 1);
|
|
//error_reporting(~0);
|
|
|
|
// to enable logging
|
|
//Swagger\Client\Configuration::$debug = true;
|
|
//Swagger\Client\Configuration::$debug_file = '/var/tmp/php_debug.log';
|
|
|
|
// to debug report
|
|
print Swagger\Client\Configuration::toDebugReport();
|
|
|
|
// to change temp folder path
|
|
Swagger\Client\Configuration::getDefaultConfiguration()->setTempFolderPath('/var/tmp/php/');
|
|
|
|
$petId = 10005; // ID of pet that needs to be fetched
|
|
try {
|
|
// get pet by id
|
|
//$api_client = new Swagger\Client\ApiClient('http://petstore.swagger.io/v2');
|
|
//$api_client->getConfig()->addDefaultHeader("test1", "value1");
|
|
//$pet_api = new Swagger\Client\PetAPI($api_client);
|
|
$pet_api = new Swagger\Client\Api\PetApi();
|
|
$pet_api->getApiClient()->getConfig()->setTempFolderPath('/var/tmp/php/');
|
|
// test default header
|
|
//$pet_api->getApiClient()->addDefaultHeader("TEST_API_KEY", "09182sdkanafndsl903");
|
|
// return Pet (model)
|
|
$response = $pet_api->getPetById($petId);
|
|
// to test __toString()
|
|
print ($response);
|
|
|
|
// add pet (post json)
|
|
$new_pet_id = 10005;
|
|
$new_pet = new Swagger\Client\Model\Pet;
|
|
$new_pet->setId($new_pet_id);
|
|
$new_pet->setName("PHP Unit Test");
|
|
// new tag
|
|
$tag= new Swagger\Client\Model\Tag;
|
|
$tag->setId($new_pet_id); // use the same id as pet
|
|
//$tag->name = "test php tag";
|
|
// new category
|
|
$category = new Swagger\Client\Model\Category;
|
|
$category->setId(10005); // use the same id as pet
|
|
//$category->name = "test php category";
|
|
|
|
$new_pet->setTags(array($tag));
|
|
$new_pet->setCategory($category);
|
|
|
|
$pet_api = new Swagger\Client\Api\PetApi();
|
|
// add a new pet (model)
|
|
$add_response = $pet_api->addPet($new_pet);
|
|
|
|
// test upload file (should return exception)
|
|
$upload_response = $pet_api->uploadFile($petId, "test meta", NULL);
|
|
|
|
} catch (Swagger\Client\ApiException $e) {
|
|
echo 'Caught exception: ', $e->getMessage(), "\n";
|
|
echo 'HTTP response headers: ', $e->getResponseHeaders(), "\n";
|
|
echo 'HTTP response body: ', $e->getResponseBody(), "\n";
|
|
echo 'HTTP status code: ', $e->getCode(), "\n";
|
|
}
|