markTestSkipped('Test calls deprecated code'); } $config = DB::getConfig(); $config['driver'] = 'mysql'; $config['charset'] = $charset; $config['database'] = 'information_schema'; Config::inst()->set(MySQLDatabase::class, 'connection_collation', $defaultCollation); if (strtolower(substr($config['type'] ?? '', 0, 5)) !== 'mysql') { return $this->markTestSkipped('The test only relevant for MySQL'); } $connector = new PDOConnector(); $connector->connect($config); $connection = $connector->getPDOConnection(); $cset = $connection->query('show variables like "character_set_connection"')->fetch(PDO::FETCH_NUM)[1]; $collation = $connection->query('show variables like "collation_connection"')->fetch(PDO::FETCH_NUM)[1]; $helper = new Utf8TestHelper(); $this->assertEquals($helper->getUpdatedUtfCharsetForCurrentDB($charset), $cset); $this->assertEquals($helper->getUpdatedUtfCollationForCurrentDB($defaultCollation), $collation); unset($cset, $connection, $connector, $config); } /** * @dataProvider charsetProvider */ public function testConnectionCollationControl($charset, $defaultCollation, $customCollation) { if (Deprecation::isEnabled()) { $this->markTestSkipped('Test calls deprecated code'); } $config = DB::getConfig(); $config['charset'] = $charset; $config['driver'] = 'mysql'; $config['database'] = 'information_schema'; Config::inst()->set(MySQLDatabase::class, 'connection_collation', $customCollation); if (strtolower(substr($config['type'] ?? '', 0, 5)) !== 'mysql') { return $this->markTestSkipped('The test only relevant for MySQL'); } $connector = new PDOConnector(); $connector->connect($config); $connection = $connector->getPDOConnection(); $cset = $connection->query('show variables like "character_set_connection"')->fetch(PDO::FETCH_NUM)[1]; $collation = $connection->query('show variables like "collation_connection"')->fetch(PDO::FETCH_NUM)[1]; $helper = new Utf8TestHelper(); $this->assertEquals($helper->getUpdatedUtfCharsetForCurrentDB($charset), $cset); $this->assertEquals($helper->getUpdatedUtfCollationForCurrentDB($customCollation), $collation); unset($cset, $connection, $connector, $config); } public function charsetProvider() { return [ ['ascii', 'ascii_general_ci', 'ascii_bin'], ['utf8', 'utf8_general_ci', 'utf8_unicode_520_ci'], ['utf8mb4', 'utf8mb4_general_ci', 'utf8mb4_unicode_520_ci'] ]; } public function testUtf8mb4GeneralCollation() { if (Deprecation::isEnabled()) { $this->markTestSkipped('Test calls deprecated code'); } $charset = 'utf8mb4'; $collation = 'utf8mb4_general_ci'; $config = DB::getConfig(); $config['charset'] = $charset; $config['driver'] = 'mysql'; $config['database'] = 'information_schema'; Config::inst()->set(MySQLDatabase::class, 'connection_collation', $collation); if (strtolower(substr($config['type'] ?? '', 0, 5)) !== 'mysql') { return $this->markTestSkipped('The test only relevant for MySQL'); } $connector = new PDOConnector(); $connector->connect($config); $connection = $connector->getPDOConnection(); $result = $connection->query( "select `a`.`value` from (select 'rst' `value` union select 'rßt' `value`) `a` order by `value`" )->fetchAll(); $this->assertCount(1, $result, '`utf8mb4_general_ci` handles both values as equal to "rst"'); $this->assertEquals('rst', $result[0][0]); } public function testUtf8mb4UnicodeCollation() { if (Deprecation::isEnabled()) { $this->markTestSkipped('Test calls deprecated code'); } $charset = 'utf8mb4'; $collation = 'utf8mb4_unicode_ci'; $config = DB::getConfig(); $config['charset'] = $charset; $config['driver'] = 'mysql'; $config['database'] = 'information_schema'; Config::inst()->set(MySQLDatabase::class, 'connection_collation', $collation); if (strtolower(substr($config['type'] ?? '', 0, 5)) !== 'mysql') { return $this->markTestSkipped('The test only relevant for MySQL'); } $connector = new PDOConnector(); $connector->connect($config); $connection = $connector->getPDOConnection(); $result = $connection->query( "select `a`.`value` from (select 'rst' `value` union select 'rßt' `value`) `a` order by `value`" )->fetchAll(); $this->assertCount(2, $result, '`utf8mb4_unicode_ci` must recognise "rst" and "rßt" as different values'); $this->assertEquals('rßt', $result[0][0]); $this->assertEquals('rst', $result[1][0]); } }