mysql; self::$db = new \Query\Drivers\Mysql\Driver("mysql:host={$params->host};dbname={$params->database}", $params->user, $params->pass, array( PDO::ATTR_PERSISTENT => TRUE )); } self::$db->set_table_prefix('create_'); } // -------------------------------------------------------------------------- public function testExists() { $this->assertTrue(in_array('mysql', PDO::getAvailableDrivers())); } // -------------------------------------------------------------------------- public function testConnection() { $this->assertIsA(self::$db, '\\Query\\Drivers\\Mysql\\Driver'); } // -------------------------------------------------------------------------- public function testCreateTable() { self::$db->exec(file_get_contents(QTEST_DIR.'/db_files/mysql.sql')); //Attempt to create the table $sql = self::$db->get_util()->create_table('test', array( 'id' => 'int(10)', 'key' => 'TEXT', 'val' => 'TEXT', ), array( 'id' => 'PRIMARY KEY' ) ); self::$db->query($sql); //Attempt to create the table $sql = self::$db->get_util()->create_table('join', array( 'id' => 'int(10)', 'key' => 'TEXT', 'val' => 'TEXT', ), array( 'id' => 'PRIMARY KEY' ) ); self::$db->query($sql); //Check $dbs = self::$db->get_tables(); $this->assertTrue(in_array('create_test', $dbs)); } // -------------------------------------------------------------------------- public function testTruncate() { self::$db->truncate('test'); self::$db->truncate('join'); } // -------------------------------------------------------------------------- public function testPreparedStatements() { $sql = <<prepare_query($sql, array(1,"boogers", "Gross")); $res = $statement->execute(); $this->assertTrue($res); } // -------------------------------------------------------------------------- public function testBadPreparedStatement() { $sql = <<prepare_query($sql, 'foo'); } catch(InvalidArgumentException $e) { $this->assertTrue(TRUE); } } // -------------------------------------------------------------------------- public function testPrepareExecute() { $sql = <<prepare_execute($sql, array( 2, "works", 'also?' )); $this->assertInstanceOf('PDOStatement', $res); } // -------------------------------------------------------------------------- public function testCommitTransaction() { $res = self::$db->beginTransaction(); $sql = 'INSERT INTO `create_test` (`id`, `key`, `val`) VALUES (10, 12, 14)'; self::$db->query($sql); $res = self::$db->commit(); $this->assertTrue($res); } // -------------------------------------------------------------------------- public function testRollbackTransaction() { $res = self::$db->beginTransaction(); $sql = 'INSERT INTO `create_test` (`id`, `key`, `val`) VALUES (182, 96, 43)'; self::$db->query($sql); $res = self::$db->rollback(); $this->assertTrue($res); } // -------------------------------------------------------------------------- public function testGetSchemas() { $this->assertNull(self::$db->get_schemas()); } // -------------------------------------------------------------------------- public function testGetSequences() { $this->assertNull(self::$db->get_sequences()); } // -------------------------------------------------------------------------- public function testBackup() { $this->assertTrue(is_string(self::$db->get_util()->backup_structure())); } }