1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60:
<?php
namespace League\OAuth2\Client\Test\Tool;
use League\OAuth2\Client\Tool\RequestFactory;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\RequestInterface;
class RequestFactoryTest extends TestCase
{
public function setUp()
{
$this->factory = new RequestFactory;
}
public function testGetRequest()
{
$method = 'get';
$uri = '/test';
$request = $this->factory->getRequest($method, $uri);
$this->assertInstanceOf(RequestInterface::class, $request);
$this->assertSame(strtoupper($method), $request->getMethod());
$this->assertSame($uri, (string) $request->getUri());
$headers = ['X-Test' => 'Foo'];
$body = 'test body';
$protocolVersion = '1.0';
$request = $this->factory->getRequest($method, $uri, $headers, $body, $protocolVersion);
$this->assertTrue($request->hasHeader('X-Test'));
$this->assertSame($body, (string) $request->getBody());
$this->assertSame($protocolVersion, $request->getProtocolVersion());
}
public function testGetRequestWithOptions()
{
$method = 'head';
$uri = '/test/options';
$request = $this->factory->getRequestWithOptions($method, $uri);
$this->assertInstanceOf(RequestInterface::class, $request);
$this->assertSame(strtoupper($method), $request->getMethod());
$this->assertSame($uri, (string) $request->getUri());
$options = [
'body' => 'another=test&form=body',
'headers' => ['Content-Type' => 'application/x-www-form-urlencoded'],
];
$request = $this->factory->getRequestWithOptions($method, $uri, $options);
$this->assertContains($options['headers']['Content-Type'], $request->getHeader('Content-Type'));
$this->assertSame($options['body'], (string) $request->getBody());
}
}