ESH/mc/vendor/microsoft/microsoft-graph/tests/Http/MockClientFactory.php

28 lines
792 B
PHP
Raw Normal View History

2024-10-23 18:28:06 +05:30
<?php
namespace Microsoft\Graph\Http\Test;
use GuzzleHttp\Client;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\HandlerStack;
class MockClientFactory
{
/**
* Creates a mock Guzzle client with optional mock responses
*
* @param array $clientConfig - Guzzle client Request options
* @param array $mockResponses - Accepts \GuzzleHttp\Psr7\Response and \GuzzleHttp\Exception
* @return \GuzzleHttp\Client
*/
public static function create($clientConfig = [], $mockResponses = [])
{
if ($mockResponses)
{
$stack = HandlerStack::create(new MockHandler($mockResponses));
$clientConfig['handler'] = $stack;
return new Client($clientConfig);
}
return new Client($clientConfig);
}
}