1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
|
<?php
// +----------------------------------------------------------------------+
// | PHP versions 4 and 5 |
// +----------------------------------------------------------------------+
// | Copyright (c) 2008 m3 Media Services Ltd. |
// | All rights reserved. |
// +----------------------------------------------------------------------+
// | MDB2 is a merge of PEAR DB and Metabases that provides a unified DB |
// | API as well as database abstraction for PHP applications. |
// | This LICENSE is in the BSD license style. |
// | |
// | Redistribution and use in source and binary forms, with or without |
// | modification, are permitted provided that the following conditions |
// | are met: |
// | |
// | Redistributions of source code must retain the above copyright |
// | notice, this list of conditions and the following disclaimer. |
// | |
// | Redistributions in binary form must reproduce the above copyright |
// | notice, this list of conditions and the following disclaimer in the |
// | documentation and/or other materials provided with the distribution. |
// | |
// | Neither the name of Manuel Lemos, Tomas V.V.Cox, Stig. S. Bakken, |
// | Lukas Smith nor the names of his contributors may be used to endorse |
// | or promote products derived from this software without specific prior|
// | written permission. |
// | |
// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
// | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
// | REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
// | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
// | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS|
// | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
// | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
// | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY|
// | WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
// | POSSIBILITY OF SUCH DAMAGE. |
// +----------------------------------------------------------------------+
// | Author: Monique Szpak <monique.szpak@openads.org> |
// | Andrew Hill <andrew.hill@openads.org> |
// +----------------------------------------------------------------------+
//
// $Id: InternalsTest.php 328183 2012-10-29 15:10:42Z danielc $
require_once dirname(__DIR__) . '/autoload.inc';
class Standard_InternalsTest extends Standard_Abstract {
public $clear_tables = false;
/**
* Tests that the MDB2::apiVersion() method returns an API version number.
* @dataProvider provider
*/
public function test_apiVersion($ci) {
$this->manualSetUp($ci);
$result = MDB2::apiVersion();
if ('@'.'package_version'.'@' == '2.5.0b5') {
$this->assertEquals('@'.'package_version'.'@', $result);
return;
}
$this->assertNotNull($result, 'apiVersion null: '.$result);
$result = strtok($result, '.');
$this->assertTrue(is_numeric($result), 'apiVersion major: '.$result);
$result = strtok('.');
$this->assertTrue(is_numeric($result), 'apiVersion minor: '.$result);
$result = strtok('.');
$this->assertRegExp('/\d+((b|a|pl|rc)\d+)?/', $result);
}
/**
* Tests that the MDB2::classExists() method correctly tests for
* existence of a class.
* @dataProvider provider
*/
public function test_classExists($ci) {
$this->manualSetUp($ci);
$this->assertFalse(MDB2::classExists('null'), 'classExists');
$this->assertTrue(MDB2::classExists('MDB2'), 'classExists');
}
/**
* Tests that the MDB2::loadClass() method correctly loads classes.
* @dataProvider provider
*/
public function test_loadClass($ci) {
$this->manualSetUp($ci);
$this->assertTrue(MDB2::loadClass('MDB2', false), 'loadClass');
// Suppress handling of PEAR errors while testing next case
$this->db->pushErrorHandling(null);
$result = MDB2::loadClass('null', false);
$this->assertTrue(is_object($result) && is_a($result, 'pear_error'), 'loadClass');
$this->db->popErrorHandling();
}
/**
* Tests that the MDB2::factory() method correctly connects to a
* database.
* @dataProvider provider
*/
public function test_factory($ci) {
$this->manualSetUp($ci);
$db = MDB2::factory($this->dsn);
$this->assertTrue(MDB2::isConnection($db), 'factory');
// Suppress handling of PEAR errors while preparing the
// next test case database connection
$this->db->pushErrorHandling(null);
$db = MDB2::factory(null);
$this->db->popErrorHandling();
$this->assertFalse(MDB2::isConnection($db), 'factory');
}
/**
* Tests that the MDB2::loadFile() method returns the expected
* filename.
* @dataProvider provider
*/
public function test_loadFile($ci) {
$this->manualSetUp($ci);
$filename = 'Extended';
$this->assertEquals('MDB2'.DIRECTORY_SEPARATOR.$filename.'.php', MDB2::loadFile($filename), 'loadFile');
}
/**
* Tests that the MDB2::isConnection() method correctly reports
* connections.
* @dataProvider provider
*/
public function test_isConnection($ci) {
$this->manualSetUp($ci);
$this->assertTrue(MDB2::isConnection($this->db), 'isConnection');
$this->assertFalse(MDB2::isConnection(null), 'isConnection');
}
/**
* Tests that the MDB2::isResult() method correctly identifies
* results.
* @dataProvider provider
*/
public function test_isResult($ci) {
$this->manualSetUp($ci);
$obj = new MDB2_Result();
$this->assertTrue(MDB2::isResult($obj), 'isResult');
$obj = null;
$this->assertFalse(MDB2::isResult($obj), 'isResult');
}
/**
* Tests that the MDB2::isResultCommon() method correctly identifies
* common results.
* @dataProvider provider
*/
public function test_isResultCommon($ci) {
$this->manualSetUp($ci);
$result = null;
$obj = new MDB2_Result_Common($this->db, $result);
$this->assertTrue(MDB2::isResultCommon($obj), 'isResultCommon');
$obj = null;
$this->assertFalse(MDB2::isResultCommon($obj), 'isResultCommon');
}
/**
* Tests that the MDB2::parseDSN() method works.
* @dataProvider provider
*/
public function test_parseDSN($ci) {
$this->manualSetUp($ci);
$dsn = $this->dsn;
$result = MDB2::parseDSN($dsn);
$this->assertEquals($dsn['phptype'],$result['dbsyntax'],'parseDSN');
$dsn = "mydbms://myname:mypassword@localhost";
$result = MDB2::parseDSN($dsn);
$this->assertEquals('mydbms', $result['phptype'],'parseDSN');
$this->assertEquals('mydbms',$result['dbsyntax'],'parseDSN');
$this->assertEquals('tcp',$result['protocol'],'parseDSN');
$this->assertEquals('localhost',$result['hostspec'],'parseDSN');
$this->assertEquals(false,$result['port'],'parseDSN');
$this->assertEquals(false,$result['socket'],'parseDSN');
$this->assertEquals('myname',$result['username'],'parseDSN');
$this->assertEquals('mypassword',$result['password'],'parseDSN');
$this->assertEquals(false,$result['database'],'parseDSN');
$dsn = "somesql://myname:mypassword@localhost:1234/mydb";
$result = MDB2::parseDSN($dsn);
$this->assertEquals('somesql',$result['phptype'],'parseDSN');
$this->assertEquals('somesql',$result['dbsyntax'],'parseDSN');
$this->assertEquals('tcp',$result['protocol'],'parseDSN');
$this->assertEquals('localhost',$result['hostspec'],'parseDSN');
$this->assertEquals('1234',$result['port'],'parseDSN');
$this->assertEquals(false,$result['socket'],'parseDSN');
$this->assertEquals('myname',$result['username'],'parseDSN');
$this->assertEquals('mypassword',$result['password'],'parseDSN');
$this->assertEquals('mydb',$result['database'],'parseDSN');
$dsn = "dbms1://myname@unix(opts)/mydb?param1=value1";
$result = MDB2::parseDSN($dsn);
$this->assertEquals('dbms1',$result['phptype'],'parseDSN');
$this->assertEquals('dbms1',$result['dbsyntax'],'parseDSN');
$this->assertEquals('unix',$result['protocol'],'parseDSN');
$this->assertEquals(false,$result['hostspec'],'parseDSN');
$this->assertEquals(false,$result['port'],'parseDSN');
$this->assertEquals('opts',$result['socket'],'parseDSN');
$this->assertEquals('myname',$result['username'],'parseDSN');
$this->assertEquals(false,$result['password'],'parseDSN');
$this->assertEquals('mydb',$result['database'],'parseDSN');
$this->assertEquals('value1',$result['param1'],'parseDSN');
}
/**
* Tests that the MDB2::fileExists() method correctly identifies
* existing/non-existing files.
* @dataProvider provider
*/
public function test_fileExists($ci) {
$this->manualSetUp($ci);
$this->assertTrue(MDB2::fileExists('PEAR.php'), 'fileExists');
$this->assertFalse(MDB2::fileExists('itIsHopedThatNoOneHasAFileWithThisName.php'), 'fileExists');
}
/**
* Tests that the MDB2::__toString() method returns the expected
* string result.
* @dataProvider provider
*/
public function test__toString($ci) {
$this->manualSetUp($ci);
$expected = "MDB2_Driver_{$this->dsn['phptype']}: (phptype = {$this->dsn['phptype']}, dbsyntax = {$this->db->dbsyntax})";
switch ($this->db->phptype) {
case 'sqlite':
$expected .= ' [connected]';
break;
}
if (version_compare(PHP_VERSION, "5.0.0", "<")) {
$expected = strtolower($expected);
}
$this->assertEquals($expected ,$this->db->__toString(), '__toString');
}
/**
* Tests that the MDB2::setFetchMode() method correctly sets the
* fetch mode.
* @dataProvider provider
*/
public function test_setFetchMode($ci) {
$this->manualSetUp($ci);
$tmp = $this->db->fetchmode;
$this->db->setFetchMode(MDB2_FETCHMODE_OBJECT);
$this->assertEquals('stdClass', $this->db->options['fetch_class'], 'setFetchMode');
$this->db->setFetchMode(MDB2_FETCHMODE_ORDERED);
$this->assertEquals(MDB2_FETCHMODE_ORDERED, $this->db->fetchmode, 'setFetchMode');
$this->db->setFetchMode(MDB2_FETCHMODE_ASSOC);
$this->assertEquals(MDB2_FETCHMODE_ASSOC, $this->db->fetchmode, 'setFetchMode');
$this->db->fetchmode = $tmp;
}
/**
* Tests that the MDB2::escape() method correctly escapes strings.
* @dataProvider provider
*/
public function test_escape($ci) {
$this->manualSetUp($ci);
$text = "xxx'z'xxx";
switch ($this->db->phptype) {
case 'mysql':
case 'mysqli':
$expect = "xxx\'z\'xxx";
break;
default:
$expect = "xxx''z''xxx";
}
$this->assertEquals($expect, $this->db->escape($text), 'escape');
}
/**
* Tests that the MDB2::quoteIdentifier() method correctly quotes strings.
* @dataProvider provider
*/
public function test_quoteIdentifier($ci) {
$this->manualSetUp($ci);
if ($this->db->phptype == 'ibase') {
return;
}
$tmp = $this->db->identifier_quoting;
$this->db->identifier_quoting['start'] = '"';
$this->db->identifier_quoting['end'] = '`';
$this->db->identifier_quoting['escape'] = '/';
$text = 'my`identifier';
$this->assertEquals('"my/`identifier`', $this->db->quoteIdentifier($text), 'quoteIdentifier');
$this->db->identifier_quoting = $tmp;
}
/**
* Tests that the MDB2::getAsKeyword() method correctly returns
* the set "as" keyword.
* @dataProvider provider
*/
public function test_getAsKeyword($ci) {
$this->manualSetUp($ci);
$tmp = $this->db->as_keyword;
$this->db->as_keyword = 'ALIAS';
$this->assertEquals('ALIAS', $this->db->getAsKeyword(), 'getAsKeyword');
$this->db->as_keyword = $tmp;
}
/**
* Tests that the MDB2::getConnection() method correctly returns
* a database resource.
* @dataProvider provider
*/
public function test_getConnection($ci) {
$this->manualSetUp($ci);
$result = $this->db->getConnection();
$this->assertTrue(is_resource($result) || is_object($result), 'getConnection');
}
/**
* A private method to return a defined "row" of data for use
* in the next set of tests.
*
* @access private
* @return array The array of "row" data.
* @dataProvider provider
*/
public function _fetchRowData()
{
return array(
0 => '',
1 => 'notnull',
2 => 'length7 ',
'1?2:3.4' => 'assoc'
);
}
/**
* A private method to test results from the MDB2::_fixResultArrayValues()
* method when the $mode parameter was set to MDB2_PORTABILITY_EMPTY_TO_NULL.
*
* @access private
* @param array $row The result of the call to MDB2::_fixResultArrayValues().
* @dataProvider provider
*/
public function _fixResultArrayValues_Test_EmptyToNull($row)
{
$this->assertNull($row[0], '_fixResultArrayValues');
$this->assertNotNull($row[1], '_fixResultArrayValues');
$this->assertNotNull($row[2], '_fixResultArrayValues');
}
/**
* A private method to test results from the MDB2::_fixResultArrayValues()
* method when the $mode parameter was set to MDB2_PORTABILITY_RTRIM.
*
* @access private
* @param array $row The result of the call to MDB2::_fixResultArrayValues().
* @dataProvider provider
*/
public function _fixResultArrayValues_Test_Rtrim($row)
{
$this->assertEquals(strlen($row[0]), 0, '_fixResultArrayValues');
$this->assertEquals(strlen($row[1]), 7, '_fixResultArrayValues');
$this->assertEquals(strlen($row[2]), 7, '_fixResultArrayValues');
}
/**
* A private method to test results from the MDB2::_fixResultArrayValues()
* method when the $mode parameter was set to MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES.
*
* @access private
* @param array $row The result of the call to MDB2::_fixResultArrayValues().
* @dataProvider provider
*/
public function _fixResultArrayValues_Test_FixAssocFieldNames($row)
{
$this->assertTrue(array_key_exists(4, $row), '_fixResultArrayValues');
$this->assertTrue($row[4] == 'assoc', '_fixResultArrayValues');
}
/**
* Tests that the MDB2::_fixResultArrayValues() method fixes array
* values when used with various $mode parameters.
* @dataProvider provider
*/
public function test__fixResultArrayValues($ci) {
$this->manualSetUp($ci);
$mode = MDB2_PORTABILITY_EMPTY_TO_NULL;
$row = $this->_fetchRowData();
$this->db->_fixResultArrayValues($row, $mode);
$this->_fixResultArrayValues_Test_EmptyToNull($row);
$mode = MDB2_PORTABILITY_RTRIM;
$row = $this->_fetchRowData();
$this->db->_fixResultArrayValues($row, $mode);
$this->_fixResultArrayValues_Test_Rtrim($row);
$mode = MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES;
$row = $this->_fetchRowData();
$this->db->_fixResultArrayValues($row, $mode);
$this->_fixResultArrayValues_Test_FixAssocFieldNames($row);
$mode = MDB2_PORTABILITY_EMPTY_TO_NULL + MDB2_PORTABILITY_RTRIM;
$row = $this->_fetchRowData();
$this->db->_fixResultArrayValues($row, $mode);
$this->_fixResultArrayValues_Test_EmptyToNull($row);
$this->_fixResultArrayValues_Test_Rtrim($row);
$mode = MDB2_PORTABILITY_EMPTY_TO_NULL + MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES;
$row = $this->_fetchRowData();
$this->db->_fixResultArrayValues($row, $mode);
$this->_fixResultArrayValues_Test_EmptyToNull($row);
$this->_fixResultArrayValues_Test_FixAssocFieldNames($row);
$mode = MDB2_PORTABILITY_RTRIM + MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES;
$row = $this->_fetchRowData();
$this->db->_fixResultArrayValues($row, $mode);
$this->_fixResultArrayValues_Test_Rtrim($row);
$this->_fixResultArrayValues_Test_FixAssocFieldNames($row);
$mode = MDB2_PORTABILITY_EMPTY_TO_NULL + MDB2_PORTABILITY_RTRIM + MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES;
$row = $this->_fetchRowData();
$this->db->_fixResultArrayValues($row, $mode);
$this->_fixResultArrayValues_Test_EmptyToNull($row);
$this->_fixResultArrayValues_Test_Rtrim($row);
$this->_fixResultArrayValues_Test_FixAssocFieldNames($row);
}
/**
* Tests that the MDB2::transaction() method returns expected values
* when starting or rolling back a transaction, and for testing if
* the connection is in a transaction.
* @dataProvider provider
*/
public function test_transaction($ci) {
$this->manualSetUp($ci);
if (!$this->db->supports('transactions'))
{
$this->assertTrue($this->db->beginTransaction(), 'transaction');
$this->assertTrue($this->db->in_transaction, 'transaction');
$this->assertTrue($this->db->rollback(), 'transaction');
$this->assertFalse($this->db->in_transaction, 'transaction');
$this->assertTrue($this->db->beginTransaction(), 'transaction');
$this->assertTrue($this->db->in_transaction, 'transaction');
$this->assertTrue($this->db->commit(), 'transaction');
$this->assertFalse($this->db->in_transaction, 'transaction');
}
}
// Nested transactions are not yet tested, due to a MySQL 5 problem with
// savepoints causing netsted transactions to fail.
//
// See http://bugs.mysql.com/bug.php?id=26288
/**
* Tests that the MDB2::setDatabase() and MDB2::getDatabase() methods
* correctly set and get the database name.
* @dataProvider provider
*/
public function test_setGetDatabase($ci) {
$this->manualSetUp($ci);
$old_name = $this->db->database_name;
$this->assertEquals($old_name, $this->db->setDatabase('test_database'), 'setDatabase');
$this->assertEquals('test_database', $this->db->database_name, 'setDatabase');
$this->assertEquals('test_database', $this->db->getDatabase(), 'getDatabase');
$this->db->database_name = $old_name;
}
/**
* Tests that the MDB2::setDSN() method correctly sets the DSN.
* @dataProvider provider
*/
public function test_setDSN($ci) {
$this->manualSetUp($ci);
$dsn = "mydbms://myname:mypassword@localhost";
$result = $this->db->setDSN($dsn);
$dsn_set = $this->db->dsn;
$this->assertEquals('mydbms', $dsn_set['phptype'],'setDSN');
$this->assertEquals('mydbms',$dsn_set['dbsyntax'],'setDSN');
$this->assertEquals('tcp',$dsn_set['protocol'],'setDSN');
$this->assertEquals('localhost',$dsn_set['hostspec'],'setDSN');
$this->assertEquals(false,$dsn_set['port'],'setDSN');
$this->assertEquals(false,$dsn_set['socket'],'setDSN');
$this->assertEquals('myname',$dsn_set['username'],'setDSN');
$this->assertEquals('mypassword',$dsn_set['password'],'setDSN');
$this->assertEquals(false,$dsn_set['database'],'setDSN');
}
/**
* Tests that the MDB2::getDSN() method correctly gets the DSN.
* @dataProvider provider
*/
public function test_getDSN($ci) {
$this->manualSetUp($ci);
$dsn_set = "mydbms://myname:mypassword@localhost";
$result = $this->db->setDSN($dsn_set);
$dsn_get = $this->db->getDSN();
$dsn_rex = "/(([\w]+)\(mydbms\):\/\/myname:mypassword@localhost\/)/";
//preg_match($dsn_rex, $dsn_get, $matches);
$this->assertRegExp($dsn_rex, $dsn_get, 'testGetDSN');
$dsn_rex = "/{$this->dsn['phptype']}[\w\W]+/";
$this->assertRegExp($dsn_rex, $dsn_get, 'testGetDSN');
$dsn_set = "mydbms://myname:mypassword@localhost";
$result = $this->db->setDSN($dsn_set);
$dsn_get = $this->db->getDSN('string', true);
$dsn_rex = "/(([\w]+)\(mydbms\):\/\/myname:1@localhost\/)/";
$this->assertRegExp($dsn_rex, $dsn_get, 'testGetDSN');
$dsn_rex = "/{$this->dsn['phptype']}[\w\W]+/";
$this->assertRegExp($dsn_rex, $dsn_get, 'testGetDSN');
}
/**
* Tests that the 'new_link' DSN option is read correctly
* @dataProvider provider
*/
public function test_isNewLinkSet($ci) {
$this->manualSetUp($ci);
$dsn = array(
'phptype' => 'mydbms',
'host' => 'localhost',
'database' => 'dbname',
'username' => 'myname',
'password' => 'mypassword',
);
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
$dsn['new_link'] = true;
$this->db->setDSN($dsn);
$this->assertTrue($this->db->_isNewLinkSet());
$dsn['new_link'] = false;
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
$dsn['new_link'] = 'true';
$this->db->setDSN($dsn);
$this->assertTrue($this->db->_isNewLinkSet());
$dsn['new_link'] = 'false';
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
$dsn['new_link'] = 1;
$this->db->setDSN($dsn);
$this->assertTrue($this->db->_isNewLinkSet());
$dsn['new_link'] = 0;
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
$dsn['new_link'] = '1';
$this->db->setDSN($dsn);
$this->assertTrue($this->db->_isNewLinkSet());
$dsn['new_link'] = '0';
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
$dsn['new_link'] = 'True';
$this->db->setDSN($dsn);
$this->assertTrue($this->db->_isNewLinkSet());
$dsn['new_link'] = 'TRUE';
$this->db->setDSN($dsn);
$this->assertTrue($this->db->_isNewLinkSet());
//now test some invalid values...
$dsn['new_link'] = new StdClass;
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
$dsn['new_link'] = '';
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
$dsn['new_link'] = 'blah';
$this->db->setDSN($dsn);
$this->assertFalse($this->db->_isNewLinkSet());
}
/**
* Tests that the MDB2::setLimit() method correctly sets the limit
* and offset values.
* @dataProvider provider
*/
public function test_setLimit($ci) {
$this->manualSetUp($ci);
if (!$this->db->supports('limit_queries'))
{
$this->db->limit = null;
$this->db->offset = null;
$this->db->setLimit(100, 50);
$this->assertEquals(100, $this->db->limit , 'setLimit');
$this->assertEquals( 50, $this->db->offset, 'setLimit');
}
}
/**
* Tests that the MDB2::supports() method correctly finds keys
* in the "supports" array.
* @dataProvider provider
*/
public function test_supports($ci) {
$this->manualSetUp($ci);
$this->db->supported['testkey'] = true;
$this->assertTrue($this->db->supports('testkey'), 'supports');
unset($this->db->supported['testkey']);
}
/**
* Tests that the MDB2::getSequenceName() method correctly gets
* sequence names.
* @dataProvider provider
*/
public function test_getSequenceName($ci) {
$this->manualSetUp($ci);
$tmp = $this->db->options['seqname_format'];
$this->db->options['seqname_format'] = '%s_seq';
$this->assertEquals('test_seq', strtolower($this->db->getSequenceName('test')), 'getSequenceName');
$this->db->options['seqname_format'] = $tmp;
}
/**
* Tests that the MDB2::getIndexName() method correctly gets index names.
* @dataProvider provider
*/
public function test_getIndexName($ci) {
$this->manualSetUp($ci);
$tmp = $this->db->options['idxname_format'];
$this->db->options['idxname_format'] = 'idx_%s';
$this->assertEquals('idx_test', $this->db->getIndexName('test'), 'getIndexName');
$this->db->options['idxname_format'] = $tmp;
}
/**
* Tests that the MDB2::disconnect() method correctly disconnects.
* @dataProvider provider
*/
public function test_disconnect($ci) {
$this->manualSetUp($ci);
$this->db->connect();
$this->assertTrue($this->db->disconnect(), 'disconnect');
$this->assertEquals(0, $this->db->connection, 'disconnect');
$this->assertEquals(array(), $this->db->connected_dsn, 'disconnect');
$this->assertEquals('', $this->db->connected_database_name, 'disconnect');
$this->assertNull($this->db->opened_persistent, 'disconnect');
$this->assertEquals('', $this->db->connected_server_info, 'disconnect');
$this->assertNull($this->db->in_transaction, 'disconnect');
$this->assertNull($this->db->nested_transaction_counter, 'disconnect');
}
/**
* Test that the MDB2::_skipDelimitedStrings() method correctly recognizes
* parameter placeholders from quoted strings
* @dataProvider provider
*/
public function test_skipDelimitedStrings($ci) {
$this->manualSetUp($ci);
$query = "UPDATE tbl SET fld='' WHERE fld2=:param AND fld3=':fakeparam' AND fld3=:param2";
$this->assertEquals(0, $this->db->_skipDelimitedStrings($query, 0, 0));
$this->assertEquals(18, $this->db->_skipDelimitedStrings($query, 18, 19));
$this->assertEquals(20, $this->db->_skipDelimitedStrings($query, 20, 20));
$this->assertEquals(21, $this->db->_skipDelimitedStrings($query, 19, 21));
$this->assertEquals(30, $this->db->_skipDelimitedStrings($query, 30, 33));
$this->assertEquals(30, $this->db->_skipDelimitedStrings($query, 30, 34));
$this->assertEquals(33, $this->db->_skipDelimitedStrings($query, 33, 33));
$this->assertEquals(50, $this->db->_skipDelimitedStrings($query, 50, 50));
$this->assertEquals(61, $this->db->_skipDelimitedStrings($query, 49, 51));
$this->assertEquals(52, $this->db->_skipDelimitedStrings($query, 52, 52));
$this->assertEquals(70, $this->db->_skipDelimitedStrings($query, 70, 72));
$this->assertEquals(71, $this->db->_skipDelimitedStrings($query, 71, 72));
$this->assertEquals(72, $this->db->_skipDelimitedStrings($query, 72, 72));
//be careful about SQL comments that are not comments (because within quotes)
$query = "UPDATE tbl SET fld='--some text' WHERE col2=?";
$this->assertEquals(0, $this->db->_skipDelimitedStrings($query, 0, 0));
$this->assertEquals(18, $this->db->_skipDelimitedStrings($query, 18, 19));
$this->assertEquals(20, $this->db->_skipDelimitedStrings($query, 20, 20));
$this->assertEquals(32, $this->db->_skipDelimitedStrings($query, 19, 21));
}
/**
* Double check that errors are a MDB2_Error
* @see http://pear.php.net/bugs/bug.php?id=19677
* @dataProvider provider
*/
public function testMDB2_Error($ci) {
$this->manualSetUp($ci);
$result = $this->db->query("GOTTA FAIL");
if (!MDB2::isError($result)) {
$this->fail("What!? That should have been a MDB2 error.");
}
}
/**
* Double check that errors are a PEAR_Error
* @see http://pear.php.net/bugs/bug.php?id=19677
* @depends testMDB2_Error
* @dataProvider provider
*/
public function testPEAR_Error($ci) {
$this->manualSetUp($ci);
$result = $this->db->query("GOTTA FAIL");
if (!@PEAR::isError($result)) {
$this->fail("What!? That should have been a PEAR error.");
}
}
/**
* Call to undefined function: MDB2_Driver_Common::isError()
* @see http://pear.php.net/bugs/bug.php?id=19677
* @depends testMDB2_Error
* @dataProvider provider
* @expectedException PHPUnit_Framework_Error
* @expectedExceptionMessage isError() is deprecated, use MDB2::isError()
*/
public function testDriverIsError_object($ci) {
$this->manualSetUp($ci);
$result = $this->db->query("GOTTA FAIL");
// Problem raised in bug 19677.
if (!$this->db->isError($result)) {
$this->fail("What!? That should have been an OOP error.");
}
}
/**
* Call to undefined function: MDB2_Driver_Common::isError()
* @see http://pear.php.net/bugs/bug.php?id=19677
* @depends testMDB2_Error
* @dataProvider provider
* @expectedException PHPUnit_Framework_Error
* @expectedExceptionMessage isError() is deprecated, use MDB2::isError()
*/
public function testDriverIsError_static($ci) {
$this->manualSetUp($ci);
$result = $this->db->query("GOTTA FAIL");
// Cover this scenario too.
$class = get_class($this->db);
if (!$class::isError($result)) {
$this->fail("What!? That should have been a static error.");
}
}
/**
* Parameter missing for MDB2_Driver_Common::isError()
* @see http://pear.php.net/bugs/bug.php?id=19677
* @depends testMDB2_Error
* @dataProvider provider
* @expectedException PHPUnit_Framework_Error
* @expectedExceptionMessage isError() is deprecated, use MDB2::isError()
* @expectedExceptionMessage Missing argument 1
*/
public function testDriverIsError_object_param_missing($ci) {
$this->manualSetUp($ci);
if (!$this->db->isError()) {
$this->fail("What!? That should have been an OOP error.");
}
}
/**
* Parameter missing for MDB2_Driver_Common::isError()
* @see http://pear.php.net/bugs/bug.php?id=19677
* @depends testMDB2_Error
* @dataProvider provider
* @expectedException PHPUnit_Framework_Error
* @expectedExceptionMessage isError() is deprecated, use MDB2::isError()
* @expectedExceptionMessage Missing argument 1
*/
public function testDriverIsError_static_param_missing($ci) {
$this->manualSetUp($ci);
$class = get_class($this->db);
if (!$class::isError()) {
$this->fail("What!? That should have been a static error.");
}
}
/**
* Call to undefined function: MDB2_Driver_common::unknownfunction
* @see http://pear.php.net/bugs/bug.php?id=19677
* @depends testMDB2_Error
* @dataProvider provider
* @expectedException PHPUnit_Framework_Error
* @expectedExceptionMessage Call to undefined function
*/
public function testDriverIsError_object_unknown($ci) {
$this->manualSetUp($ci);
$result = $this->db->unkownfunction();
}
/**
* Call to undefined function: MDB2_Driver_common::unknownfunction
* @see http://pear.php.net/bugs/bug.php?id=19677
* @depends testMDB2_Error
* @dataProvider provider
* @expectedException PHPUnit_Framework_Error
* @expectedExceptionMessage Call to undefined function
*/
public function testDriverIsError_static_unknown($ci) {
$this->manualSetUp($ci);
$class = get_class($this->db);
$class::unknownfunction();
}
}
|