-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates_test.go
111 lines (92 loc) · 2.64 KB
/
templates_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
// Copyright (c) 2020 Pieoneers Software Incorporated. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package client_test
import (
"bytes"
"fmt"
"text/template"
)
var templates map[string]*template.Template
func Template(name string, data interface{}) (*bytes.Buffer, error) {
var err error
buf := &bytes.Buffer{}
if t, ok := templates[name]; ok {
err = t.Execute(buf, data)
} else {
err = fmt.Errorf("Template %v was not found", name)
}
return buf, err
}
func InitTemplates() {
errorsDocumentString := `
{
"errors": [
{{range $index, $element := .}}
{{if $index}},{{end}}
{
"title": "{{.Title}}",
"source": {
"pointer": "{{.Source.Pointer}}"
}
}
{{end}}
]
}
`
booksDocumentString := `
{
"data": [
{{range $index, $element := .}}
{{if $index}},{{end}}
{{template "book" $element}}
{{end}}
]
}
`
bookDocumentString := `
{
"data": {{template "book" .}}
}
`
bookPayloadDocumentString := `
{
"data": {
"type": "books",
"attributes": {{template "book-attributes" .}}
}
}
`
bookString := `
{{define "book"}}
{
"type": "books",
"id": "{{.ID}}",
"attributes": {{template "book-attributes" .}}
}
{{end}}
`
bookAttributesString := `
{{define "book-attributes"}}
{
"title": "{{.Title}}",
"year": "{{.Year}}"
}
{{end}}
`
errorsDocumentTemplate := template.Must(template.New("errors").Parse(errorsDocumentString))
booksDocumentTemplate := template.Must(template.New("books-document").Parse(booksDocumentString))
booksDocumentTemplate = template.Must(booksDocumentTemplate.Parse(bookString))
booksDocumentTemplate = template.Must(booksDocumentTemplate.Parse(bookAttributesString))
bookDocumentTemplate := template.Must(template.New("book-document").Parse(bookDocumentString))
bookDocumentTemplate = template.Must(bookDocumentTemplate.Parse(bookString))
bookDocumentTemplate = template.Must(bookDocumentTemplate.Parse(bookAttributesString))
bookPayloadDocumentTemplate := template.Must(template.New("book-payload-document").Parse(bookPayloadDocumentString))
bookPayloadDocumentTemplate = template.Must(bookPayloadDocumentTemplate.Parse(bookAttributesString))
templates = map[string]*template.Template{
"errors": errorsDocumentTemplate,
"books": booksDocumentTemplate,
"book": bookDocumentTemplate,
"book-payload": bookPayloadDocumentTemplate,
}
}