forked from danielgtaylor/openapi-cli-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main_test.go
73 lines (59 loc) · 1.62 KB
/
main_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
// Note: do not run with `go test`. Instead use the `./test.sh` script!
package main_test
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"os/exec"
"testing"
"github.com/stretchr/testify/assert"
)
func TestMain(m *testing.M) {
// Set up a test server that implements the API described in
// `./example-cli/openapi.yaml` and start it before running the tests.
server := &http.Server{Addr: ":8005", Handler: http.DefaultServeMux}
http.HandleFunc("/echo", func(w http.ResponseWriter, r *http.Request) {
if r.Method != "POST" {
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
body, err := ioutil.ReadAll(r.Body)
if err != nil {
panic(err)
}
ct := r.Header.Get("Content-Type")
if ct != "" {
w.Header().Add("Content-Type", ct)
}
// For the test, add the param values to the echoed response.
var decoded map[string]interface{}
json.Unmarshal(body, &decoded)
q := r.URL.Query().Get("q")
if q != "" {
decoded["q"] = q
}
rid := r.Header.Get("X-Request-ID")
if rid != "" {
decoded["request-id"] = rid
}
marshalled, _ := json.Marshal(decoded)
w.Write(marshalled)
})
go func() {
server.ListenAndServe()
}()
defer server.Shutdown(context.Background())
os.Exit(m.Run())
}
func TestEchoSuccess(t *testing.T) {
// Call the precompiled executable CLI to hit our test server.
out, err := exec.Command("sh", "-c", "example-cli echo hello: world --echo-query=foo --x-request-id bar").CombinedOutput()
if err != nil {
fmt.Println(string(out))
panic(err)
}
assert.JSONEq(t, "{\"hello\": \"world\", \"q\": \"foo\", \"request-id\": \"bar\"}", string(out))
}