blob: debf7f5db12eee52b7facd1ca835dd1db7319a15 [file] [log] [blame]
Johan Euphrosine093044a2015-05-12 14:21:46 -07001package kubernetes_test
2
3import (
Brad Fitzpatricka6dd6262018-03-06 22:22:17 +00004 "context"
Johan Euphrosinece69a9f2016-07-26 01:11:52 +09005 "encoding/json"
6 "fmt"
Johan Euphrosine093044a2015-05-12 14:21:46 -07007 "net/http"
Johan Euphrosinece69a9f2016-07-26 01:11:52 +09008 "net/http/httptest"
9 "testing"
Johan Euphrosine093044a2015-05-12 14:21:46 -070010
Johan Euphrosine093044a2015-05-12 14:21:46 -070011 "golang.org/x/build/kubernetes"
Johan Euphrosinef46fbc22016-04-07 23:27:02 -070012 "golang.org/x/build/kubernetes/api"
Johan Euphrosine093044a2015-05-12 14:21:46 -070013)
14
Johan Euphrosinece69a9f2016-07-26 01:11:52 +090015type handlers []func(w http.ResponseWriter, r *http.Request) error
16
17func newTestPod() *api.Pod {
18 return &api.Pod{
Johan Euphrosine093044a2015-05-12 14:21:46 -070019 TypeMeta: api.TypeMeta{
Johan Euphrosinef46fbc22016-04-07 23:27:02 -070020 APIVersion: "v1",
Johan Euphrosine093044a2015-05-12 14:21:46 -070021 Kind: "Pod",
22 },
23 ObjectMeta: api.ObjectMeta{
Johan Euphrosinece69a9f2016-07-26 01:11:52 +090024 Name: "test-pod",
Johan Euphrosine093044a2015-05-12 14:21:46 -070025 },
26 Spec: api.PodSpec{
27 Containers: []api.Container{
28 {
Johan Euphrosinece69a9f2016-07-26 01:11:52 +090029 Name: "test-container",
30 Image: "test-image:latest",
Johan Euphrosine093044a2015-05-12 14:21:46 -070031 },
32 },
33 },
Johan Euphrosinef46fbc22016-04-07 23:27:02 -070034 }
Johan Euphrosinece69a9f2016-07-26 01:11:52 +090035}
36
37func (hs *handlers) ServeHTTP(w http.ResponseWriter, r *http.Request) {
38 if len(*hs) == 0 {
39 w.WriteHeader(http.StatusInternalServerError)
40 fmt.Fprintf(w, "unexpected request: %v", r)
41 return
Johan Euphrosinef46fbc22016-04-07 23:27:02 -070042 }
Johan Euphrosinece69a9f2016-07-26 01:11:52 +090043 h := (*hs)[0]
44 *hs = (*hs)[1:]
45 if err := h(w, r); err != nil {
46 w.WriteHeader(http.StatusInternalServerError)
47 fmt.Fprintf(w, "unexpected error: %v", err)
48 return
49 }
50}
51
52func TestRunPod(t *testing.T) {
53 hs := handlers{
54 func(w http.ResponseWriter, r *http.Request) error {
55 if r.Method != http.MethodPost {
56 return fmt.Errorf("expected %q, got %q", http.MethodPost, r.Method)
57
58 }
59 w.WriteHeader(http.StatusCreated)
60 json.NewEncoder(w).Encode(newTestPod())
61 return nil
62 },
63 func(w http.ResponseWriter, r *http.Request) error {
64 if r.Method != http.MethodGet {
65 return fmt.Errorf("expected %q, got %q", http.MethodGet, r.Method)
66 }
67 w.WriteHeader(http.StatusOK)
68 readyPod := newTestPod()
69 readyPod.Status.Phase = api.PodRunning
70 json.NewEncoder(w).Encode(readyPod)
71 return nil
72 },
73 }
74 s := httptest.NewServer(&hs)
75 defer s.Close()
76
77 c, err := kubernetes.NewClient(s.URL, http.DefaultClient)
78 if err != nil {
79 t.Fatalf("NewClient: %v", err)
80 }
81 ps, err := c.RunLongLivedPod(context.Background(), newTestPod())
82 if err != nil {
83 t.Fatalf("RunLongLivePod: %v", err)
84 }
85 if ps.Phase != api.PodRunning {
86 t.Fatalf("Pod phase = %q; want %q", ps.Phase, api.PodRunning)
87 }
88 if len(hs) != 0 {
89 t.Fatalf("failed to process all expected requests: %d left", len(hs))
90 }
Johan Euphrosine093044a2015-05-12 14:21:46 -070091}