Zend_Db::INT_TYPE, Zend_Db::BIGINT_TYPE => Zend_Db::BIGINT_TYPE, Zend_Db::FLOAT_TYPE => Zend_Db::FLOAT_TYPE, 'INTEGER' => Zend_Db::BIGINT_TYPE, 'REAL' => Zend_Db::FLOAT_TYPE ); /** * Test AUTO_QUOTE_IDENTIFIERS option * Case: Zend_Db::AUTO_QUOTE_IDENTIFIERS = true * * SQLite actually allows delimited identifiers to remain * case-insensitive, so this test overrides its parent. */ public function testAdapterAutoQuoteIdentifiersTrue() { $params = $this->_util->getParams(); $params['options'] = array( Zend_Db::AUTO_QUOTE_IDENTIFIERS => true ); $db = Zend_Db::factory($this->getDriver(), $params); $db->getConnection(); $select = $this->_db->select(); $select->from('zfproducts'); $stmt = $this->_db->query($select); $result1 = $stmt->fetchAll(); $this->assertEquals(1, $result1[0]['product_id']); $select = $this->_db->select(); $select->from('ZFPRODUCTS'); try { $stmt = $this->_db->query($select); $result2 = $stmt->fetchAll(); } catch (Zend_Exception $e) { $this->assertTrue($e instanceof Zend_Db_Statement_Exception, 'Expecting object of type Zend_Db_Statement_Exception, got '.get_class($e)); $this->fail('Unexpected exception '.get_class($e).' received: '.$e->getMessage()); } $this->assertEquals($result1, $result2); } public function testAdapterConstructInvalidParamDbnameException() { $this->markTestSkipped($this->getDriver() . ' does not throw exception on missing dbname'); } public function testAdapterConstructInvalidParamUsernameException() { $this->markTestSkipped($this->getDriver() . ' does not support login credentials'); } public function testAdapterConstructInvalidParamPasswordException() { $this->markTestSkipped($this->getDriver() . ' does not support login credentials'); } public function testAdapterInsertSequence() { $this->markTestSkipped($this->getDriver() . ' does not support sequences'); } /** * Used by: * - testAdapterOptionCaseFoldingNatural() * - testAdapterOptionCaseFoldingUpper() * - testAdapterOptionCaseFoldingLower() */ protected function _testAdapterOptionCaseFoldingSetup(Zend_Db_Adapter_Abstract $db) { $db->getConnection(); $this->_util->setUp($db); } /** * Test that quote() takes an array and returns * an imploded string of comma-separated, quoted elements. */ public function testAdapterQuoteArray() { $array = array("it's", 'all', 'right!'); $value = $this->_db->quote($array); $this->assertEquals("'it''s', 'all', 'right!'", $value); } /** * test that quote() escapes a double-quote * character in a string. */ public function testAdapterQuoteDoubleQuote() { $value = $this->_db->quote('St John"s Wort'); $this->assertEquals("'St John\"s Wort'", $value); } /** * test that quote() escapes a single-quote * character in a string. */ public function testAdapterQuoteSingleQuote() { $string = "St John's Wort"; $value = $this->_db->quote($string); $this->assertEquals("'St John''s Wort'", $value); } /** * test that quoteInto() escapes a double-quote * character in a string. */ public function testAdapterQuoteIntoDoubleQuote() { $value = $this->_db->quoteInto('id=?', 'St John"s Wort'); $this->assertEquals("id='St John\"s Wort'", $value); } /** * test that quoteInto() escapes a single-quote * character in a string. */ public function testAdapterQuoteIntoSingleQuote() { $value = $this->_db->quoteInto('id = ?', 'St John\'s Wort'); $this->assertEquals("id = 'St John''s Wort'", $value); } public function testAdapterTransactionAutoCommit() { $this->markTestSkipped($this->getDriver() . ' does not support transactions or concurrency'); } public function testAdapterTransactionCommit() { $this->markTestSkipped($this->getDriver() . ' does not support transactions or concurrency'); } public function testAdapterTransactionRollback() { $this->markTestSkipped($this->getDriver() . ' does not support transactions or concurrency'); } /** * @group ZF-2293 */ public function testAdapterSupportsLengthInTableMetadataForVarcharFields() { $metadata = $this->_db->describeTable('zfbugs'); $this->assertEquals(100, $metadata['bug_description']['LENGTH']); $this->assertEquals(20, $metadata['bug_status']['LENGTH']); } public function getDriver() { return 'Pdo_Sqlite'; } public function testAdapterOptionFetchMode() { $params = $this->_util->getParams(); $params['options'] = array( Zend_Db::FETCH_MODE => 'obj' ); $db = Zend_Db::factory($this->getDriver(), $params); //two extra lines to make SQLite work $db->query('CREATE TABLE zfproducts (id)'); $db->insert('zfproducts', array('id' => 1)); $select = $db->select()->from('zfproducts'); $row = $db->fetchRow($select); $this->assertTrue($row instanceof stdClass); } protected function _testAdapterAlternateStatement($stmtClass) { $ip = get_include_path(); $dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '_files'; $newIp = $dir . PATH_SEPARATOR . $ip; set_include_path($newIp); $params = $this->_util->getParams(); $params['options'] = array( Zend_Db::AUTO_QUOTE_IDENTIFIERS => false ); $db = Zend_Db::factory($this->getDriver(), $params); $db->getConnection(); $db->setStatementClass($stmtClass); $currentStmtClass = $db->getStatementClass(); $this->assertEquals($stmtClass, $currentStmtClass); //extra fix for SQLite $db->query('CREATE TABLE zfbugs (id)'); $bugs = $this->_db->quoteIdentifier('zfbugs'); $stmt = $db->prepare("SELECT COUNT(*) FROM $bugs"); $this->assertTrue($stmt instanceof $stmtClass, 'Expecting object of type ' . $stmtClass . ', got ' . get_class($stmt)); } /** * test that quote() escapes null byte character * in a string. */ public function testAdapterQuoteNullByteCharacter() { $string = "1\0"; $value = $this->_db->quote($string); $this->assertEquals("'1\\000'", $value); } }