summaryrefslogtreecommitdiff
path: root/src/commonTest/kotlin/net/taler/wallet/kotlin/WalletApiTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/commonTest/kotlin/net/taler/wallet/kotlin/WalletApiTest.kt')
-rw-r--r--src/commonTest/kotlin/net/taler/wallet/kotlin/WalletApiTest.kt46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/commonTest/kotlin/net/taler/wallet/kotlin/WalletApiTest.kt b/src/commonTest/kotlin/net/taler/wallet/kotlin/WalletApiTest.kt
new file mode 100644
index 0000000..9498792
--- /dev/null
+++ b/src/commonTest/kotlin/net/taler/wallet/kotlin/WalletApiTest.kt
@@ -0,0 +1,46 @@
+/*
+ * This file is part of GNU Taler
+ * (C) 2020 Taler Systems S.A.
+ *
+ * GNU Taler 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, or (at your option) any later version.
+ *
+ * GNU Taler 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
+ * GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ */
+
+package net.taler.wallet.kotlin
+
+import kotlin.test.Ignore
+import kotlin.test.Test
+import kotlin.test.assertEquals
+
+@Ignore // Live-Test
+class WalletApiTest {
+
+ private val api = WalletApi()
+
+ @Test
+ fun testGetVersions() {
+ api.getVersions()
+ }
+
+ @Test
+ fun testGetWithdrawalDetails() = runCoroutine {
+ val detailsForUri =
+ api.getWithdrawalDetailsForUri("taler://withdraw/bank.test.taler.net/8adabbf8-fe61-4d31-a2d1-89350b5be8fa")
+ assertEquals(Amount("TESTKUDOS", 5, 0), detailsForUri.amount)
+ assertEquals("https://exchange.test.taler.net/", detailsForUri.defaultExchangeBaseUrl)
+
+ val detailsForAmount =
+ api.getWithdrawalDetailsForAmount(detailsForUri.defaultExchangeBaseUrl!!, detailsForUri.amount)
+ assertEquals(Amount("TESTKUDOS", 5, 0), detailsForAmount.amountRaw)
+ assertEquals(Amount("TESTKUDOS", 4, 80000000), detailsForAmount.amountEffective)
+ }
+
+}