forked from steinfletcher/apitest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
diagram.go
276 lines (241 loc) · 6.43 KB
/
diagram.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
package apitest
import (
"bytes"
"encoding/json"
"errors"
"fmt"
htmlTemplate "html/template"
"io"
"io/ioutil"
"net/http"
"net/http/httputil"
"os"
"path/filepath"
"strconv"
"time"
)
type (
htmlTemplateModel struct {
Title string
SubTitle string
StatusCode int
BadgeClass string
LogEntries []logEntry
WebSequenceDSL string
MetaJSON htmlTemplate.JS
}
logEntry struct {
Header string
Body string
Timestamp time.Time
}
// SequenceDiagramFormatter implementation of a ReportFormatter
SequenceDiagramFormatter struct {
storagePath string
fs fileSystem
}
fileSystem interface {
create(name string) (*os.File, error)
mkdirAll(path string, perm os.FileMode) error
}
osFileSystem struct{}
webSequenceDiagramDSL struct {
data bytes.Buffer
count int
}
)
func (r *osFileSystem) create(name string) (*os.File, error) {
return os.Create(name)
}
func (r *osFileSystem) mkdirAll(path string, perm os.FileMode) error {
return os.MkdirAll(path, perm)
}
func (r *webSequenceDiagramDSL) addRequestRow(source string, target string, description string) {
r.addRow("->", source, target, description)
}
func (r *webSequenceDiagramDSL) addResponseRow(source string, target string, description string) {
r.addRow("->>", source, target, description)
}
func (r *webSequenceDiagramDSL) addRow(operation, source string, target string, description string) {
r.count++
r.data.WriteString(fmt.Sprintf("%s%s%s: (%d) %s\n",
source,
operation,
target,
r.count,
description))
}
func (r *webSequenceDiagramDSL) toString() string {
return r.data.String()
}
// Format formats the events received by the recorder
func (r *SequenceDiagramFormatter) Format(recorder *Recorder) {
output, err := newHTMLTemplateModel(recorder)
if err != nil {
panic(err)
}
tmpl, err := htmlTemplate.New("sequenceDiagram").
Funcs(*templateFunc).
Parse(reportTemplate)
if err != nil {
panic(err)
}
var out bytes.Buffer
err = tmpl.Execute(&out, output)
if err != nil {
panic(err)
}
fileName := fmt.Sprintf("%s.html", recorder.Meta["hash"])
err = r.fs.mkdirAll(r.storagePath, os.ModePerm)
if err != nil {
panic(err)
}
saveFilesTo := fmt.Sprintf("%s/%s", r.storagePath, fileName)
f, err := r.fs.create(saveFilesTo)
if err != nil {
panic(err)
}
s, _ := filepath.Abs(saveFilesTo)
_, err = f.WriteString(out.String())
if err != nil {
panic(err)
}
fmt.Printf("Created sequence diagram (%s): %s\n", fileName, filepath.FromSlash(s))
}
// SequenceDiagram produce a sequence diagram at the given path or .sequence by default
func SequenceDiagram(path ...string) *SequenceDiagramFormatter {
var storagePath string
if len(path) == 0 {
storagePath = ".sequence"
} else {
storagePath = path[0]
}
return &SequenceDiagramFormatter{storagePath: storagePath, fs: &osFileSystem{}}
}
var templateFunc = &htmlTemplate.FuncMap{
"inc": func(i int) int {
return i + 1
},
}
func formatDiagramRequest(req *http.Request) string {
out := req.URL.Path
if req.URL.RawQuery != "" {
out = fmt.Sprintf("%s %s?%s", req.Method, out, req.URL.RawQuery)
}
if len(out) > 65 {
return fmt.Sprintf("%s...", out[:65])
}
return out
}
func badgeCSSClass(status int) string {
class := "badge badge-success"
if status >= 400 && status < 500 {
class = "badge badge-warning"
} else if status >= 500 {
class = "badge badge-danger"
}
return class
}
func newHTMLTemplateModel(r *Recorder) (htmlTemplateModel, error) {
if len(r.Events) == 0 {
return htmlTemplateModel{}, errors.New("no events are defined")
}
var logs []logEntry
webSequenceDiagram := &webSequenceDiagramDSL{}
for _, event := range r.Events {
switch v := event.(type) {
case HttpRequest:
httpReq := v.Value
webSequenceDiagram.addRequestRow(v.Source, v.Target, formatDiagramRequest(httpReq))
entry, err := newHTTPRequestLogEntry(httpReq)
if err != nil {
return htmlTemplateModel{}, err
}
entry.Timestamp = v.Timestamp
logs = append(logs, entry)
case HttpResponse:
webSequenceDiagram.addResponseRow(v.Source, v.Target, strconv.Itoa(v.Value.StatusCode))
entry, err := newHTTPResponseLogEntry(v.Value)
if err != nil {
return htmlTemplateModel{}, err
}
entry.Timestamp = v.Timestamp
logs = append(logs, entry)
case MessageRequest:
webSequenceDiagram.addRequestRow(v.Source, v.Target, v.Header)
logs = append(logs, logEntry{Header: v.Header, Body: v.Body, Timestamp: v.Timestamp})
case MessageResponse:
webSequenceDiagram.addResponseRow(v.Source, v.Target, v.Header)
logs = append(logs, logEntry{Header: v.Header, Body: v.Body, Timestamp: v.Timestamp})
default:
panic("received unknown event type")
}
}
status, err := r.ResponseStatus()
if err != nil {
return htmlTemplateModel{}, err
}
jsonMeta, err := json.Marshal(r.Meta)
if err != nil {
return htmlTemplateModel{}, err
}
return htmlTemplateModel{
WebSequenceDSL: webSequenceDiagram.toString(),
LogEntries: logs,
Title: r.Title,
SubTitle: r.SubTitle,
StatusCode: status,
BadgeClass: badgeCSSClass(status),
MetaJSON: htmlTemplate.JS(jsonMeta),
}, nil
}
func newHTTPRequestLogEntry(req *http.Request) (logEntry, error) {
reqHeader, err := httputil.DumpRequest(req, false)
if err != nil {
return logEntry{}, err
}
body, err := formatBodyContent(req.Body, func(replacementBody io.ReadCloser) {
req.Body = replacementBody
})
if err != nil {
return logEntry{}, err
}
return logEntry{Header: string(reqHeader), Body: body}, err
}
func newHTTPResponseLogEntry(res *http.Response) (logEntry, error) {
resDump, err := httputil.DumpResponse(res, false)
if err != nil {
return logEntry{}, err
}
body, err := formatBodyContent(res.Body, func(replacementBody io.ReadCloser) {
res.Body = replacementBody
})
if err != nil {
return logEntry{}, err
}
return logEntry{Header: string(resDump), Body: body}, err
}
func formatBodyContent(bodyReadCloser io.ReadCloser, replaceBody func(replacementBody io.ReadCloser)) (string, error) {
if bodyReadCloser == nil {
return "", nil
}
body, err := ioutil.ReadAll(bodyReadCloser)
if err != nil {
return "", err
}
replaceBody(ioutil.NopCloser(bytes.NewReader(body)))
buf := new(bytes.Buffer)
if json.Valid(body) {
jsonEncodeErr := json.Indent(buf, body, "", " ")
if jsonEncodeErr != nil {
return "", jsonEncodeErr
}
s := buf.String()
return s, nil
}
_, err = buf.Write(body)
if err != nil {
return "", err
}
return buf.String(), nil
}