123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- <?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.
- */
- class Test_DB extends \Test\TestCase {
- protected $backupGlobals = FALSE;
- protected static $schema_file = 'static://test_db_scheme';
- protected $test_prefix;
- /**
- * @var string
- */
- private $table1;
- /**
- * @var string
- */
- private $table2;
- /**
- * @var string
- */
- private $table3;
- /**
- * @var string
- */
- private $table4;
- /**
- * @var string
- */
- private $table5;
- protected function setUp() {
- parent::setUp();
- $dbFile = OC::$SERVERROOT.'/tests/data/db_structure.xml';
- $r = $this->getUniqueID('_', 4).'_';
- $content = file_get_contents( $dbFile );
- $content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content );
- file_put_contents( self::$schema_file, $content );
- OC_DB::createDbFromStructure(self::$schema_file);
- $this->test_prefix = $r;
- $this->table1 = $this->test_prefix.'cntcts_addrsbks';
- $this->table2 = $this->test_prefix.'cntcts_cards';
- $this->table3 = $this->test_prefix.'vcategory';
- $this->table4 = $this->test_prefix.'decimal';
- $this->table5 = $this->test_prefix.'uniconst';
- }
- protected function tearDown() {
- OC_DB::removeDBStructure(self::$schema_file);
- unlink(self::$schema_file);
- parent::tearDown();
- }
- public function testQuotes() {
- $query = OC_DB::prepare('SELECT `fullname` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
- $result = $query->execute(array('uri_1'));
- $this->assertTrue((bool)$result);
- $row = $result->fetchRow();
- $this->assertFalse($row);
- $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)');
- $result = $query->execute(array('fullname test', 'uri_1'));
- $this->assertEquals(1, $result);
- $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
- $result = $query->execute(array('uri_1'));
- $this->assertTrue((bool)$result);
- $row = $result->fetchRow();
- $this->assertArrayHasKey('fullname', $row);
- $this->assertEquals($row['fullname'], 'fullname test');
- $row = $result->fetchRow();
- $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null
- }
- /**
- * @medium
- */
- public function testNOW() {
- $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (NOW(),?)');
- $result = $query->execute(array('uri_2'));
- $this->assertEquals(1, $result);
- $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
- $result = $query->execute(array('uri_2'));
- $this->assertTrue((bool)$result);
- }
- public function testUNIX_TIMESTAMP() {
- $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)');
- $result = $query->execute(array('uri_3'));
- $this->assertEquals(1, $result);
- $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
- $result = $query->execute(array('uri_3'));
- $this->assertTrue((bool)$result);
- }
-
- public function testLastInsertId() {
- $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)');
- $result1 = OC_DB::executeAudited($query, array('insertid 1','uri_1'));
- $id1 = OC_DB::insertid('*PREFIX*'.$this->table2);
-
- // we don't know the id we should expect, so insert another row
- $result2 = OC_DB::executeAudited($query, array('insertid 2','uri_2'));
- $id2 = OC_DB::insertid('*PREFIX*'.$this->table2);
- // now we can check if the two ids are in correct order
- $this->assertGreaterThan($id1, $id2);
- }
-
- public function testinsertIfNotExist() {
- $categoryEntries = array(
- array('user' => 'test', 'type' => 'contact', 'category' => 'Family', 'expectedResult' => 1),
- array('user' => 'test', 'type' => 'contact', 'category' => 'Friends', 'expectedResult' => 1),
- array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers', 'expectedResult' => 1),
- array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers', 'expectedResult' => 0),
- array('user' => 'test', 'type' => 'contact', 'category' => 'School', 'expectedResult' => 1),
- );
- foreach($categoryEntries as $entry) {
- $result = \OCP\DB::insertIfNotExist('*PREFIX*'.$this->table3,
- array(
- 'uid' => $entry['user'],
- 'type' => $entry['type'],
- 'category' => $entry['category'],
- ));
- $this->assertEquals($entry['expectedResult'], $result);
- }
- $query = OC_DB::prepare('SELECT * FROM `*PREFIX*'.$this->table3.'`');
- $result = $query->execute();
- $this->assertTrue((bool)$result);
- $this->assertEquals(4, count($result->fetchAll()));
- }
- public function testInsertIfNotExistNull() {
- $categoryEntries = array(
- array('addressbookid' => 123, 'fullname' => null, 'expectedResult' => 1),
- array('addressbookid' => 123, 'fullname' => null, 'expectedResult' => 0),
- array('addressbookid' => 123, 'fullname' => 'test', 'expectedResult' => 1),
- );
- foreach($categoryEntries as $entry) {
- $result = \OCP\DB::insertIfNotExist('*PREFIX*'.$this->table2,
- array(
- 'addressbookid' => $entry['addressbookid'],
- 'fullname' => $entry['fullname'],
- ));
- $this->assertEquals($entry['expectedResult'], $result);
- }
- $query = OC_DB::prepare('SELECT * FROM `*PREFIX*'.$this->table2.'`');
- $result = $query->execute();
- $this->assertTrue((bool)$result);
- $this->assertEquals(2, count($result->fetchAll()));
- }
- public function testInsertIfNotExistDonTOverwrite() {
- $fullName = 'fullname test';
- $uri = 'uri_1';
- $carddata = 'This is a vCard';
- // Normal test to have same known data inserted.
- $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)');
- $result = $query->execute(array($fullName, $uri, $carddata));
- $this->assertEquals(1, $result);
- $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
- $result = $query->execute(array($uri));
- $this->assertTrue((bool)$result);
- $rowset = $result->fetchAll();
- $this->assertEquals(1, count($rowset));
- $this->assertArrayHasKey('carddata', $rowset[0]);
- $this->assertEquals($carddata, $rowset[0]['carddata']);
- // Try to insert a new row
- $result = \OCP\DB::insertIfNotExist('*PREFIX*'.$this->table2,
- array(
- 'fullname' => $fullName,
- 'uri' => $uri,
- ));
- $this->assertEquals(0, $result);
- $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
- $result = $query->execute(array($uri));
- $this->assertTrue((bool)$result);
- // Test that previously inserted data isn't overwritten
- // And that a new row hasn't been inserted.
- $rowset = $result->fetchAll();
- $this->assertEquals(1, count($rowset));
- $this->assertArrayHasKey('carddata', $rowset[0]);
- $this->assertEquals($carddata, $rowset[0]['carddata']);
- }
- public function testInsertIfNotExistsViolating() {
- $result = \OCP\DB::insertIfNotExist('*PREFIX*'.$this->table5,
- array(
- 'storage' => 1,
- 'path_hash' => md5('welcome.txt'),
- 'etag' => $this->getUniqueID()
- ));
- $this->assertEquals(1, $result);
- $result = \OCP\DB::insertIfNotExist('*PREFIX*'.$this->table5,
- array(
- 'storage' => 1,
- 'path_hash' => md5('welcome.txt'),
- 'etag' => $this->getUniqueID()
- ),['storage', 'path_hash']);
- $this->assertEquals(0, $result);
- }
- public function insertIfNotExistsViolatingThrows() {
- return [
- [null],
- [['etag']],
- ];
- }
- /**
- * @dataProvider insertIfNotExistsViolatingThrows
- * @expectedException \Doctrine\DBAL\Exception\UniqueConstraintViolationException
- *
- * @param array $compareKeys
- */
- public function testInsertIfNotExistsViolatingThrows($compareKeys) {
- $result = \OCP\DB::insertIfNotExist('*PREFIX*'.$this->table5,
- array(
- 'storage' => 1,
- 'path_hash' => md5('welcome.txt'),
- 'etag' => $this->getUniqueID()
- ));
- $this->assertEquals(1, $result);
- $result = \OCP\DB::insertIfNotExist('*PREFIX*'.$this->table5,
- array(
- 'storage' => 1,
- 'path_hash' => md5('welcome.txt'),
- 'etag' => $this->getUniqueID()
- ), $compareKeys);
- $this->assertEquals(0, $result);
- }
- public function testUtf8Data() {
- $table = "*PREFIX*{$this->table2}";
- $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);
- $actual = OC_DB::prepare("SELECT `fullname` FROM `$table`")->execute()->fetchOne();
- $this->assertSame($expected, $actual);
- }
- public function testDecimal() {
- $table = "*PREFIX*" . $this->table4;
- $rowname = 'decimaltest';
- // Insert, select and delete decimal(12,2) values
- $inserts = array('1337133713.37', '1234567890');
- $expects = array('1337133713.37', '1234567890.00');
- for ($i = 0; $i < count($inserts); $i++) {
- $insert = $inserts[$i];
- $expect = $expects[$i];
- $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 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 (?, ?, ?)");
- $this->assertSame(1, $query->execute(array($fullname, $uri, $this->getUniqueID())));
- }
- protected function updateCardData($fullname, $uri) {
- $query = OC_DB::prepare("UPDATE `*PREFIX*{$this->table2}` SET `uri` = ? WHERE `fullname` = ?");
- return $query->execute(array($uri, $fullname));
- }
- 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());
- $query = OC_DB::prepare("SELECT * FROM `$table` WHERE `fullname` ILIKE ?");
- $result = $query->execute(array('foo'));
- $this->assertCount(0, $result->fetchAll());
- }
- 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());
- }
- }
|