You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Db/Adapter/Pdo/MssqlTest.php

398 lines
15 KiB
PHP

<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Db
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: MssqlTest.php 17792 2009-08-24 16:18:02Z ralph $
*/
/**
* @see Zend_Db_Adapter_Pdo_TestCommon
*/
require_once 'Zend/Db/Adapter/Pdo/TestCommon.php';
/**
* @see Zend_Db_Adapter_Pdo_Mysql
*/
require_once 'Zend/Db/Adapter/Pdo/Mysql.php';
PHPUnit_Util_Filter::addFileToFilter(__FILE__);
/**
* @category Zend
* @package Zend_Db
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_Db
* @group Zend_Db_Adapter
*/
class Zend_Db_Adapter_Pdo_MssqlTest extends Zend_Db_Adapter_Pdo_TestCommon
{
protected $_numericDataTypes = array(
Zend_Db::INT_TYPE => Zend_Db::INT_TYPE,
Zend_Db::BIGINT_TYPE => Zend_Db::BIGINT_TYPE,
Zend_Db::FLOAT_TYPE => Zend_Db::FLOAT_TYPE,
'INT' => Zend_Db::INT_TYPE,
'SMALLINT' => Zend_Db::INT_TYPE,
'TINYINT' => Zend_Db::INT_TYPE,
'BIGINT' => Zend_Db::BIGINT_TYPE,
'DECIMAL' => Zend_Db::FLOAT_TYPE,
'FLOAT' => Zend_Db::FLOAT_TYPE,
'MONEY' => Zend_Db::FLOAT_TYPE,
'NUMERIC' => Zend_Db::FLOAT_TYPE,
'REAL' => Zend_Db::FLOAT_TYPE,
'SMALLMONEY' => Zend_Db::FLOAT_TYPE
);
/**
* Test AUTO_QUOTE_IDENTIFIERS option
* Case: Zend_Db::AUTO_QUOTE_IDENTIFIERS = true
*/
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);
$result = $stmt->fetchAll();
$this->assertEquals(3, count($result), 'Expected 3 rows in first query result');
$this->assertEquals(1, $result[0]['product_id']);
}
public function testAdapterDescribeTableAttributeColumn()
{
$desc = $this->_db->describeTable('zfproducts');
$this->assertEquals('zfproducts', $desc['product_name']['TABLE_NAME']);
$this->assertEquals('product_name', $desc['product_name']['COLUMN_NAME']);
$this->assertEquals(2, $desc['product_name']['COLUMN_POSITION']);
$this->assertRegExp('/varchar/i', $desc['product_name']['DATA_TYPE']);
$this->assertEquals('', $desc['product_name']['DEFAULT']);
$this->assertFalse( $desc['product_name']['NULLABLE'], 'Expected product_name not to be nullable');
$this->assertNull( $desc['product_name']['SCALE'], 'scale is not 0');
// MS SQL Server reports varchar length in the PRECISION field. Whaaa?!?
$this->assertEquals(100, $desc['product_name']['PRECISION'], 'precision is not 100');
$this->assertFalse( $desc['product_name']['PRIMARY'], 'Expected product_name not to be a primary key');
$this->assertNull( $desc['product_name']['PRIMARY_POSITION'], 'Expected product_name to return null for PRIMARY_POSITION');
$this->assertFalse( $desc['product_name']['IDENTITY'], 'Expected product_name to return false for IDENTITY');
}
public function testAdapterDescribeTablePrimaryKeyColumn()
{
$desc = $this->_db->describeTable('zfproducts');
$this->assertEquals('zfproducts', $desc['product_id']['TABLE_NAME']);
$this->assertEquals('product_id', $desc['product_id']['COLUMN_NAME']);
$this->assertEquals(1, $desc['product_id']['COLUMN_POSITION']);
$this->assertEquals('', $desc['product_id']['DEFAULT']);
$this->assertFalse( $desc['product_id']['NULLABLE'], 'Expected product_id not to be nullable');
$this->assertEquals(0, $desc['product_id']['SCALE'], 'scale is not 0');
$this->assertEquals(10, $desc['product_id']['PRECISION'], 'precision is not 10');
$this->assertTrue( $desc['product_id']['PRIMARY'], 'Expected product_id to be a primary key');
$this->assertEquals(1, $desc['product_id']['PRIMARY_POSITION']);
}
/**
* 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()
{
$string = 'St John"s Wort';
$value = $this->_db->quote($string);
$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()
{
$string = 'id=?';
$param = 'St John"s Wort';
$value = $this->_db->quoteInto($string, $param);
$this->assertEquals("id='St John\"s Wort'", $value);
}
/**
* test that quoteInto() escapes a single-quote
* character in a string.
*/
public function testAdapterQuoteIntoSingleQuote()
{
$string = 'id = ?';
$param = 'St John\'s Wort';
$value = $this->_db->quoteInto($string, $param);
$this->assertEquals("id = 'St John''s Wort'", $value);
}
public function testAdapterInsertSequence()
{
$this->markTestSkipped($this->getDriver() . ' does not support sequences.');
}
public function testAdapterInsertDbExpr()
{
$bugs = $this->_db->quoteIdentifier('zfbugs');
$bug_id = $this->_db->quoteIdentifier('bug_id');
$expr = new Zend_Db_Expr('2+3');
$row = array (
'bug_id' => $expr,
'bug_description' => 'New bug',
'bug_status' => 'NEW',
'created_on' => '2007-04-02',
'updated_on' => '2007-04-02',
'reported_by' => 'micky',
'assigned_to' => 'goofy',
'verified_by' => 'dduck'
);
$this->_db->query("SET IDENTITY_INSERT $bugs ON");
$rowsAffected = $this->_db->insert('zfbugs', $row);
$this->assertEquals(1, $rowsAffected);
$this->_db->query("SET IDENTITY_INSERT $bugs OFF");
$value = $this->_db->fetchOne("SELECT $bug_id FROM $bugs WHERE $bug_id = 5");
$this->assertEquals(5, $value);
}
public function testAdapterTransactionCommit()
{
$bugs = $this->_db->quoteIdentifier('zfbugs');
$bug_id = $this->_db->quoteIdentifier('bug_id');
// notice the number of rows in connection 2
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(4, $count, 'Expecting to see 4 rows in bugs table (step 1)');
// start an explicit transaction in connection 1
$this->_db->beginTransaction();
// delete a row in connection 1
$rowsAffected = $this->_db->delete(
'zfbugs',
"$bug_id = 1"
);
$this->assertEquals(1, $rowsAffected);
// we should still see all rows in connection 2
// because the DELETE has not been committed yet
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(4, $count, 'Expecting to still see 4 rows in bugs table (step 2); perhaps Adapter is still in autocommit mode?');
// commit the DELETE
$this->_db->commit();
// now we should see one fewer rows in connection 2
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(3, $count, 'Expecting to see 3 rows in bugs table after DELETE (step 3)');
// delete another row in connection 1
$rowsAffected = $this->_db->delete(
'zfbugs',
"$bug_id = 2"
);
$this->assertEquals(1, $rowsAffected);
// we should see results immediately, because
// the db connection returns to auto-commit mode
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(2, $count);
}
public function testAdapterTransactionRollback()
{
$bugs = $this->_db->quoteIdentifier('zfbugs');
$bug_id = $this->_db->quoteIdentifier('bug_id');
// notice the number of rows in connection 2
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(4, $count, 'Expecting to see 4 rows in bugs table (step 1)');
// start an explicit transaction in connection 1
$this->_db->beginTransaction();
// delete a row in connection 1
$rowsAffected = $this->_db->delete(
'zfbugs',
"$bug_id = 1"
);
$this->assertEquals(1, $rowsAffected);
// we should still see all rows in connection 2
// because the DELETE has not been committed yet
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(4, $count, 'Expecting to still see 4 rows in bugs table (step 2); perhaps Adapter is still in autocommit mode?');
// rollback the DELETE
$this->_db->rollback();
// now we should see the same number of rows
// because the DELETE was rolled back
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(4, $count, 'Expecting to still see 4 rows in bugs table after DELETE is rolled back (step 3)');
// delete another row in connection 1
$rowsAffected = $this->_db->delete(
'zfbugs',
"$bug_id = 2"
);
$this->assertEquals(1, $rowsAffected);
// we should see results immediately, because
// the db connection returns to auto-commit mode
$count = $this->_db->fetchOne("SELECT COUNT(*) FROM $bugs");
$this->assertEquals(3, $count, 'Expecting to see 3 rows in bugs table after DELETE (step 4)');
}
/**
* Test the Adapter's insert() method.
* This requires providing an associative array of column=>value pairs.
*/
public function testAdapterInsert()
{
$row = array (
'bug_description' => 'New bug',
'bug_status' => 'NEW',
'created_on' => '2007-04-02',
'updated_on' => '2007-04-02',
'reported_by' => 'micky',
'assigned_to' => 'goofy',
'verified_by' => 'dduck'
);
$rowsAffected = $this->_db->insert('zfbugs', $row);
$this->assertEquals(1, $rowsAffected);
$lastInsertId = $this->_db->lastInsertId();
$this->assertType('integer', $lastInsertId);
$this->assertEquals('5', (string) $lastInsertId,
'Expected new id to be 5');
}
/**
* @group ZF-4099
*/
public function testAdapterLimitWorksWithOrderByClause()
{
// more values
$this->_db->insert('zfproducts', array('product_name' => 'Unix'));
$this->_db->insert('zfproducts', array('product_name' => 'Windows'));
$this->_db->insert('zfproducts', array('product_name' => 'AIX'));
$this->_db->insert('zfproducts', array('product_name' => 'I5'));
$this->_db->insert('zfproducts', array('product_name' => 'Linux'));
$select = $this->_db->select();
$select->from('zfproducts')
->order(array('product_name ASC', 'product_id DESC'))
->limit(4, 4);
$products = $this->_db->fetchAll($select);
$expectedProducts = array(
0 => array('product_id' => '3', 'product_name' => 'OS X'),
1 => array('product_id' => '4', 'product_name' => 'Unix'),
2 => array('product_id' => '5', 'product_name' => 'Windows'),
3 => array ('product_id' => '1', 'product_name' => 'Windows')
);
$this->assertEquals($expectedProducts, $products);
}
/**
* @group ZF-4251
*/
public function testAdapterLimitWorksWithDistinctClause()
{
$this->_db->insert('zfproducts', array('product_name' => 'Unix'));
$this->_db->insert('zfproducts', array('product_name' => 'Windows'));
$this->_db->insert('zfproducts', array('product_name' => 'AIX'));
$this->_db->insert('zfproducts', array('product_name' => 'I5'));
$this->_db->insert('zfproducts', array('product_name' => 'Linux'));
$sql = 'SELECT DISTINCT product_name FROM zfproducts ORDER BY product_name DESC';
$sql = $this->_db->limit($sql, 3, 3);
$products = $this->_db->fetchAll($sql);
$expectedProducts = array(
0 => array('product_name' => 'Linux'),
1 => array('product_name' => 'I5'),
2 => array('product_name' => 'AIX')
);
$this->assertEquals($expectedProducts, $products);
}
/**
* @group ZF-5823
*/
public function testAdapterLimitWithoutOffsetProducesConciseSql()
{
$sql = 'SELECT * FROM foo ORDER BY bar DESC';
$this->assertEquals('SELECT TOP 3 * FROM foo ORDER BY bar DESC', $this->_db->limit($sql, 3));
$sql = 'SELECT DISTINCT * FROM foo ORDER BY bar DESC';
$this->assertEquals('SELECT DISTINCT TOP 3 * FROM foo ORDER BY bar DESC', $this->_db->limit($sql, 3));
}
/**
* @group ZF-7629
*/
public function testAdapterDescribeTableWithSchemaName()
{
$productsTableInfo = $this->_db->describeTable('zfproducts', 'dbo');
$this->assertArrayHasKey('product_id', $productsTableInfo);
$this->assertArrayHasKey('product_name', $productsTableInfo);
}
public function getDriver()
{
return 'Pdo_Mssql';
}
}