-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdecode_test.go
76 lines (61 loc) · 1.34 KB
/
decode_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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package mdcodec
import (
"fmt"
"testing"
)
func ExampleUnmarshal() {
type Person struct {
Name string `md:"title"`
Age int
Address struct {
City string
State string
}
}
md := `# John Doe (Person)
- **Age**: 30
- **Address**:
- **City**: Springfield
- **State**: IL
`
var p Person
Unmarshal(md, &p)
fmt.Printf("Name: %s, Age: %d, City: %s, State: %s", p.Name, p.Age, p.Address.City, p.Address.State)
// Output:
// Name: John Doe, Age: 30, City: Springfield, State: IL
}
func TestUnmarshal(t *testing.T) {
md := `# John Doe (Person)
- **Age**: 30
- **Address**:
- **Street**: 123 Maple St.
- **City**: Springfield
`
var p Person
err := Unmarshal(md, &p)
if err != nil {
t.Fatalf("Error during unmarshal: %v", err)
}
if p.Name != "John Doe" {
t.Errorf("Expected Name 'John Doe', Got %s", p.Name)
}
if p.Age != 30 {
t.Errorf("Expected Age 30, Got %d", p.Age)
}
if p.Address.Street != "123 Maple St." {
t.Errorf("Expected Street '123 Maple St.', Got %s", p.Address.Street)
}
if p.Address.City != "Springfield" {
t.Errorf("Expected City 'Springfield', Got %s", p.Address.City)
}
}
func TestInvalidUnmarshal(t *testing.T) {
md := `# John Doe (Person)
- **Age**: Thirty
`
var p Person
err := Unmarshal(md, &p)
if err == nil {
t.Error("Expected error due to invalid age format, got nil")
}
}