We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75bd30 commit 07aee02Copy full SHA for 07aee02
tests/DatabaseTest.php
@@ -164,6 +164,13 @@ public function testConnectionWithSSL() : void
164
protected function cipherStatus(Database $database) : void
165
{
166
$status = $database->query("SHOW STATUS LIKE 'ssl_cipher'")->fetchArray();
167
+ if (\getenv('DB_IMAGE') === 'mysql') {
168
+ self::assertSame([
169
+ 'Variable_name' => 'Ssl_cipher',
170
+ 'Value' => 'TLS_AES_128_GCM_SHA256',
171
+ ], $status);
172
+ return;
173
+ }
174
self::assertSame([
175
'Variable_name' => 'Ssl_cipher',
176
'Value' => 'TLS_AES_256_GCM_SHA384',
0 commit comments