This repository was archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapi_test.go
242 lines (212 loc) · 5.87 KB
/
api_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
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
package test
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"strconv"
"strings"
"testing"
"github.com/filecoin-project/motion/api"
"github.com/stretchr/testify/require"
"gopkg.in/yaml.v3"
)
type testCase struct {
name string
onMethod string
onPath string
onBody string
onContentType string
expectStatus int
expectBody string // may be regex. optional (empty = not tested)
// Silences error for this schema case
skip bool
}
type schemaCase struct {
method string
path string
status string
covered bool
}
func (s schemaCase) String() string {
return fmt.Sprintf("%s %s -> %s (covered: %v)\n", s.method, s.path, s.status, s.covered)
}
func TestApi(t *testing.T) {
env := NewEnvironment(t)
// Prereq: post 1 piece of data to test on
var testBlobResp api.PostBlobResponse
{
resp, err := http.Post(
requireJoinUrlPath(t, env.MotionAPIEndpoint, "v0", "blob"),
"application/octet-stream",
bytes.NewReader([]byte("a")),
)
require.NoError(t, err)
require.NoError(t, json.NewDecoder(resp.Body).Decode(&testBlobResp))
resp.Body.Close()
}
// ---- Add test cases here ----
tests := []testCase{
{
name: "POST /v0/blob is 201",
onMethod: http.MethodPost,
onPath: "/v0/blob",
onBody: "fish",
onContentType: "application/octet-stream",
expectBody: "{\"id\":\".*\"}",
expectStatus: 201,
},
{
// not reliably testable
onMethod: http.MethodPost,
onPath: "/v0/blob",
expectStatus: 500,
skip: true,
},
{
// not reliably testable
onMethod: http.MethodPost,
onPath: "/v0/blob",
expectStatus: 503,
skip: true,
},
{
name: "GET /v0/blob/{id} is 200",
onMethod: http.MethodGet,
onPath: "/v0/blob/" + testBlobResp.ID,
expectStatus: 200,
},
{
name: "GET /v0/blob/{id} for unknown ID is 404",
onMethod: http.MethodGet,
onPath: "/v0/blob/00000000-0000-0000-0000-000000000000",
expectStatus: 404,
},
{
// not reliably testable
onMethod: http.MethodGet,
onPath: "/v0/blob/00000000-0000-0000-0000-000000000000",
expectStatus: 500,
skip: true,
},
{
// not reliably testable
onMethod: http.MethodGet,
onPath: "/v0/blob/00000000-0000-0000-0000-000000000000",
expectStatus: 503,
skip: true,
},
{
name: "GET /v0/blob/{id}/status is 200",
onMethod: http.MethodGet,
onPath: "/v0/blob/" + testBlobResp.ID + "/status",
expectStatus: 200,
},
{
name: "GET /v0/blob/{id}/status for unknown ID is 404",
onMethod: http.MethodGet,
onPath: "/v0/blob/00000000-0000-0000-0000-000000000000/status",
expectStatus: 404,
},
{
// not reliably testable
onMethod: http.MethodGet,
onPath: "/v0/blob/00000000-0000-0000-0000-000000000000/status",
expectStatus: 500,
skip: true,
},
{
// not reliably testable
onMethod: http.MethodGet,
onPath: "/v0/blob/00000000-0000-0000-0000-000000000000/status",
expectStatus: 503,
skip: true,
},
}
// Read and parse openapi.yaml for ensuring all paths, methods, and status
// codes are covered
schemaString, err := os.ReadFile("../../openapi.yaml")
require.NoError(t, err, "could not find openapi.yaml")
schemaMap := make(map[string]interface{})
err = yaml.Unmarshal(schemaString, schemaMap)
require.NoError(t, err)
var schemaCases []schemaCase
type kvmap = map[string]interface{}
for pathName, path := range schemaMap["paths"].(kvmap) {
for methodName, method := range path.(kvmap) {
for statusCode := range method.(kvmap)["responses"].(kvmap) {
schemaCases = append(schemaCases, schemaCase{
method: methodName,
path: pathName,
status: statusCode,
covered: false,
})
}
}
}
// Run all tests
for _, test := range tests {
if !test.skip {
req, err := http.NewRequest(
test.onMethod,
requireJoinUrlPath(t, env.MotionAPIEndpoint, test.onPath),
bytes.NewReader([]byte(test.expectBody)),
)
req.Header.Set("Content-Type", test.onContentType)
require.NoError(t, err)
resp, err := http.DefaultClient.Do(req)
require.NoError(t, err)
// Body must be as expected
var body string
if test.expectBody != "" {
bodyBytes, err := io.ReadAll(resp.Body)
require.NoError(t, err)
body = string(bodyBytes)
require.Regexp(t, test.expectBody, string(body))
}
resp.Body.Close()
// Status code must be as expected
require.Equal(t, test.expectStatus, resp.StatusCode, "Incorrect status code for test %#v (resp body: %v)", test, body)
}
// Find matching schema case and mark as covered
for i := range schemaCases {
methodsMatch := strings.EqualFold(schemaCases[i].method, test.onMethod)
pathsMatch := schemaPathFitsTest(schemaCases[i].path, test.onPath)
statusesMatch := schemaCases[i].status == strconv.Itoa(test.expectStatus)
if methodsMatch && pathsMatch && statusesMatch {
schemaCases[i].covered = true
break
}
}
}
// Make sure all schema cases are covered
var notCovered []schemaCase
for _, schemaCase := range schemaCases {
if !schemaCase.covered {
notCovered = append(notCovered, schemaCase)
}
}
require.Empty(t, notCovered, "all schema cases must be covered")
}
// Checks whether a test's path fits into a schema path listed in openapi.yaml,
// where the schema path may have variable parts (example, schema /foo/bar/{x}
// == test /foo/bar/5).
func schemaPathFitsTest(schemaPath string, testPath string) bool {
schemaParts := strings.Split(schemaPath, "/")
testParts := strings.Split(testPath, "/")
if len(schemaParts) != len(testParts) {
return false
}
for i := range schemaParts {
if schemaParts[i] == testParts[i] {
continue
} else if schemaParts[i][0] == '{' {
continue
} else {
return false
}
}
return true
}