forked from iSoron/uhabits
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
188 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
core/src/commonTest/kotlin/org/isoron/platform/io/DatabaseTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright (C) 2016-2019 Álinson Santos Xavier <[email protected]> | ||
* | ||
* This file is part of Loop Habit Tracker. | ||
* | ||
* Loop Habit Tracker is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation, either version 3 of the License, or (at your | ||
* option) any later version. | ||
* | ||
* Loop Habit Tracker is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.isoron.platform.io | ||
|
||
import kotlin.test.assertEquals | ||
|
||
class DatabaseTest(val db: Database) { | ||
fun testUsage() { | ||
db.setVersion(0) | ||
assertEquals(0, db.getVersion()) | ||
|
||
db.setVersion(23) | ||
assertEquals(23, db.getVersion()) | ||
|
||
var stmt = db.prepareStatement("drop table if exists demo") | ||
stmt.step() | ||
stmt.finalize() | ||
|
||
stmt = db.prepareStatement("create table if not exists demo(key int, value text)") | ||
stmt.step() | ||
stmt.finalize() | ||
|
||
stmt = db.prepareStatement("insert into demo(key, value) values (?, ?)") | ||
stmt.bindInt(0, 42) | ||
stmt.bindText(1, "Hello World") | ||
stmt.step() | ||
stmt.finalize() | ||
|
||
stmt = db.prepareStatement("select * from demo where key > ?") | ||
stmt.bindInt(0, 10) | ||
|
||
var result = stmt.step() | ||
assertEquals(StepResult.ROW, result) | ||
assertEquals(42, stmt.getInt(0)) | ||
assertEquals("Hello World", stmt.getText(1)) | ||
|
||
result = stmt.step() | ||
assertEquals(StepResult.DONE, result) | ||
|
||
stmt.finalize() | ||
db.close() | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
core/src/jsMain/kotlin/org/isoron/platform/io/JsDatabase.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Copyright (C) 2016-2019 Álinson Santos Xavier <[email protected]> | ||
* | ||
* This file is part of Loop Habit Tracker. | ||
* | ||
* Loop Habit Tracker is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation, either version 3 of the License, or (at your | ||
* option) any later version. | ||
* | ||
* Loop Habit Tracker is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.isoron.platform.io | ||
|
||
external fun require(module: String): dynamic | ||
|
||
class JsPreparedStatement(val stmt: dynamic) : PreparedStatement { | ||
|
||
override fun step(): StepResult { | ||
val isRowAvailable = stmt.step() as Boolean | ||
return if(isRowAvailable) StepResult.ROW else StepResult.DONE | ||
} | ||
|
||
override fun finalize() { | ||
} | ||
|
||
override fun getInt(index: Int): Int { | ||
return (stmt.getNumber(index) as Double).toInt() | ||
} | ||
|
||
override fun getLong(index: Int): Long { | ||
return (stmt.getNumber(index) as Double).toLong() | ||
} | ||
|
||
override fun getText(index: Int): String { | ||
return stmt.getString(index) as String | ||
} | ||
|
||
override fun getReal(index: Int): Double { | ||
return stmt.getNumber(index) as Double | ||
} | ||
|
||
override fun bindInt(index: Int, value: Int) { | ||
stmt.bindNumber(value, index + 1) | ||
} | ||
|
||
override fun bindLong(index: Int, value: Long) { | ||
stmt.bindNumber(value, index + 1) | ||
} | ||
|
||
override fun bindText(index: Int, value: String) { | ||
stmt.bindString(value, index + 1) | ||
} | ||
|
||
override fun bindReal(index: Int, value: Double) { | ||
stmt.bindNumber(value, index + 1) | ||
} | ||
|
||
override fun reset() { | ||
stmt.reset() | ||
} | ||
|
||
} | ||
|
||
class JsDatabase(val db: dynamic) : Database { | ||
override fun prepareStatement(sql: String): PreparedStatement { | ||
println(sql) | ||
return JsPreparedStatement(db.prepare(sql)) | ||
} | ||
|
||
override fun close() { | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
core/src/jsTest/kotlin/org/isoron/platform/io/JsDatabaseTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (C) 2016-2019 Álinson Santos Xavier <[email protected]> | ||
* | ||
* This file is part of Loop Habit Tracker. | ||
* | ||
* Loop Habit Tracker is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation, either version 3 of the License, or (at your | ||
* option) any later version. | ||
* | ||
* Loop Habit Tracker is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.isoron.platform.io | ||
|
||
import kotlin.test.* | ||
|
||
class JsDatabaseTest { | ||
@Test | ||
fun testUsage() { | ||
val db = eval("new SQL.Database()") | ||
DatabaseTest(JsDatabase(db)).testUsage() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
var assert = require('assert'); | ||
var coreTest = require('core_test'); | ||
document.coreTest = coreTest | ||
let assert = require('assert'); | ||
let coreTest = require('core_test'); | ||
document.coreTest = coreTest; |