Skip to content

Commit

Permalink
Trigger ssl_protocol deprecation when it is really not null and not A…
Browse files Browse the repository at this point in the history
…MQPConnectionConfig instance
  • Loading branch information
Sergii Khrystenko committed Feb 15, 2024
1 parent 76eee28 commit eb5ce8b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PhpAmqpLib/Connection/AMQPStreamConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(
$ssl_protocol = null,
?AMQPConnectionConfig $config = null
) {
if (func_num_args() === 17 || ($ssl_protocol !== null && $ssl_protocol instanceof AMQPConnectionConfig === false)) {
if ($ssl_protocol !== null && $ssl_protocol instanceof AMQPConnectionConfig === false) {
trigger_error(
'$ssl_protocol parameter is deprecated, use stream_context_set_option($context, \'ssl\', \'crypto_method\', $ssl_protocol) instead (see https://www.php.net/manual/en/function.stream-socket-enable-crypto.php for possible values)',
E_USER_DEPRECATED
Expand Down
45 changes: 43 additions & 2 deletions tests/Unit/Connection/AMQPStreamConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace PhpAmqpLib\Tests\Unit\Connection;

use InvalidArgumentException;
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PHPUnit\Framework\TestCase;

Expand All @@ -10,9 +11,9 @@ class AMQPStreamConnectionTest extends TestCase
/**
* @test
*/
public function channel_rpc_timeout_should_be_invalid_if_greater_than_read_write_timeout()
public function channel_rpc_timeout_should_be_invalid_if_greater_than_read_write_timeout(): void
{
$this->expectException(\InvalidArgumentException::class);
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('channel RPC timeout must not be greater than I/O read-write timeout');

new AMQPStreamConnection(
Expand All @@ -33,4 +34,44 @@ public function channel_rpc_timeout_should_be_invalid_if_greater_than_read_write
5.0
);
}

/**
* @test
* Generate deprecation warning if ssl_protocol is set
*/
public function trigger_deprecation_is_ssl_protocol_set(): void
{
$deprecationMessage = '';
$deprecationCode = '';
set_error_handler(
static function ($errno, $errstr) use (&$deprecationMessage, &$deprecationCode) {
$deprecationMessage = $errstr;
$deprecationCode = $errno;
},
E_USER_DEPRECATED
);

new AMQPStreamConnection(
HOST,
PORT,
USER,
PASS,
VHOST,
false,
'AMQPLAIN',
null,
'en_US',
3.0,
3.0,
null,
false,
0,
3.0,
'test_ssl_protocol'
);

restore_error_handler();
$this->assertEquals(E_USER_DEPRECATED, $deprecationCode);
$this->assertEquals('$ssl_protocol parameter is deprecated, use stream_context_set_option($context, \'ssl\', \'crypto_method\', $ssl_protocol) instead (see https://www.php.net/manual/en/function.stream-socket-enable-crypto.php for possible values)', $deprecationMessage);
}
}

0 comments on commit eb5ce8b

Please sign in to comment.