-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource_test.go
146 lines (107 loc) · 1.92 KB
/
resource_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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package resource
import (
"fmt"
"log"
"net/http"
"net/http/httptest"
"testing"
)
//
// Test
//
func TestResource(t *testing.T) {
a := A{
Name: "Testing",
X: X{Test: "Tested"},
Bs: BList{B{Name: "Started"}},
}
resource := NewResource(a, "recurso")
server := NewServer()
err := server.Add(resource)
if err != nil {
log.Println(err)
}
//server.BuildRoutes()
fmt.Println("\n1 ----------\n")
printResource(resource, 0)
fmt.Println("\n2 ----------\n")
printRoute(server.Route, 0)
fmt.Println("\n3 ----------\n")
res := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/recurso/bs/123", nil)
server.ServeHTTP(res, req)
fmt.Printf("RETURN: %v\n", res.Body)
fmt.Println("\nEND --------\n")
}
//
// Resources used in test
//
type A struct {
Id string
Name string
Bs BList "Tag de Bs"
X
//C C // conflit, name 'c' already used
}
type BList []B
func (b *BList) Init(c *C, d D) {
log.Println("*** BList Received", d)
}
func (b *BList) GET() *BList {
return b
}
type B struct {
Id int
Name string
//d D
//Cs CList "Tag de C"
}
func (b *B) Init(id ID) *B {
log.Println("*** ID Received", id)
b.Name = id.String()
b.Id, _ = id.Int()
return b
}
func (b *B) GET(id ID) *B {
return b
}
func (b *B) PUT() {}
type C struct {
Nothing string
}
func (c *C) Init() {
c.Nothing = "Initialized ok"
//log.Println("*** C Received", d)
}
type CList []B
func (c *CList) Init(id ID) {
log.Println("*** CList Received ID:", id)
}
func (c *CList) GET() *CList {
return c
}
//func (c *C) PUT(d *D) {}
type X struct {
Test string
Gogo int
C C
}
//func (b *X) PUT() {}
func (a *A) Init(b BList) *A {
return &A{}
}
func (a *A) GET(x A, i *BList) *A {
return a
}
func (a *A) doSomething() {}
type InterfaceA interface {
doSomething()
}
type D struct {
Test string
}
func (d *D) Init() {
d.Test = "TESTED"
}
// Set the value passed by user on creation
//ptrValue.Elem().Set(value)