-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_test.go
51 lines (46 loc) · 1.2 KB
/
raw_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package pocketic
import (
"bytes"
"encoding/json"
"testing"
"github.com/aviate-labs/agent-go/principal"
)
var (
LEDGER_PRINCIPAL = principal.MustDecode("ryjl3-tyaaa-aaaaa-aaaba-cai")
)
func TestBase64EncodedBlob(t *testing.T) {
blob := Base64EncodedBlob("Hello, there!")
jsonEncoded, err := json.Marshal(blob)
if err != nil {
t.Fatal(err)
}
if string(jsonEncoded) != `"SGVsbG8sIHRoZXJlIQ=="` {
t.Errorf("unexpected JSON encoding: %s", jsonEncoded)
}
var decoded Base64EncodedBlob
if err := json.Unmarshal(jsonEncoded, &decoded); err != nil {
t.Fatal(err)
}
if string(decoded) != "Hello, there!" {
t.Errorf("unexpected JSON decoding: %s", decoded)
}
}
func TestRawCanisterID(t *testing.T) {
canisterID := RawCanisterID{
CanisterID: LEDGER_PRINCIPAL.Raw,
}
jsonEncoded, err := json.Marshal(canisterID)
if err != nil {
t.Fatal(err)
}
if string(jsonEncoded) != `{"canister_id":"AAAAAAAAAAIBAQ=="}` {
t.Errorf("unexpected JSON encoding: %s", jsonEncoded)
}
var decoded RawCanisterID
if err := json.Unmarshal(jsonEncoded, &decoded); err != nil {
t.Fatal(err)
}
if !bytes.Equal(decoded.CanisterID, LEDGER_PRINCIPAL.Raw) {
t.Errorf("unexpected JSON decoding: %s", decoded.CanisterID)
}
}