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.
|
|
|
|
*/
|
|
|
|
|
2013-01-24 19:47:17 +04:00
|
|
|
class Test_DB extends PHPUnit_Framework_TestCase {
|
2012-10-12 20:49:47 +04:00
|
|
|
protected $backupGlobals = FALSE;
|
|
|
|
|
2012-10-12 17:47:35 +04:00
|
|
|
protected static $schema_file = 'static://test_db_scheme';
|
|
|
|
protected $test_prefix;
|
|
|
|
|
2013-12-17 13:05:20 +04:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $table1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $table2;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $table3;
|
|
|
|
|
2012-10-12 17:47:35 +04:00
|
|
|
public function setUp() {
|
|
|
|
$dbfile = OC::$SERVERROOT.'/tests/data/db_structure.xml';
|
|
|
|
|
2013-08-15 10:49:19 +04:00
|
|
|
$r = '_'.OC_Util::generateRandomBytes('4').'_';
|
2012-10-12 17:47:35 +04:00
|
|
|
$content = file_get_contents( $dbfile );
|
|
|
|
$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';
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
|
|
|
OC_DB::removeDBStructure(self::$schema_file);
|
2012-10-12 20:49:47 +04:00
|
|
|
unlink(self::$schema_file);
|
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'));
|
2013-07-09 14:31:46 +04:00
|
|
|
$id1 = OC_DB::insertid('*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'));
|
2013-07-09 14:31:46 +04:00
|
|
|
$id2 = OC_DB::insertid('*PREFIX*'.$this->table2);
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2012-10-19 15:18:57 +04:00
|
|
|
public function testinsertIfNotExist() {
|
|
|
|
$categoryentries = array(
|
2013-07-05 16:05:42 +04:00
|
|
|
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),
|
2012-10-19 15:18:57 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach($categoryentries as $entry) {
|
|
|
|
$result = OC_DB::insertIfNotExist('*PREFIX*'.$this->table3,
|
|
|
|
array(
|
|
|
|
'uid' => $entry['user'],
|
|
|
|
'type' => $entry['type'],
|
|
|
|
'category' => $entry['category'],
|
|
|
|
));
|
2013-07-05 16:05:42 +04:00
|
|
|
$this->assertEquals($entry['expectedResult'], $result);
|
2012-10-19 15:18:57 +04:00
|
|
|
}
|
|
|
|
|
2013-06-10 11:53:29 +04:00
|
|
|
$query = OC_DB::prepare('SELECT * FROM `*PREFIX*'.$this->table3.'`');
|
2012-10-19 15:18:57 +04:00
|
|
|
$result = $query->execute();
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertTrue((bool)$result);
|
2013-07-11 20:47:19 +04:00
|
|
|
$this->assertEquals(4, count($result->fetchAll()));
|
2012-10-19 15:18:57 +04:00
|
|
|
}
|
2012-10-31 19:51:36 +04:00
|
|
|
|
|
|
|
public function testinsertIfNotExistDontOverwrite() {
|
|
|
|
$fullname = 'fullname test';
|
|
|
|
$uri = 'uri_1';
|
|
|
|
$carddata = 'This is a vCard';
|
|
|
|
|
|
|
|
// Normal test to have same known data inserted.
|
2013-06-10 11:53:29 +04:00
|
|
|
$query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)');
|
2012-10-31 19:51:36 +04:00
|
|
|
$result = $query->execute(array($fullname, $uri, $carddata));
|
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`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
|
2012-10-31 19:51:36 +04:00
|
|
|
$result = $query->execute(array($uri));
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertTrue((bool)$result);
|
2012-10-31 19:51:36 +04:00
|
|
|
$row = $result->fetchRow();
|
|
|
|
$this->assertArrayHasKey('carddata', $row);
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals($carddata, $row['carddata']);
|
2013-07-05 16:05:42 +04:00
|
|
|
$this->assertEquals(1, $result->numRows());
|
2012-10-31 19:51:36 +04:00
|
|
|
|
|
|
|
// Try to insert a new row
|
|
|
|
$result = OC_DB::insertIfNotExist('*PREFIX*'.$this->table2,
|
|
|
|
array(
|
|
|
|
'fullname' => $fullname,
|
|
|
|
'uri' => $uri,
|
|
|
|
));
|
2013-07-05 16:05:42 +04:00
|
|
|
$this->assertEquals(0, $result);
|
2012-10-31 19:51:36 +04:00
|
|
|
|
2013-06-10 11:53:29 +04:00
|
|
|
$query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?');
|
2012-10-31 19:51:36 +04:00
|
|
|
$result = $query->execute(array($uri));
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertTrue((bool)$result);
|
2012-10-31 19:51:36 +04:00
|
|
|
$row = $result->fetchRow();
|
|
|
|
$this->assertArrayHasKey('carddata', $row);
|
|
|
|
// Test that previously inserted data isn't overwritten
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals($carddata, $row['carddata']);
|
2012-10-31 19:51:36 +04:00
|
|
|
// And that a new row hasn't been inserted.
|
2013-07-05 16:05:42 +04:00
|
|
|
$this->assertEquals(1, $result->numRows());
|
2012-10-31 19:51:36 +04: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
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|