-
Notifications
You must be signed in to change notification settings - Fork 6
Fix composer version conflict with react/http v0.8 #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
dbu
merged 5 commits into
php-http:master
from
samuelnogueira:update-react-http-client-dependency
Dec 21, 2017
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1a91065
Fix composer version conflict with react/http v0.8
f305b04
Added possibility to build Http Client passing a Connector instead of…
4e2ca57
ReactFactory is now compatible with both react/http-client v0.4 and v0.5
07dfeda
Applied StyleCI suggested fixes
4389772
- E_USER_DEPRECATED now triggered when using deprecated behavior in R…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?php | ||
|
||
namespace Http\Adapter\React\Tests; | ||
|
||
use Http\Adapter\React\ReactFactory; | ||
use PHPUnit\Framework\TestCase; | ||
use React\Dns\Resolver\Resolver; | ||
use React\EventLoop\LoopInterface; | ||
use React\HttpClient\Client; | ||
use React\HttpClient\Factory; | ||
use React\Socket\ConnectorInterface; | ||
|
||
/** | ||
* These tests don't really ensure the correct instances are baked into the returned http client, instead, they are | ||
* just testing the code against the expected use cases. | ||
* | ||
* @author Samuel Nogueira <[email protected]> | ||
*/ | ||
class ReactFactoryTest extends TestCase | ||
{ | ||
/** | ||
* @var \React\EventLoop\LoopInterface | ||
*/ | ||
private $loop; | ||
|
||
protected function setUp() | ||
{ | ||
$this->loop = $this->getMockBuilder(LoopInterface::class)->getMock(); | ||
} | ||
|
||
public function testBuildHttpClientWithConnector() | ||
{ | ||
if (class_exists(Factory::class)) { | ||
$this->markTestSkipped('This test only runs with react http client v0.5 and above'); | ||
} | ||
|
||
$connector = $this->getMockBuilder(ConnectorInterface::class)->getMock(); | ||
$client = ReactFactory::buildHttpClient($this->loop, $connector); | ||
$this->assertInstanceOf(Client::class, $client); | ||
} | ||
|
||
/** | ||
* @deprecated Building HTTP client passing a DnsResolver instance is deprecated. Should pass a ConnectorInterface | ||
* instance instead. | ||
*/ | ||
public function testBuildHttpClientWithDnsResolver() | ||
{ | ||
$connector = $this->getMockBuilder(Resolver::class)->disableOriginalConstructor()->getMock(); | ||
$client = ReactFactory::buildHttpClient($this->loop, $connector); | ||
$this->assertInstanceOf(Client::class, $client); | ||
} | ||
|
||
public function testBuildHttpClientWithoutConnector() | ||
{ | ||
$client = ReactFactory::buildHttpClient($this->loop); | ||
$this->assertInstanceOf(Client::class, $client); | ||
} | ||
|
||
/** | ||
* @expectedException \InvalidArgumentException | ||
*/ | ||
public function testBuildHttpClientWithInvalidConnectorThrowsException() | ||
{ | ||
$connector = $this->getMockBuilder(LoopInterface::class)->getMock(); | ||
ReactFactory::buildHttpClient($this->loop, $connector); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you please add a deprecation warning inside the if?
@trigger_error(sprintf('Passing a %s to buildHttpClient is deprecated since version 2.1.0 and will be removed in 3.0. If you need no specific behaviour, omit the $dns argument, otherwise pass a %s', DnsResolver::class, ConnectorInterface::class), E_USER_DEPRECATED);