-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add json serialization support for SolanaPublicKey
- Loading branch information
1 parent
0934d1d
commit 9349209
Showing
2 changed files
with
84 additions
and
4 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
73 changes: 73 additions & 0 deletions
73
solana/src/commonTest/kotlin/com/solana/serialization/SolanaPublicKeySerializerTests.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,73 @@ | ||
package com.solana.serialization | ||
|
||
import com.funkatronics.kborsh.Borsh | ||
import com.solana.publickey.SolanaPublicKey | ||
import com.solana.publickey.SolanaPublicKeySerializer | ||
import kotlinx.serialization.Serializable | ||
import kotlinx.serialization.json.Json | ||
import kotlin.test.Test | ||
import kotlin.test.assertContentEquals | ||
import kotlin.test.assertEquals | ||
|
||
class SolanaPublicKeySerializerTests { | ||
|
||
@Test | ||
fun `Json serializes as base58 string`() { | ||
// given | ||
val publicKeyBase58 = "11111111111111111111111111111111" | ||
val publicKey = SolanaPublicKey.from(publicKeyBase58) | ||
|
||
// when | ||
val serialized = Json.encodeToString(SolanaPublicKeySerializer, publicKey) | ||
|
||
// then | ||
assertEquals("\"$publicKeyBase58\"", serialized) | ||
} | ||
|
||
@Test | ||
fun `Json deserializes from base58 string`() { | ||
// given | ||
@Serializable | ||
data class TestStruct(val owner: SolanaPublicKey) | ||
|
||
val publicKeyBase58 = "11111111111111111111111111111111" | ||
val publicKey = SolanaPublicKey.from(publicKeyBase58) | ||
val json = """ | ||
{ | ||
"owner": "$publicKeyBase58" | ||
} | ||
""".trimIndent() | ||
|
||
// when | ||
val deserialzed = Json.decodeFromString<TestStruct>(json) | ||
|
||
// then | ||
assertEquals(publicKey, deserialzed.owner) | ||
} | ||
|
||
@Test | ||
fun `Borsh serializes as base58 string`() { | ||
// given | ||
val publicKeyBase58 = "11111111111111111111111111111111" | ||
val publicKey = SolanaPublicKey.from(publicKeyBase58) | ||
|
||
// when | ||
val serialized = Borsh.encodeToByteArray(SolanaPublicKeySerializer, publicKey) | ||
|
||
// then | ||
assertContentEquals(publicKey.bytes, serialized) | ||
} | ||
|
||
@Test | ||
fun `Borsh deserializes from base58 string`() { | ||
// given | ||
val publicKeyBase58 = "11111111111111111111111111111111" | ||
val publicKey = SolanaPublicKey.from(publicKeyBase58) | ||
|
||
// when | ||
val deserialzed = Borsh.decodeFromByteArray(SolanaPublicKeySerializer, publicKey.bytes) | ||
|
||
// then | ||
assertEquals(publicKey, deserialzed) | ||
} | ||
} |