db = new SQLite($path); } // -------------------------------------------------------------------------- public function tearDown() { unset($this->db); } // -------------------------------------------------------------------------- // ! Util Method tests // -------------------------------------------------------------------------- public function testCreateTable() { //Attempt to create the table $sql = $this->db->util->create_table('create_test', array( 'id' => 'INTEGER', 'key' => 'TEXT', 'val' => 'TEXT', ), array( 'id' => 'PRIMARY KEY' ) ); $this->db->query($sql); //Attempt to create the table $sql = $this->db->util->create_table('create_join', array( 'id' => 'INTEGER', 'key' => 'TEXT', 'val' => 'TEXT', ), array( 'id' => 'PRIMARY KEY' ) ); $this->db->query($sql); // A table to delete $sql = $this->db->util->create_table('create_delete', array( 'id' => 'INTEGER', 'key' => 'TEXT', 'val' => 'TEXT', ), array( 'id' => 'PRIMARY KEY' ) ); $this->db->query($sql); //Check $dbs = $this->db->get_tables(); $this->assertTrue(in_array('create_test', $dbs)); } // -------------------------------------------------------------------------- public function testBackupData() { $sql = mb_trim($this->db->util->backup_data()); $sql_array = explode("\n", $sql); $expected = <<assertEqual($expected_array, $sql_array); } // -------------------------------------------------------------------------- public function testBackupStructure() { $sql = mb_trim($this->db->util->backup_structure()); $expected = <<assertEqual($expected_array, $result_array); } // -------------------------------------------------------------------------- public function testDeleteTable() { $sql = $this->db->util->delete_table('create_delete'); $this->db->query($sql); //Check $dbs = $this->db->get_tables(); $this->assertFalse(in_array('create_delete', $dbs)); } // -------------------------------------------------------------------------- // ! General tests // -------------------------------------------------------------------------- public function testConnection() { $this->assertIsA($this->db, 'SQLite'); } // -------------------------------------------------------------------------- public function testGetTables() { $tables = $this->db->get_tables(); $this->assertTrue(is_array($tables)); } // -------------------------------------------------------------------------- public function testGetSystemTables() { $tables = $this->db->get_system_tables(); $this->assertTrue(is_array($tables)); } // -------------------------------------------------------------------------- public function testCreateTransaction() { $res = $this->db->beginTransaction(); $this->assertTrue($res); } // -------------------------------------------------------------------------- public function testTruncate() { $this->db->truncate('create_test'); } // -------------------------------------------------------------------------- public function testPreparedStatements() { $sql = <<db->prepare_query($sql, array(1,"boogers", "Gross")); $statement->execute(); } // -------------------------------------------------------------------------- public function testPrepareExecute() { $sql = <<db->prepare_execute($sql, array( 2, "works", 'also?' )); } // -------------------------------------------------------------------------- public function testCommitTransaction() { $res = $this->db->beginTransaction(); $sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (10, 12, 14)'; $this->db->query($sql); $res = $this->db->commit(); $this->assertTrue($res); } // -------------------------------------------------------------------------- public function testRollbackTransaction() { $this->markTestSkipped(); $res = $this->db->beginTransaction(); $sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (182, 96, 43)'; $this->db->query($sql); $res = $this->db->rollback(); $this->assertTrue($res); } // -------------------------------------------------------------------------- public function testGetDBs() { $this->assertNull($this->db->get_dbs()); } // -------------------------------------------------------------------------- public function testGetSchemas() { $this->assertNull($this->db->get_schemas()); } // -------------------------------------------------------------------------- // ! SQL tests // -------------------------------------------------------------------------- public function testNullMethods() { $sql = $this->db->sql->system_table_list(); $this->assertEqual(NULL, $sql); $sql = $this->db->sql->trigger_list(); $this->assertEqual(NULL, $sql); $sql = $this->db->sql->function_list(); $this->assertEqual(NULL, $sql); $sql = $this->db->sql->procedure_list(); $this->assertEqual(NULL, $sql); $sql = $this->db->sql->sequence_list(); $this->assertEqual(NULL, $sql); } public function testGetTypes() { $this->markTestIncomplete(); } }