PhoneGap-SQLitePlugin-Android/test-www/index.html

116 lines
3.8 KiB
HTML
Raw Normal View History

2012-05-05 11:06:30 -04:00
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>SQLitePlugin test</title>
<link rel="stylesheet" href="lib/qunit-1.5.0.css" />
2012-05-05 11:06:30 -04:00
<script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
2012-05-05 11:06:30 -04:00
<script type="text/javascript" charset="utf-8" src="SQLitePlugin.js"></script>
<script type="text/javascript" charset="utf-8" src="lib/qunit-1.5.0.js"></script>
2012-05-05 11:06:30 -04:00
<script>
2012-05-05 17:18:06 -04:00
document.addEventListener("deviceready", doTest, false);
2012-05-05 11:06:30 -04:00
2012-05-05 17:18:06 -04:00
function doTest() {
test( "db transaction test", function() {
2012-05-05 11:27:18 -04:00
var db = window.sqlitePlugin.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
2012-05-05 11:06:30 -04:00
2012-05-05 11:27:18 -04:00
ok(!!db, "db object");
2012-05-05 17:52:49 -04:00
stop(9);
2012-05-05 11:27:18 -04:00
db.transaction(function(tx) {
2012-05-05 11:27:18 -04:00
start(1);
ok(!!tx, "tx object");
2012-05-05 11:27:18 -04:00
tx.executeSql('DROP TABLE IF EXISTS test_table');
tx.executeSql('CREATE TABLE IF NOT EXISTS test_table (id integer primary key, data text, data_num integer)');
2012-05-05 11:06:30 -04:00
2012-05-05 11:27:18 -04:00
tx.executeSql("INSERT INTO test_table (data, data_num) VALUES (?,?)", ["test", 100], function(tx, res) {
start(1);
ok(!!tx, "tx object");
ok(!!res, "res object");
2012-05-05 11:27:18 -04:00
console.log("insertId: " + res.insertId + " -- probably 1");
console.log("rowsAffected: " + res.rowsAffected + " -- should be 1");
ok(!!res.insertId, "Valid res.insertId"); /* issue #18 (Android) */
equal(res.rowsAffected, 1, "res rows affected"); /* #18 and/or #22 (Android) */
2012-05-05 11:27:18 -04:00
db.transaction(function(tx) {
start(1);
ok(!!tx, "second tx object");
2012-05-05 17:52:49 -04:00
tx.executeSql("SELECT count(id) as cnt from test_table;", [], function(tx, res) {
start(1);
2012-05-05 11:27:18 -04:00
console.log("res.rows.length: " + res.rows.length + " -- should be 1");
console.log("res.rows.item(0).cnt: " + res.rows.item(0).cnt + " -- should be 1");
equal(res.rows.length, 1, "res rows length");
equal(res.rows.item(0).cnt, 1, "select count");
2012-05-05 11:27:18 -04:00
});
2012-05-05 17:52:49 -04:00
tx.executeSql("SELECT data_num from test_table;", [], function(tx, res) {
start(1);
equal(res.rows.length, 1, "SELECT res rows length");
equal(res.rows.item(0).data_num, 100, "SELECT data_num");
});
tx.executeSql("UPDATE test_table SET data_num = ? WHERE data_num = 100", [101], function(tx, res) {
start(1);
console.log("UPDATE rowsAffected: " + res.rowsAffected + " -- should be 1");
equal(res.rowsAffected, 1, "UPDATE res rows affected"); /* issue #22 (Android) */
});
2012-05-05 17:52:49 -04:00
tx.executeSql("SELECT data_num from test_table;", [], function(tx, res) {
start(1);
equal(res.rows.length, 1, "SELECT res rows length");
equal(res.rows.item(0).data_num, 101, "SELECT data_num");
});
tx.executeSql("DELETE FROM test_table WHERE data LIKE 'tes%'", [], function(tx, res) {
start(1);
console.log("DELETE rowsAffected: " + res.rowsAffected + " -- should be 1");
equal(res.rowsAffected, 1, "DELETE res rows affected"); /* issue #22 (Android) */
});
2012-05-05 17:52:49 -04:00
tx.executeSql("SELECT data_num from test_table;", [], function(tx, res) {
start(1);
equal(res.rows.length, 0, "SELECT res rows length");
});
2012-05-05 11:06:30 -04:00
});
2012-05-05 11:27:18 -04:00
}, function(e) {
console.log("ERROR: " + e.message);
});
2012-05-05 11:06:30 -04:00
});
});
2012-05-05 11:06:30 -04:00
}
</script>
</head>
<body>
<div id="qunit"></div>
2012-05-05 11:06:30 -04:00
</body>
</html>