2014-11-18 18:04:10 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-11-18 18:04:10 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-03-26 01:52:12 +00:00
|
|
|
package cmd
|
2014-11-18 18:04:10 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2015-09-11 20:47:53 +00:00
|
|
|
"k8s.io/kubernetes/pkg/client/unversioned/fake"
|
2014-11-18 18:04:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Verifies that schemas that are not in the master tree of Kubernetes can be retrieved via Get.
|
|
|
|
func TestDescribeUnknownSchemaObject(t *testing.T) {
|
|
|
|
d := &testDescriber{Output: "test output"}
|
|
|
|
f, tf, codec := NewTestFactory()
|
|
|
|
tf.Describer = d
|
2015-09-11 20:47:53 +00:00
|
|
|
tf.Client = &fake.RESTClient{
|
2014-11-18 18:04:10 +00:00
|
|
|
Codec: codec,
|
|
|
|
Resp: &http.Response{StatusCode: 200, Body: objBody(codec, &internalType{Name: "foo"})},
|
|
|
|
}
|
2015-01-02 18:08:37 +00:00
|
|
|
tf.Namespace = "non-default"
|
2014-11-18 18:04:10 +00:00
|
|
|
buf := bytes.NewBuffer([]byte{})
|
|
|
|
|
2015-04-07 18:21:25 +00:00
|
|
|
cmd := NewCmdDescribe(f, buf)
|
2014-11-18 18:04:10 +00:00
|
|
|
cmd.Run(cmd, []string{"type", "foo"})
|
|
|
|
|
2015-01-02 18:08:37 +00:00
|
|
|
if d.Name != "foo" || d.Namespace != "non-default" {
|
2014-11-18 18:04:10 +00:00
|
|
|
t.Errorf("unexpected describer: %#v", d)
|
|
|
|
}
|
|
|
|
|
2015-06-12 07:08:28 +00:00
|
|
|
if buf.String() != fmt.Sprintf("%s\n\n", d.Output) {
|
2014-11-18 18:04:10 +00:00
|
|
|
t.Errorf("unexpected output: %s", buf.String())
|
|
|
|
}
|
|
|
|
}
|
2015-07-07 07:31:08 +00:00
|
|
|
|
|
|
|
func TestDescribeObject(t *testing.T) {
|
|
|
|
_, _, rc := testData()
|
|
|
|
f, tf, codec := NewAPIFactory()
|
|
|
|
d := &testDescriber{Output: "test output"}
|
|
|
|
tf.Describer = d
|
2015-09-11 20:47:53 +00:00
|
|
|
tf.Client = &fake.RESTClient{
|
2015-07-07 07:31:08 +00:00
|
|
|
Codec: codec,
|
2015-11-11 19:54:58 +00:00
|
|
|
Client: fake.CreateHTTPClient(func(req *http.Request) (*http.Response, error) {
|
2015-07-07 07:31:08 +00:00
|
|
|
switch p, m := req.URL.Path, req.Method; {
|
|
|
|
case p == "/namespaces/test/replicationcontrollers/redis-master" && m == "GET":
|
|
|
|
return &http.Response{StatusCode: 200, Body: objBody(codec, &rc.Items[0])}, nil
|
|
|
|
default:
|
|
|
|
t.Fatalf("unexpected request: %#v\n%#v", req.URL, req)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
tf.Namespace = "test"
|
|
|
|
buf := bytes.NewBuffer([]byte{})
|
|
|
|
|
|
|
|
cmd := NewCmdDescribe(f, buf)
|
2016-03-23 23:03:07 +00:00
|
|
|
cmd.Flags().Set("filename", "../../../examples/guestbook/legacy/redis-master-controller.yaml")
|
2015-07-07 07:31:08 +00:00
|
|
|
cmd.Run(cmd, []string{})
|
|
|
|
|
|
|
|
if d.Name != "redis-master" || d.Namespace != "test" {
|
|
|
|
t.Errorf("unexpected describer: %#v", d)
|
|
|
|
}
|
|
|
|
|
|
|
|
if buf.String() != fmt.Sprintf("%s\n\n", d.Output) {
|
|
|
|
t.Errorf("unexpected output: %s", buf.String())
|
|
|
|
}
|
|
|
|
}
|
2015-08-04 07:12:29 +00:00
|
|
|
|
|
|
|
func TestDescribeListObjects(t *testing.T) {
|
|
|
|
pods, _, _ := testData()
|
|
|
|
f, tf, codec := NewAPIFactory()
|
|
|
|
d := &testDescriber{Output: "test output"}
|
|
|
|
tf.Describer = d
|
2015-09-11 20:47:53 +00:00
|
|
|
tf.Client = &fake.RESTClient{
|
2015-08-04 07:12:29 +00:00
|
|
|
Codec: codec,
|
|
|
|
Resp: &http.Response{StatusCode: 200, Body: objBody(codec, pods)},
|
|
|
|
}
|
|
|
|
|
|
|
|
tf.Namespace = "test"
|
|
|
|
buf := bytes.NewBuffer([]byte{})
|
|
|
|
cmd := NewCmdDescribe(f, buf)
|
|
|
|
cmd.Run(cmd, []string{"pods"})
|
|
|
|
if buf.String() != fmt.Sprintf("%s\n\n%s\n\n", d.Output, d.Output) {
|
|
|
|
t.Errorf("unexpected output: %s", buf.String())
|
|
|
|
}
|
|
|
|
}
|