-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[9.x] Fix MySqlSchemaState does not add --ssl-ca to mysql cli (#41315)
* fix: MySqlSchemaState does not add --ssl-ca to mysql cli it not configured * Update MySqlSchemaState.php Co-authored-by: Taylor Otwell <taylor@laravel.com>
- Loading branch information
1 parent
4e7da89
commit 6a7a5b4
Showing
2 changed files
with
94 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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 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,86 @@ | ||
<?php | ||
|
||
namespace Illuminate\Tests\Database; | ||
|
||
use Illuminate\Database\MySqlConnection; | ||
use Illuminate\Database\Schema\MySqlSchemaState; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class DatabaseMySqlSchemaStateTest extends TestCase | ||
{ | ||
/** | ||
* @dataProvider provider | ||
*/ | ||
public function testConnectionString(string $expectedConnectionString, array $expectedVariables, array $dbConfig): void | ||
{ | ||
$connection = $this->createMock(MySqlConnection::class); | ||
$connection->method('getConfig')->willReturn($dbConfig); | ||
|
||
$schemaState = new MySqlSchemaState($connection); | ||
|
||
// test connectionString | ||
$method = new \ReflectionMethod(get_class($schemaState), 'connectionString'); | ||
$connString = tap($method)->setAccessible(true)->invoke($schemaState); | ||
|
||
self::assertEquals($expectedConnectionString, $connString); | ||
|
||
// test baseVariables | ||
$method = new \ReflectionMethod(get_class($schemaState), 'baseVariables'); | ||
$variables = tap($method)->setAccessible(true)->invoke($schemaState, $dbConfig); | ||
|
||
self::assertEquals($expectedVariables, $variables); | ||
} | ||
|
||
public function provider(): \Generator | ||
{ | ||
yield 'default' => [ | ||
' --user="${:LARAVEL_LOAD_USER}" --password="${:LARAVEL_LOAD_PASSWORD}" --host="${:LARAVEL_LOAD_HOST}" --port="${:LARAVEL_LOAD_PORT}"', [ | ||
'LARAVEL_LOAD_SOCKET' => '', | ||
'LARAVEL_LOAD_HOST' => '127.0.0.1', | ||
'LARAVEL_LOAD_PORT' => '', | ||
'LARAVEL_LOAD_USER' => 'root', | ||
'LARAVEL_LOAD_PASSWORD' => '', | ||
'LARAVEL_LOAD_DATABASE' => 'forge', | ||
'LARAVEL_LOAD_SSL_CA' => '', | ||
], [ | ||
'username' => 'root', | ||
'host' => '127.0.0.1', | ||
'database' => 'forge', | ||
], | ||
]; | ||
|
||
yield 'ssl_ca' => [ | ||
' --user="${:LARAVEL_LOAD_USER}" --password="${:LARAVEL_LOAD_PASSWORD}" --host="${:LARAVEL_LOAD_HOST}" --port="${:LARAVEL_LOAD_PORT}" --ssl-ca="${:LARAVEL_LOAD_SSL_CA}"', [ | ||
'LARAVEL_LOAD_SOCKET' => '', | ||
'LARAVEL_LOAD_HOST' => '', | ||
'LARAVEL_LOAD_PORT' => '', | ||
'LARAVEL_LOAD_USER' => 'root', | ||
'LARAVEL_LOAD_PASSWORD' => '', | ||
'LARAVEL_LOAD_DATABASE' => 'forge', | ||
'LARAVEL_LOAD_SSL_CA' => 'ssl.ca', | ||
], [ | ||
'username' => 'root', | ||
'database' => 'forge', | ||
'options' => [ | ||
\PDO::MYSQL_ATTR_SSL_CA => 'ssl.ca', | ||
], | ||
], | ||
]; | ||
|
||
yield 'unix socket' => [ | ||
' --user="${:LARAVEL_LOAD_USER}" --password="${:LARAVEL_LOAD_PASSWORD}" --socket="${:LARAVEL_LOAD_SOCKET}"', [ | ||
'LARAVEL_LOAD_SOCKET' => '/tmp/mysql.sock', | ||
'LARAVEL_LOAD_HOST' => '', | ||
'LARAVEL_LOAD_PORT' => '', | ||
'LARAVEL_LOAD_USER' => 'root', | ||
'LARAVEL_LOAD_PASSWORD' => '', | ||
'LARAVEL_LOAD_DATABASE' => 'forge', | ||
'LARAVEL_LOAD_SSL_CA' => '', | ||
], [ | ||
'username' => 'root', | ||
'database' => 'forge', | ||
'unix_socket' => '/tmp/mysql.sock', | ||
], | ||
]; | ||
} | ||
} |