2012-10-12 17:47:35 +04:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-05-19 10:27:21 +03:00
|
|
|
|
namespace Test\DB;
|
|
|
|
|
|
|
|
|
|
use OC_DB;
|
|
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
|
/**
|
2016-05-19 10:27:21 +03:00
|
|
|
|
* Class LegacyDBTest
|
2015-11-03 03:52:41 +03:00
|
|
|
|
*
|
|
|
|
|
* @group DB
|
|
|
|
|
*/
|
2016-05-19 10:27:21 +03:00
|
|
|
|
class LegacyDBTest extends \Test\TestCase {
|
2012-10-12 20:49:47 +04:00
|
|
|
|
protected $backupGlobals = FALSE;
|
|
|
|
|
|
2017-01-04 17:54:44 +03:00
|
|
|
|
protected static $schema_file;
|
2012-10-12 17:47:35 +04:00
|
|
|
|
protected $test_prefix;
|
|
|
|
|
|
2017-01-04 17:54:44 +03:00
|
|
|
|
public static function setUpBeforeClass() {
|
|
|
|
|
self::$schema_file = \OC::$server->getTempManager()->getTemporaryFile();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-12-17 13:05:20 +04:00
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
private $table1;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
private $table2;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
private $table3;
|
|
|
|
|
|
2014-09-16 17:44:21 +04:00
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
private $table4;
|
|
|
|
|
|
2015-03-09 22:53:08 +03:00
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
private $table5;
|
|
|
|
|
|
2015-07-30 11:57:16 +03:00
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
private $text_table;
|
|
|
|
|
|
2014-11-11 00:59:50 +03:00
|
|
|
|
protected function setUp() {
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
2016-05-19 10:27:21 +03:00
|
|
|
|
$dbFile = \OC::$SERVERROOT.'/tests/data/db_structure.xml';
|
2012-10-12 17:47:35 +04:00
|
|
|
|
|
2015-03-09 22:53:08 +03:00
|
|
|
|
$r = $this->getUniqueID('_', 4).'_';
|
|
|
|
|
$content = file_get_contents( $dbFile );
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content );
|
|
|
|
|
file_put_contents( self::$schema_file, $content );
|
2012-10-12 20:49:47 +04:00
|
|
|
|
OC_DB::createDbFromStructure(self::$schema_file);
|
2012-10-12 17:47:35 +04:00
|
|
|
|
|
|
|
|
|
$this->test_prefix = $r;
|
2013-06-10 13:44:04 +04:00
|
|
|
|
$this->table1 = $this->test_prefix.'cntcts_addrsbks';
|
|
|
|
|
$this->table2 = $this->test_prefix.'cntcts_cards';
|
2012-10-19 15:18:57 +04:00
|
|
|
|
$this->table3 = $this->test_prefix.'vcategory';
|
2013-12-19 02:40:11 +04:00
|
|
|
|
$this->table4 = $this->test_prefix.'decimal';
|
2015-03-09 22:53:08 +03:00
|
|
|
|
$this->table5 = $this->test_prefix.'uniconst';
|
2015-07-30 11:57:16 +03:00
|
|
|
|
$this->text_table = $this->test_prefix.'text_table';
|
2012-10-12 17:47:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-11 00:59:50 +03:00
|
|
|
|
protected function tearDown() {
|
2012-10-12 17:47:35 +04:00
|
|
|
|
OC_DB::removeDBStructure(self::$schema_file);
|
2012-10-12 20:49:47 +04:00
|
|
|
|
unlink(self::$schema_file);
|
2014-11-11 00:59:50 +03:00
|
|
|
|
|
|
|
|
|
parent::tearDown();
|
2012-10-12 17:47:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-10-12 20:49:47 +04:00
|
|
|
|
public function testQuotes() {
|
2013-06-10 11:53:29 +04:00
|
|
|
|
$query = OC_DB::prepare('SELECT `fullname` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$result = $query->execute(array('uri_1'));
|
2013-01-24 19:47:17 +04:00
|
|
|
|
$this->assertTrue((bool)$result);
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$row = $result->fetchRow();
|
2013-06-21 14:04:52 +04:00
|
|
|
|
$this->assertFalse($row);
|
2013-06-10 11:53:29 +04:00
|
|
|
|
$query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$result = $query->execute(array('fullname test', 'uri_1'));
|
2013-07-05 16:05:42 +04:00
|
|
|
|
$this->assertEquals(1, $result);
|
2013-06-10 11:53:29 +04:00
|
|
|
|
$query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$result = $query->execute(array('uri_1'));
|
2013-01-24 19:47:17 +04:00
|
|
|
|
$this->assertTrue((bool)$result);
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$row = $result->fetchRow();
|
|
|
|
|
$this->assertArrayHasKey('fullname', $row);
|
2013-01-24 19:47:17 +04:00
|
|
|
|
$this->assertEquals($row['fullname'], 'fullname test');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$row = $result->fetchRow();
|
2013-06-10 13:07:41 +04:00
|
|
|
|
$this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null
|
2012-10-12 17:47:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-10 12:17:47 +04:00
|
|
|
|
/**
|
|
|
|
|
* @medium
|
|
|
|
|
*/
|
2012-10-12 20:49:47 +04:00
|
|
|
|
public function testNOW() {
|
2013-06-10 11:53:29 +04:00
|
|
|
|
$query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (NOW(),?)');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$result = $query->execute(array('uri_2'));
|
2013-07-05 16:05:42 +04:00
|
|
|
|
$this->assertEquals(1, $result);
|
2013-06-10 11:53:29 +04:00
|
|
|
|
$query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$result = $query->execute(array('uri_2'));
|
2013-01-24 19:47:17 +04:00
|
|
|
|
$this->assertTrue((bool)$result);
|
2012-10-12 17:47:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-10-12 20:49:47 +04:00
|
|
|
|
public function testUNIX_TIMESTAMP() {
|
2013-06-10 11:53:29 +04:00
|
|
|
|
$query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$result = $query->execute(array('uri_3'));
|
2013-07-05 16:05:42 +04:00
|
|
|
|
$this->assertEquals(1, $result);
|
2013-06-10 11:53:29 +04:00
|
|
|
|
$query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
|
2012-10-12 17:47:35 +04:00
|
|
|
|
$result = $query->execute(array('uri_3'));
|
2013-01-24 19:47:17 +04:00
|
|
|
|
$this->assertTrue((bool)$result);
|
2012-10-12 17:47:35 +04:00
|
|
|
|
}
|
2013-07-09 14:31:46 +04:00
|
|
|
|
|
|
|
|
|
public function testLastInsertId() {
|
|
|
|
|
$query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)');
|
2013-07-09 15:17:25 +04:00
|
|
|
|
$result1 = OC_DB::executeAudited($query, array('insertid 1','uri_1'));
|
2016-01-07 12:22:30 +03:00
|
|
|
|
$id1 = \OC::$server->getDatabaseConnection()->lastInsertId('*PREFIX*'.$this->table2);
|
2013-07-09 15:17:25 +04:00
|
|
|
|
|
2013-07-09 14:31:46 +04:00
|
|
|
|
// we don't know the id we should expect, so insert another row
|
2013-07-09 15:17:25 +04:00
|
|
|
|
$result2 = OC_DB::executeAudited($query, array('insertid 2','uri_2'));
|
2016-01-07 12:22:30 +03:00
|
|
|
|
$id2 = \OC::$server->getDatabaseConnection()->lastInsertId('*PREFIX*'.$this->table2);
|
2013-07-09 14:31:46 +04:00
|
|
|
|
// now we can check if the two ids are in correct order
|
2013-07-09 15:17:25 +04:00
|
|
|
|
$this->assertGreaterThan($id1, $id2);
|
2013-07-09 14:31:46 +04:00
|
|
|
|
}
|
2015-03-10 11:26:45 +03:00
|
|
|
|
|
2013-12-12 16:14:43 +04:00
|
|
|
|
public function testUtf8Data() {
|
|
|
|
|
$table = "*PREFIX*{$this->table2}";
|
2013-12-12 18:24:35 +04:00
|
|
|
|
$expected = "Ћö雙喜\xE2\x80\xA2";
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("INSERT INTO `$table` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)");
|
|
|
|
|
$result = $query->execute(array($expected, 'uri_1', 'This is a vCard'));
|
|
|
|
|
$this->assertEquals(1, $result);
|
|
|
|
|
|
2013-12-17 13:05:20 +04:00
|
|
|
|
$actual = OC_DB::prepare("SELECT `fullname` FROM `$table`")->execute()->fetchOne();
|
2013-12-12 18:24:35 +04:00
|
|
|
|
$this->assertSame($expected, $actual);
|
2013-12-12 16:14:43 +04:00
|
|
|
|
}
|
2013-12-19 02:40:11 +04:00
|
|
|
|
|
2015-04-18 16:19:33 +03:00
|
|
|
|
/**
|
|
|
|
|
* Insert, select and delete decimal(12,2) values
|
|
|
|
|
* @dataProvider decimalData
|
|
|
|
|
*/
|
|
|
|
|
public function testDecimal($insert, $expect) {
|
2013-12-19 02:40:11 +04:00
|
|
|
|
$table = "*PREFIX*" . $this->table4;
|
|
|
|
|
$rowname = 'decimaltest';
|
|
|
|
|
|
2015-04-18 16:19:33 +03:00
|
|
|
|
$query = OC_DB::prepare('INSERT INTO `' . $table . '` (`' . $rowname . '`) VALUES (?)');
|
|
|
|
|
$result = $query->execute(array($insert));
|
|
|
|
|
$this->assertEquals(1, $result);
|
|
|
|
|
$query = OC_DB::prepare('SELECT `' . $rowname . '` FROM `' . $table . '`');
|
|
|
|
|
$result = $query->execute();
|
|
|
|
|
$this->assertTrue((bool)$result);
|
|
|
|
|
$row = $result->fetchRow();
|
|
|
|
|
$this->assertArrayHasKey($rowname, $row);
|
|
|
|
|
$this->assertEquals($expect, $row[$rowname]);
|
|
|
|
|
$query = OC_DB::prepare('DELETE FROM `' . $table . '`');
|
|
|
|
|
$result = $query->execute();
|
|
|
|
|
$this->assertTrue((bool)$result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function decimalData() {
|
|
|
|
|
return [
|
|
|
|
|
['1337133713.37', '1337133713.37'],
|
|
|
|
|
['1234567890', '1234567890.00'],
|
|
|
|
|
];
|
2013-12-19 02:40:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-16 16:35:47 +04:00
|
|
|
|
public function testUpdateAffectedRowsNoMatch() {
|
|
|
|
|
$this->insertCardData('fullname1', 'uri1');
|
|
|
|
|
// The WHERE clause does not match any rows
|
|
|
|
|
$this->assertSame(0, $this->updateCardData('fullname3', 'uri2'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateAffectedRowsDifferent() {
|
|
|
|
|
$this->insertCardData('fullname1', 'uri1');
|
|
|
|
|
// The WHERE clause matches a single row and the value we are updating
|
|
|
|
|
// is different from the one already present.
|
|
|
|
|
$this->assertSame(1, $this->updateCardData('fullname1', 'uri2'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateAffectedRowsSame() {
|
|
|
|
|
$this->insertCardData('fullname1', 'uri1');
|
|
|
|
|
// The WHERE clause matches a single row and the value we are updating
|
|
|
|
|
// to is the same as the one already present. MySQL reports 0 here when
|
|
|
|
|
// the PDO::MYSQL_ATTR_FOUND_ROWS flag is not specified.
|
|
|
|
|
$this->assertSame(1, $this->updateCardData('fullname1', 'uri1'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateAffectedRowsMultiple() {
|
|
|
|
|
$this->insertCardData('fullname1', 'uri1');
|
|
|
|
|
$this->insertCardData('fullname2', 'uri2');
|
|
|
|
|
// The WHERE clause matches two rows. One row contains a value that
|
|
|
|
|
// needs to be updated, the other one already contains the value we are
|
|
|
|
|
// updating to. MySQL reports 1 here when the PDO::MYSQL_ATTR_FOUND_ROWS
|
|
|
|
|
// flag is not specified.
|
|
|
|
|
$query = OC_DB::prepare("UPDATE `*PREFIX*{$this->table2}` SET `uri` = ?");
|
|
|
|
|
$this->assertSame(2, $query->execute(array('uri1')));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function insertCardData($fullname, $uri) {
|
|
|
|
|
$query = OC_DB::prepare("INSERT INTO `*PREFIX*{$this->table2}` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)");
|
2014-12-02 15:51:36 +03:00
|
|
|
|
$this->assertSame(1, $query->execute(array($fullname, $uri, $this->getUniqueID())));
|
2014-07-16 16:35:47 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function updateCardData($fullname, $uri) {
|
|
|
|
|
$query = OC_DB::prepare("UPDATE `*PREFIX*{$this->table2}` SET `uri` = ? WHERE `fullname` = ?");
|
|
|
|
|
return $query->execute(array($uri, $fullname));
|
|
|
|
|
}
|
2014-09-09 15:57:02 +04:00
|
|
|
|
|
|
|
|
|
public function testILIKE() {
|
|
|
|
|
$table = "*PREFIX*{$this->table2}";
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("INSERT INTO `$table` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)");
|
|
|
|
|
$query->execute(array('fooBAR', 'foo', 'bar'));
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` LIKE ?");
|
|
|
|
|
$result = $query->execute(array('foobar'));
|
|
|
|
|
$this->assertCount(0, $result->fetchAll());
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` ILIKE ?");
|
|
|
|
|
$result = $query->execute(array('foobar'));
|
|
|
|
|
$this->assertCount(1, $result->fetchAll());
|
2014-09-18 17:09:57 +04:00
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` ILIKE ?");
|
|
|
|
|
$result = $query->execute(array('foo'));
|
|
|
|
|
$this->assertCount(0, $result->fetchAll());
|
2014-09-09 15:57:02 +04:00
|
|
|
|
}
|
2014-09-16 23:03:03 +04:00
|
|
|
|
|
|
|
|
|
public function testILIKEWildcard() {
|
|
|
|
|
$table = "*PREFIX*{$this->table2}";
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("INSERT INTO `$table` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)");
|
|
|
|
|
$query->execute(array('FooBAR', 'foo', 'bar'));
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` LIKE ?");
|
|
|
|
|
$result = $query->execute(array('%bar'));
|
|
|
|
|
$this->assertCount(0, $result->fetchAll());
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` LIKE ?");
|
|
|
|
|
$result = $query->execute(array('foo%'));
|
|
|
|
|
$this->assertCount(0, $result->fetchAll());
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` LIKE ?");
|
|
|
|
|
$result = $query->execute(array('%ba%'));
|
|
|
|
|
$this->assertCount(0, $result->fetchAll());
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` ILIKE ?");
|
|
|
|
|
$result = $query->execute(array('%bar'));
|
|
|
|
|
$this->assertCount(1, $result->fetchAll());
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` ILIKE ?");
|
|
|
|
|
$result = $query->execute(array('foo%'));
|
|
|
|
|
$this->assertCount(1, $result->fetchAll());
|
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` ILIKE ?");
|
|
|
|
|
$result = $query->execute(array('%ba%'));
|
|
|
|
|
$this->assertCount(1, $result->fetchAll());
|
|
|
|
|
}
|
2015-07-30 11:57:16 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider insertAndSelectDataProvider
|
|
|
|
|
*/
|
2016-10-18 12:17:13 +03:00
|
|
|
|
public function testInsertAndSelectData($expected, $throwsOnMysqlWithoutUTF8MB4) {
|
2015-07-30 11:57:16 +03:00
|
|
|
|
$table = "*PREFIX*{$this->text_table}";
|
2016-10-18 12:17:13 +03:00
|
|
|
|
$config = \OC::$server->getConfig();
|
2015-07-30 11:57:16 +03:00
|
|
|
|
|
|
|
|
|
$query = OC_DB::prepare("INSERT INTO `$table` (`textfield`) VALUES (?)");
|
2016-10-18 12:17:13 +03:00
|
|
|
|
if ($throwsOnMysqlWithoutUTF8MB4 && $config->getSystemValue('dbtype', 'sqlite') === 'mysql' && $config->getSystemValue('mysql.utf8mb4', false) === false) {
|
|
|
|
|
$this->markTestSkipped('MySQL requires UTF8mb4 to store value: ' . $expected);
|
|
|
|
|
}
|
2015-07-30 11:57:16 +03:00
|
|
|
|
$result = $query->execute(array($expected));
|
|
|
|
|
$this->assertEquals(1, $result);
|
|
|
|
|
|
|
|
|
|
$actual = OC_DB::prepare("SELECT `textfield` FROM `$table`")->execute()->fetchOne();
|
|
|
|
|
$this->assertSame($expected, $actual);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function insertAndSelectDataProvider() {
|
|
|
|
|
return [
|
2015-07-30 15:57:17 +03:00
|
|
|
|
['abcdefghijklmnopqrstuvwxyzABCDEFGHIKLMNOPQRSTUVWXYZ', false],
|
|
|
|
|
['0123456789', false],
|
|
|
|
|
['äöüÄÖÜß!"§$%&/()=?#\'+*~°^`´', false],
|
|
|
|
|
['²³¼½¬{[]}\\', false],
|
|
|
|
|
['♡⚗', false],
|
|
|
|
|
['💩', true], # :hankey: on github
|
2015-07-30 11:57:16 +03:00
|
|
|
|
];
|
|
|
|
|
}
|
2012-10-12 17:47:35 +04:00
|
|
|
|
}
|