Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 1 | package kubernetes_test |
| 2 | |
| 3 | import ( |
Brad Fitzpatrick | a6dd626 | 2018-03-06 22:22:17 +0000 | [diff] [blame] | 4 | "context" |
Johan Euphrosine | ce69a9f | 2016-07-26 01:11:52 +0900 | [diff] [blame] | 5 | "encoding/json" |
| 6 | "fmt" |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 7 | "net/http" |
Johan Euphrosine | ce69a9f | 2016-07-26 01:11:52 +0900 | [diff] [blame] | 8 | "net/http/httptest" |
| 9 | "testing" |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 10 | |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 11 | "golang.org/x/build/kubernetes" |
Johan Euphrosine | f46fbc2 | 2016-04-07 23:27:02 -0700 | [diff] [blame] | 12 | "golang.org/x/build/kubernetes/api" |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 13 | ) |
| 14 | |
Johan Euphrosine | ce69a9f | 2016-07-26 01:11:52 +0900 | [diff] [blame] | 15 | type handlers []func(w http.ResponseWriter, r *http.Request) error |
| 16 | |
| 17 | func newTestPod() *api.Pod { |
| 18 | return &api.Pod{ |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 19 | TypeMeta: api.TypeMeta{ |
Johan Euphrosine | f46fbc2 | 2016-04-07 23:27:02 -0700 | [diff] [blame] | 20 | APIVersion: "v1", |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 21 | Kind: "Pod", |
| 22 | }, |
| 23 | ObjectMeta: api.ObjectMeta{ |
Johan Euphrosine | ce69a9f | 2016-07-26 01:11:52 +0900 | [diff] [blame] | 24 | Name: "test-pod", |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 25 | }, |
| 26 | Spec: api.PodSpec{ |
| 27 | Containers: []api.Container{ |
| 28 | { |
Johan Euphrosine | ce69a9f | 2016-07-26 01:11:52 +0900 | [diff] [blame] | 29 | Name: "test-container", |
| 30 | Image: "test-image:latest", |
Johan Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 31 | }, |
| 32 | }, |
| 33 | }, |
Johan Euphrosine | f46fbc2 | 2016-04-07 23:27:02 -0700 | [diff] [blame] | 34 | } |
Johan Euphrosine | ce69a9f | 2016-07-26 01:11:52 +0900 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | func (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 Euphrosine | f46fbc2 | 2016-04-07 23:27:02 -0700 | [diff] [blame] | 42 | } |
Johan Euphrosine | ce69a9f | 2016-07-26 01:11:52 +0900 | [diff] [blame] | 43 | 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 | |
| 52 | func 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 Euphrosine | 093044a | 2015-05-12 14:21:46 -0700 | [diff] [blame] | 91 | } |