12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535 |
- /*
- Copyright 2014 The Kubernetes Authors.
- 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.
- */
- package kubectl
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "io"
- "reflect"
- "strings"
- "testing"
- "time"
- "k8s.io/kubernetes/pkg/api"
- "k8s.io/kubernetes/pkg/api/testapi"
- "k8s.io/kubernetes/pkg/api/unversioned"
- "k8s.io/kubernetes/pkg/api/v1"
- "k8s.io/kubernetes/pkg/apis/batch"
- "k8s.io/kubernetes/pkg/apis/extensions"
- kubectltesting "k8s.io/kubernetes/pkg/kubectl/testing"
- "k8s.io/kubernetes/pkg/runtime"
- yamlserializer "k8s.io/kubernetes/pkg/runtime/serializer/yaml"
- "k8s.io/kubernetes/pkg/util/diff"
- "k8s.io/kubernetes/pkg/util/intstr"
- "k8s.io/kubernetes/pkg/util/sets"
- "github.com/ghodss/yaml"
- )
- func init() {
- api.Scheme.AddKnownTypes(testapi.Default.InternalGroupVersion(), &kubectltesting.TestStruct{})
- api.Scheme.AddKnownTypes(*testapi.Default.GroupVersion(), &kubectltesting.TestStruct{})
- }
- var testData = kubectltesting.TestStruct{
- Key: "testValue",
- Map: map[string]int{"TestSubkey": 1},
- StringList: []string{"a", "b", "c"},
- IntList: []int{1, 2, 3},
- }
- func TestVersionedPrinter(t *testing.T) {
- original := &kubectltesting.TestStruct{Key: "value"}
- p := NewVersionedPrinter(
- ResourcePrinterFunc(func(obj runtime.Object, w io.Writer) error {
- if obj == original {
- t.Fatalf("object should not be identical: %#v", obj)
- }
- if obj.(*kubectltesting.TestStruct).Key != "value" {
- t.Fatalf("object was not converted: %#v", obj)
- }
- return nil
- }),
- api.Scheme,
- *testapi.Default.GroupVersion(),
- )
- if err := p.PrintObj(original, nil); err != nil {
- t.Errorf("unexpected error: %v", err)
- }
- }
- func TestPrintDefault(t *testing.T) {
- printer, found, err := GetPrinter("", "", false)
- if err != nil {
- t.Fatalf("unexpected error: %#v", err)
- }
- if found {
- t.Errorf("no printer should have been found: %#v / %v", printer, err)
- }
- }
- type TestPrintType struct {
- Data string
- }
- func (obj *TestPrintType) GetObjectKind() unversioned.ObjectKind { return unversioned.EmptyObjectKind }
- type TestUnknownType struct{}
- func (obj *TestUnknownType) GetObjectKind() unversioned.ObjectKind { return unversioned.EmptyObjectKind }
- func TestPrinter(t *testing.T) {
- //test inputs
- simpleTest := &TestPrintType{"foo"}
- podTest := &api.Pod{ObjectMeta: api.ObjectMeta{Name: "foo"}}
- podListTest := &api.PodList{
- Items: []api.Pod{
- {ObjectMeta: api.ObjectMeta{Name: "foo"}},
- {ObjectMeta: api.ObjectMeta{Name: "bar"}},
- },
- }
- emptyListTest := &api.PodList{}
- testapi, err := api.Scheme.ConvertToVersion(podTest, *testapi.Default.GroupVersion())
- if err != nil {
- t.Fatalf("unexpected error: %v", err)
- }
- printerTests := []struct {
- Name string
- Format string
- FormatArgument string
- Input runtime.Object
- Expect string
- }{
- {"test json", "json", "", simpleTest, "{\n \"Data\": \"foo\"\n}\n"},
- {"test yaml", "yaml", "", simpleTest, "Data: foo\n"},
- {"test template", "template", "{{if .id}}{{.id}}{{end}}{{if .metadata.name}}{{.metadata.name}}{{end}}",
- podTest, "foo"},
- {"test jsonpath", "jsonpath", "{.metadata.name}", podTest, "foo"},
- {"test jsonpath list", "jsonpath", "{.items[*].metadata.name}", podListTest, "foo bar"},
- {"test jsonpath empty list", "jsonpath", "{.items[*].metadata.name}", emptyListTest, ""},
- {"test name", "name", "", podTest, "pod/foo\n"},
- {"emits versioned objects", "template", "{{.kind}}", testapi, "Pod"},
- }
- for _, test := range printerTests {
- buf := bytes.NewBuffer([]byte{})
- printer, found, err := GetPrinter(test.Format, test.FormatArgument, false)
- if err != nil || !found {
- t.Errorf("in %s, unexpected error: %#v", test.Name, err)
- }
- if err := printer.PrintObj(test.Input, buf); err != nil {
- t.Errorf("in %s, unexpected error: %#v", test.Name, err)
- }
- if buf.String() != test.Expect {
- t.Errorf("in %s, expect %q, got %q", test.Name, test.Expect, buf.String())
- }
- }
- }
- func TestBadPrinter(t *testing.T) {
- badPrinterTests := []struct {
- Name string
- Format string
- FormatArgument string
- Error error
- }{
- {"empty template", "template", "", fmt.Errorf("template format specified but no template given")},
- {"bad template", "template", "{{ .Name", fmt.Errorf("error parsing template {{ .Name, template: output:1: unclosed action\n")},
- {"bad templatefile", "templatefile", "", fmt.Errorf("templatefile format specified but no template file given")},
- {"bad jsonpath", "jsonpath", "{.Name", fmt.Errorf("error parsing jsonpath {.Name, unclosed action\n")},
- }
- for _, test := range badPrinterTests {
- _, _, err := GetPrinter(test.Format, test.FormatArgument, false)
- if err == nil || err.Error() != test.Error.Error() {
- t.Errorf("in %s, expect %s, got %s", test.Name, test.Error, err)
- }
- }
- }
- func testPrinter(t *testing.T, printer ResourcePrinter, unmarshalFunc func(data []byte, v interface{}) error) {
- buf := bytes.NewBuffer([]byte{})
- err := printer.PrintObj(&testData, buf)
- if err != nil {
- t.Fatal(err)
- }
- var poutput kubectltesting.TestStruct
- // Verify that given function runs without error.
- err = unmarshalFunc(buf.Bytes(), &poutput)
- if err != nil {
- t.Fatal(err)
- }
- // Use real decode function to undo the versioning process.
- poutput = kubectltesting.TestStruct{}
- s := yamlserializer.NewDecodingSerializer(testapi.Default.Codec())
- if err := runtime.DecodeInto(s, buf.Bytes(), &poutput); err != nil {
- t.Fatal(err)
- }
- if !reflect.DeepEqual(testData, poutput) {
- t.Errorf("Test data and unmarshaled data are not equal: %v", diff.ObjectDiff(poutput, testData))
- }
- obj := &api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "foo"},
- }
- buf.Reset()
- printer.PrintObj(obj, buf)
- var objOut api.Pod
- // Verify that given function runs without error.
- err = unmarshalFunc(buf.Bytes(), &objOut)
- if err != nil {
- t.Fatalf("unexpected error: %#v", err)
- }
- // Use real decode function to undo the versioning process.
- objOut = api.Pod{}
- if err := runtime.DecodeInto(s, buf.Bytes(), &objOut); err != nil {
- t.Fatal(err)
- }
- if !reflect.DeepEqual(obj, &objOut) {
- t.Errorf("Unexpected inequality:\n%v", diff.ObjectDiff(obj, &objOut))
- }
- }
- func TestYAMLPrinter(t *testing.T) {
- testPrinter(t, &YAMLPrinter{}, yaml.Unmarshal)
- }
- func TestJSONPrinter(t *testing.T) {
- testPrinter(t, &JSONPrinter{}, json.Unmarshal)
- }
- func TestFormatResourceName(t *testing.T) {
- tests := []struct {
- kind, name string
- want string
- }{
- {"", "", ""},
- {"", "name", "name"},
- {"kind", "", "kind/"}, // should not happen in practice
- {"kind", "name", "kind/name"},
- }
- for _, tt := range tests {
- if got := formatResourceName(tt.kind, tt.name, true); got != tt.want {
- t.Errorf("formatResourceName(%q, %q) = %q, want %q", tt.kind, tt.name, got, tt.want)
- }
- }
- }
- func PrintCustomType(obj *TestPrintType, w io.Writer, options PrintOptions) error {
- data := obj.Data
- kind := options.Kind
- if options.WithKind {
- data = kind + "/" + data
- }
- _, err := fmt.Fprintf(w, "%s", data)
- return err
- }
- func ErrorPrintHandler(obj *TestPrintType, w io.Writer, options PrintOptions) error {
- return fmt.Errorf("ErrorPrintHandler error")
- }
- func TestCustomTypePrinting(t *testing.T) {
- columns := []string{"Data"}
- printer := NewHumanReadablePrinter(PrintOptions{
- ColumnLabels: []string{},
- })
- printer.Handler(columns, PrintCustomType)
- obj := TestPrintType{"test object"}
- buffer := &bytes.Buffer{}
- err := printer.PrintObj(&obj, buffer)
- if err != nil {
- t.Fatalf("An error occurred printing the custom type: %#v", err)
- }
- expectedOutput := "Data\ntest object"
- if buffer.String() != expectedOutput {
- t.Errorf("The data was not printed as expected. Expected:\n%s\nGot:\n%s", expectedOutput, buffer.String())
- }
- }
- func TestCustomTypePrintingWithKind(t *testing.T) {
- columns := []string{"Data"}
- printer := NewHumanReadablePrinter(PrintOptions{
- ColumnLabels: []string{},
- })
- printer.Handler(columns, PrintCustomType)
- printer.EnsurePrintWithKind("test")
- obj := TestPrintType{"test object"}
- buffer := &bytes.Buffer{}
- err := printer.PrintObj(&obj, buffer)
- if err != nil {
- t.Fatalf("An error occurred printing the custom type: %#v", err)
- }
- expectedOutput := "Data\ntest/test object"
- if buffer.String() != expectedOutput {
- t.Errorf("The data was not printed as expected. Expected:\n%s\nGot:\n%s", expectedOutput, buffer.String())
- }
- }
- func TestPrintHandlerError(t *testing.T) {
- columns := []string{"Data"}
- printer := NewHumanReadablePrinter(PrintOptions{
- ColumnLabels: []string{},
- })
- printer.Handler(columns, ErrorPrintHandler)
- obj := TestPrintType{"test object"}
- buffer := &bytes.Buffer{}
- err := printer.PrintObj(&obj, buffer)
- if err == nil || err.Error() != "ErrorPrintHandler error" {
- t.Errorf("Did not get the expected error: %#v", err)
- }
- }
- func TestUnknownTypePrinting(t *testing.T) {
- printer := NewHumanReadablePrinter(PrintOptions{
- ColumnLabels: []string{},
- })
- buffer := &bytes.Buffer{}
- err := printer.PrintObj(&TestUnknownType{}, buffer)
- if err == nil {
- t.Errorf("An error was expected from printing unknown type")
- }
- }
- func TestTemplatePanic(t *testing.T) {
- tmpl := `{{and ((index .currentState.info "foo").state.running.startedAt) .currentState.info.net.state.running.startedAt}}`
- printer, err := NewTemplatePrinter([]byte(tmpl))
- if err != nil {
- t.Fatalf("tmpl fail: %v", err)
- }
- buffer := &bytes.Buffer{}
- err = printer.PrintObj(&api.Pod{}, buffer)
- if err == nil {
- t.Fatalf("expected that template to crash")
- }
- if buffer.String() == "" {
- t.Errorf("no debugging info was printed")
- }
- }
- func TestNamePrinter(t *testing.T) {
- tests := map[string]struct {
- obj runtime.Object
- expect string
- }{
- "singleObject": {
- &api.Pod{
- TypeMeta: unversioned.TypeMeta{
- Kind: "Pod",
- },
- ObjectMeta: api.ObjectMeta{
- Name: "foo",
- },
- },
- "pod/foo\n"},
- "List": {
- &v1.List{
- TypeMeta: unversioned.TypeMeta{
- Kind: "List",
- },
- Items: []runtime.RawExtension{
- {
- Raw: []byte(`{"kind": "Pod", "apiVersion": "v1", "metadata": { "name": "foo"}}`),
- },
- {
- Raw: []byte(`{"kind": "Pod", "apiVersion": "v1", "metadata": { "name": "bar"}}`),
- },
- },
- },
- "pod/foo\npod/bar\n"},
- }
- printer, _, _ := GetPrinter("name", "", false)
- for name, item := range tests {
- buff := &bytes.Buffer{}
- err := printer.PrintObj(item.obj, buff)
- if err != nil {
- t.Errorf("%v: unexpected err: %v", name, err)
- continue
- }
- got := buff.String()
- if item.expect != got {
- t.Errorf("%v: expected %v, got %v", name, item.expect, got)
- }
- }
- }
- func TestTemplateStrings(t *testing.T) {
- // This unit tests the "exists" function as well as the template from update.sh
- table := map[string]struct {
- pod api.Pod
- expect string
- }{
- "nilInfo": {api.Pod{}, "false"},
- "emptyInfo": {api.Pod{Status: api.PodStatus{ContainerStatuses: []api.ContainerStatus{}}}, "false"},
- "fooExists": {
- api.Pod{
- Status: api.PodStatus{
- ContainerStatuses: []api.ContainerStatus{
- {
- Name: "foo",
- },
- },
- },
- },
- "false",
- },
- "barExists": {
- api.Pod{
- Status: api.PodStatus{
- ContainerStatuses: []api.ContainerStatus{
- {
- Name: "bar",
- },
- },
- },
- },
- "false",
- },
- "bothExist": {
- api.Pod{
- Status: api.PodStatus{
- ContainerStatuses: []api.ContainerStatus{
- {
- Name: "foo",
- },
- {
- Name: "bar",
- },
- },
- },
- },
- "false",
- },
- "barValid": {
- api.Pod{
- Status: api.PodStatus{
- ContainerStatuses: []api.ContainerStatus{
- {
- Name: "foo",
- },
- {
- Name: "bar",
- State: api.ContainerState{
- Running: &api.ContainerStateRunning{
- StartedAt: unversioned.Time{},
- },
- },
- },
- },
- },
- },
- "false",
- },
- "bothValid": {
- api.Pod{
- Status: api.PodStatus{
- ContainerStatuses: []api.ContainerStatus{
- {
- Name: "foo",
- State: api.ContainerState{
- Running: &api.ContainerStateRunning{
- StartedAt: unversioned.Time{},
- },
- },
- },
- {
- Name: "bar",
- State: api.ContainerState{
- Running: &api.ContainerStateRunning{
- StartedAt: unversioned.Time{},
- },
- },
- },
- },
- },
- },
- "true",
- },
- }
- // The point of this test is to verify that the below template works.
- tmpl := `{{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "foo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}`
- p, err := NewTemplatePrinter([]byte(tmpl))
- if err != nil {
- t.Fatalf("tmpl fail: %v", err)
- }
- printer := NewVersionedPrinter(p, api.Scheme, *testapi.Default.GroupVersion())
- for name, item := range table {
- buffer := &bytes.Buffer{}
- err = printer.PrintObj(&item.pod, buffer)
- if err != nil {
- t.Errorf("%v: unexpected err: %v", name, err)
- continue
- }
- actual := buffer.String()
- if len(actual) == 0 {
- actual = "false"
- }
- if e := item.expect; e != actual {
- t.Errorf("%v: expected %v, got %v", name, e, actual)
- }
- }
- }
- func TestPrinters(t *testing.T) {
- om := func(name string) api.ObjectMeta { return api.ObjectMeta{Name: name} }
- templatePrinter, err := NewTemplatePrinter([]byte("{{.name}}"))
- if err != nil {
- t.Fatal(err)
- }
- templatePrinter2, err := NewTemplatePrinter([]byte("{{len .items}}"))
- if err != nil {
- t.Fatal(err)
- }
- jsonpathPrinter, err := NewJSONPathPrinter("{.metadata.name}")
- if err != nil {
- t.Fatal(err)
- }
- printers := map[string]ResourcePrinter{
- "humanReadable": NewHumanReadablePrinter(PrintOptions{
- NoHeaders: true,
- ColumnLabels: []string{},
- }),
- "humanReadableHeaders": NewHumanReadablePrinter(PrintOptions{
- ColumnLabels: []string{},
- }),
- "json": &JSONPrinter{},
- "yaml": &YAMLPrinter{},
- "template": templatePrinter,
- "template2": templatePrinter2,
- "jsonpath": jsonpathPrinter,
- "name": &NamePrinter{
- Typer: api.Scheme,
- Decoder: api.Codecs.UniversalDecoder(),
- },
- }
- objects := map[string]runtime.Object{
- "pod": &api.Pod{ObjectMeta: om("pod")},
- "emptyPodList": &api.PodList{},
- "nonEmptyPodList": &api.PodList{Items: []api.Pod{{}}},
- "endpoints": &api.Endpoints{
- Subsets: []api.EndpointSubset{{
- Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}, {IP: "localhost"}},
- Ports: []api.EndpointPort{{Port: 8080}},
- }}},
- }
- // map of printer name to set of objects it should fail on.
- expectedErrors := map[string]sets.String{
- "template2": sets.NewString("pod", "emptyPodList", "endpoints"),
- "jsonpath": sets.NewString("emptyPodList", "nonEmptyPodList", "endpoints"),
- }
- for pName, p := range printers {
- for oName, obj := range objects {
- b := &bytes.Buffer{}
- if err := p.PrintObj(obj, b); err != nil {
- if set, found := expectedErrors[pName]; found && set.Has(oName) {
- // expected error
- continue
- }
- t.Errorf("printer '%v', object '%v'; error: '%v'", pName, oName, err)
- }
- }
- }
- }
- func TestPrintEventsResultSorted(t *testing.T) {
- // Arrange
- printer := NewHumanReadablePrinter(PrintOptions{
- ColumnLabels: []string{},
- })
- obj := api.EventList{
- Items: []api.Event{
- {
- Source: api.EventSource{Component: "kubelet"},
- Message: "Item 1",
- FirstTimestamp: unversioned.NewTime(time.Date(2014, time.January, 15, 0, 0, 0, 0, time.UTC)),
- LastTimestamp: unversioned.NewTime(time.Date(2014, time.January, 15, 0, 0, 0, 0, time.UTC)),
- Count: 1,
- Type: api.EventTypeNormal,
- },
- {
- Source: api.EventSource{Component: "scheduler"},
- Message: "Item 2",
- FirstTimestamp: unversioned.NewTime(time.Date(1987, time.June, 17, 0, 0, 0, 0, time.UTC)),
- LastTimestamp: unversioned.NewTime(time.Date(1987, time.June, 17, 0, 0, 0, 0, time.UTC)),
- Count: 1,
- Type: api.EventTypeNormal,
- },
- {
- Source: api.EventSource{Component: "kubelet"},
- Message: "Item 3",
- FirstTimestamp: unversioned.NewTime(time.Date(2002, time.December, 25, 0, 0, 0, 0, time.UTC)),
- LastTimestamp: unversioned.NewTime(time.Date(2002, time.December, 25, 0, 0, 0, 0, time.UTC)),
- Count: 1,
- Type: api.EventTypeNormal,
- },
- },
- }
- buffer := &bytes.Buffer{}
- // Act
- err := printer.PrintObj(&obj, buffer)
- // Assert
- if err != nil {
- t.Fatalf("An error occurred printing the EventList: %#v", err)
- }
- out := buffer.String()
- VerifyDatesInOrder(out, "\n" /* rowDelimiter */, " " /* columnDelimiter */, t)
- }
- func TestPrintNodeStatus(t *testing.T) {
- printer := NewHumanReadablePrinter(PrintOptions{
- ColumnLabels: []string{},
- })
- table := []struct {
- node api.Node
- status string
- }{
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo1"},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionTrue}}},
- },
- status: "Ready",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo2"},
- Spec: api.NodeSpec{Unschedulable: true},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionTrue}}},
- },
- status: "Ready,SchedulingDisabled",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo3"},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{
- {Type: api.NodeReady, Status: api.ConditionTrue},
- {Type: api.NodeReady, Status: api.ConditionTrue}}},
- },
- status: "Ready",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo4"},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionFalse}}},
- },
- status: "NotReady",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo5"},
- Spec: api.NodeSpec{Unschedulable: true},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionFalse}}},
- },
- status: "NotReady,SchedulingDisabled",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo6"},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{Type: "InvalidValue", Status: api.ConditionTrue}}},
- },
- status: "Unknown",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo7"},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{}}},
- },
- status: "Unknown",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo8"},
- Spec: api.NodeSpec{Unschedulable: true},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{Type: "InvalidValue", Status: api.ConditionTrue}}},
- },
- status: "Unknown,SchedulingDisabled",
- },
- {
- node: api.Node{
- ObjectMeta: api.ObjectMeta{Name: "foo9"},
- Spec: api.NodeSpec{Unschedulable: true},
- Status: api.NodeStatus{Conditions: []api.NodeCondition{{}}},
- },
- status: "Unknown,SchedulingDisabled",
- },
- }
- for _, test := range table {
- buffer := &bytes.Buffer{}
- err := printer.PrintObj(&test.node, buffer)
- if err != nil {
- t.Fatalf("An error occurred printing Node: %#v", err)
- }
- if !contains(strings.Fields(buffer.String()), test.status) {
- t.Fatalf("Expect printing node %s with status %#v, got: %#v", test.node.Name, test.status, buffer.String())
- }
- }
- }
- func contains(fields []string, field string) bool {
- for _, v := range fields {
- if v == field {
- return true
- }
- }
- return false
- }
- func TestPrintHunmanReadableIngressWithColumnLabels(t *testing.T) {
- ingress := extensions.Ingress{
- ObjectMeta: api.ObjectMeta{
- Name: "test1",
- CreationTimestamp: unversioned.Time{Time: time.Now().AddDate(-10, 0, 0)},
- Labels: map[string]string{
- "app_name": "kubectl_test_ingress",
- },
- },
- Spec: extensions.IngressSpec{
- Backend: &extensions.IngressBackend{
- ServiceName: "svc",
- ServicePort: intstr.FromInt(93),
- },
- },
- Status: extensions.IngressStatus{
- LoadBalancer: api.LoadBalancerStatus{
- Ingress: []api.LoadBalancerIngress{
- {
- IP: "2.3.4.5",
- Hostname: "localhost.localdomain",
- },
- },
- },
- },
- }
- buff := bytes.Buffer{}
- printIngress(&ingress, &buff, PrintOptions{
- ColumnLabels: []string{"app_name"},
- })
- output := string(buff.Bytes())
- appName := ingress.ObjectMeta.Labels["app_name"]
- if !strings.Contains(output, appName) {
- t.Errorf("expected to container app_name label value %s, but doesn't %s", appName, output)
- }
- }
- func TestPrintHumanReadableService(t *testing.T) {
- tests := []api.Service{
- {
- Spec: api.ServiceSpec{
- ClusterIP: "1.2.3.4",
- Type: "LoadBalancer",
- Ports: []api.ServicePort{
- {
- Port: 80,
- Protocol: "TCP",
- },
- },
- },
- Status: api.ServiceStatus{
- LoadBalancer: api.LoadBalancerStatus{
- Ingress: []api.LoadBalancerIngress{
- {
- IP: "2.3.4.5",
- },
- {
- IP: "3.4.5.6",
- },
- },
- },
- },
- },
- {
- Spec: api.ServiceSpec{
- ClusterIP: "1.3.4.5",
- Ports: []api.ServicePort{
- {
- Port: 80,
- Protocol: "TCP",
- },
- {
- Port: 8090,
- Protocol: "UDP",
- },
- {
- Port: 8000,
- Protocol: "TCP",
- },
- },
- },
- },
- {
- Spec: api.ServiceSpec{
- ClusterIP: "1.4.5.6",
- Type: "LoadBalancer",
- Ports: []api.ServicePort{
- {
- Port: 80,
- Protocol: "TCP",
- },
- {
- Port: 8090,
- Protocol: "UDP",
- },
- {
- Port: 8000,
- Protocol: "TCP",
- },
- },
- },
- Status: api.ServiceStatus{
- LoadBalancer: api.LoadBalancerStatus{
- Ingress: []api.LoadBalancerIngress{
- {
- IP: "2.3.4.5",
- },
- },
- },
- },
- },
- {
- Spec: api.ServiceSpec{
- ClusterIP: "1.5.6.7",
- Type: "LoadBalancer",
- Ports: []api.ServicePort{
- {
- Port: 80,
- Protocol: "TCP",
- },
- {
- Port: 8090,
- Protocol: "UDP",
- },
- {
- Port: 8000,
- Protocol: "TCP",
- },
- },
- },
- Status: api.ServiceStatus{
- LoadBalancer: api.LoadBalancerStatus{
- Ingress: []api.LoadBalancerIngress{
- {
- IP: "2.3.4.5",
- },
- {
- IP: "3.4.5.6",
- },
- {
- IP: "5.6.7.8",
- Hostname: "host5678",
- },
- },
- },
- },
- },
- }
- for _, svc := range tests {
- for _, wide := range []bool{false, true} {
- buff := bytes.Buffer{}
- printService(&svc, &buff, PrintOptions{false, false, false, wide, false, false, false, "", []string{}})
- output := string(buff.Bytes())
- ip := svc.Spec.ClusterIP
- if !strings.Contains(output, ip) {
- t.Errorf("expected to contain ClusterIP %s, but doesn't: %s", ip, output)
- }
- for n, ingress := range svc.Status.LoadBalancer.Ingress {
- ip = ingress.IP
- // For non-wide output, we only guarantee the first IP to be printed
- if (n == 0 || wide) && !strings.Contains(output, ip) {
- t.Errorf("expected to contain ingress ip %s with wide=%v, but doesn't: %s", ip, wide, output)
- }
- }
- for _, port := range svc.Spec.Ports {
- portSpec := fmt.Sprintf("%d/%s", port.Port, port.Protocol)
- if !strings.Contains(output, portSpec) {
- t.Errorf("expected to contain port: %s, but doesn't: %s", portSpec, output)
- }
- }
- // Each service should print on one line
- if 1 != strings.Count(output, "\n") {
- t.Errorf("expected a single newline, found %d", strings.Count(output, "\n"))
- }
- }
- }
- }
- func TestPrintHumanReadableWithNamespace(t *testing.T) {
- namespaceName := "testnamespace"
- name := "test"
- table := []struct {
- obj runtime.Object
- isNamespaced bool
- }{
- {
- obj: &api.Pod{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- },
- isNamespaced: true,
- },
- {
- obj: &api.ReplicationController{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- Spec: api.ReplicationControllerSpec{
- Replicas: 2,
- Template: &api.PodTemplateSpec{
- ObjectMeta: api.ObjectMeta{
- Labels: map[string]string{
- "name": "foo",
- "type": "production",
- },
- },
- Spec: api.PodSpec{
- Containers: []api.Container{
- {
- Image: "foo/bar",
- TerminationMessagePath: api.TerminationMessagePathDefault,
- ImagePullPolicy: api.PullIfNotPresent,
- },
- },
- RestartPolicy: api.RestartPolicyAlways,
- DNSPolicy: api.DNSDefault,
- NodeSelector: map[string]string{
- "baz": "blah",
- },
- },
- },
- },
- },
- isNamespaced: true,
- },
- {
- obj: &api.Service{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- Spec: api.ServiceSpec{
- ClusterIP: "1.2.3.4",
- Ports: []api.ServicePort{
- {
- Port: 80,
- Protocol: "TCP",
- },
- },
- },
- Status: api.ServiceStatus{
- LoadBalancer: api.LoadBalancerStatus{
- Ingress: []api.LoadBalancerIngress{
- {
- IP: "2.3.4.5",
- },
- },
- },
- },
- },
- isNamespaced: true,
- },
- {
- obj: &api.Endpoints{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- Subsets: []api.EndpointSubset{{
- Addresses: []api.EndpointAddress{{IP: "127.0.0.1"}, {IP: "localhost"}},
- Ports: []api.EndpointPort{{Port: 8080}},
- },
- }},
- isNamespaced: true,
- },
- {
- obj: &api.Namespace{
- ObjectMeta: api.ObjectMeta{Name: name},
- },
- isNamespaced: false,
- },
- {
- obj: &api.Secret{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- },
- isNamespaced: true,
- },
- {
- obj: &api.ServiceAccount{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- Secrets: []api.ObjectReference{},
- },
- isNamespaced: true,
- },
- {
- obj: &api.Node{
- ObjectMeta: api.ObjectMeta{Name: name},
- Status: api.NodeStatus{},
- },
- isNamespaced: false,
- },
- {
- obj: &api.PersistentVolume{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- Spec: api.PersistentVolumeSpec{},
- },
- isNamespaced: false,
- },
- {
- obj: &api.PersistentVolumeClaim{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- Spec: api.PersistentVolumeClaimSpec{},
- },
- isNamespaced: true,
- },
- {
- obj: &api.Event{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- Source: api.EventSource{Component: "kubelet"},
- Message: "Item 1",
- FirstTimestamp: unversioned.NewTime(time.Date(2014, time.January, 15, 0, 0, 0, 0, time.UTC)),
- LastTimestamp: unversioned.NewTime(time.Date(2014, time.January, 15, 0, 0, 0, 0, time.UTC)),
- Count: 1,
- Type: api.EventTypeNormal,
- },
- isNamespaced: true,
- },
- {
- obj: &api.LimitRange{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- },
- isNamespaced: true,
- },
- {
- obj: &api.ResourceQuota{
- ObjectMeta: api.ObjectMeta{Name: name, Namespace: namespaceName},
- },
- isNamespaced: true,
- },
- {
- obj: &api.ComponentStatus{
- Conditions: []api.ComponentCondition{
- {Type: api.ComponentHealthy, Status: api.ConditionTrue, Message: "ok", Error: ""},
- },
- },
- isNamespaced: false,
- },
- }
- for _, test := range table {
- if test.isNamespaced {
- // Expect output to include namespace when requested.
- printer := NewHumanReadablePrinter(PrintOptions{
- WithNamespace: true,
- ColumnLabels: []string{},
- })
- buffer := &bytes.Buffer{}
- err := printer.PrintObj(test.obj, buffer)
- if err != nil {
- t.Fatalf("An error occurred printing object: %#v", err)
- }
- matched := contains(strings.Fields(buffer.String()), fmt.Sprintf("%s", namespaceName))
- if !matched {
- t.Errorf("Expect printing object to contain namespace: %#v", test.obj)
- }
- } else {
- // Expect error when trying to get all namespaces for un-namespaced object.
- printer := NewHumanReadablePrinter(PrintOptions{
- WithNamespace: true,
- ColumnLabels: []string{},
- })
- buffer := &bytes.Buffer{}
- err := printer.PrintObj(test.obj, buffer)
- if err == nil {
- t.Errorf("Expected error when printing un-namespaced type")
- }
- }
- }
- }
- func TestPrintPod(t *testing.T) {
- tests := []struct {
- pod api.Pod
- expect string
- }{
- {
- // Test name, num of containers, restarts, container ready status
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test1"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- "test1\t1/2\tpodPhase\t6\t",
- },
- {
- // Test container error overwrites pod phase
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test2"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {State: api.ContainerState{Waiting: &api.ContainerStateWaiting{Reason: "ContainerWaitingReason"}}, RestartCount: 3},
- },
- },
- },
- "test2\t1/2\tContainerWaitingReason\t6\t",
- },
- {
- // Test the same as the above but with Terminated state and the first container overwrites the rest
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test3"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {State: api.ContainerState{Waiting: &api.ContainerStateWaiting{Reason: "ContainerWaitingReason"}}, RestartCount: 3},
- {State: api.ContainerState{Terminated: &api.ContainerStateTerminated{Reason: "ContainerTerminatedReason"}}, RestartCount: 3},
- },
- },
- },
- "test3\t0/2\tContainerWaitingReason\t6\t",
- },
- {
- // Test ready is not enough for reporting running
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test4"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {Ready: true, RestartCount: 3},
- },
- },
- },
- "test4\t1/2\tpodPhase\t6\t",
- },
- {
- // Test ready is not enough for reporting running
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test5"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Reason: "OutOfDisk",
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {Ready: true, RestartCount: 3},
- },
- },
- },
- "test5\t1/2\tOutOfDisk\t6\t",
- },
- }
- buf := bytes.NewBuffer([]byte{})
- printer := HumanReadablePrinter{hiddenObjNum: 0}
- for _, test := range tests {
- printer.printPod(&test.pod, buf, PrintOptions{false, false, false, false, true, false, false, "", []string{}})
- // We ignore time
- if !strings.HasPrefix(buf.String(), test.expect) {
- t.Fatalf("Expected: %s, got: %s", test.expect, buf.String())
- }
- buf.Reset()
- }
- if printer.hiddenObjNum > 0 {
- t.Fatalf("Expected hidden pods: 0, got: %d", printer.hiddenObjNum)
- }
- }
- func TestPrintNonTerminatedPod(t *testing.T) {
- tests := []struct {
- pod api.Pod
- expect string
- }{
- {
- // Test pod phase Running should be printed
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test1"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: api.PodRunning,
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- "test1\t1/2\tRunning\t6\t",
- },
- {
- // Test pod phase Pending should be printed
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test2"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: api.PodPending,
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- "test2\t1/2\tPending\t6\t",
- },
- {
- // Test pod phase Unknown should be printed
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test3"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: api.PodUnknown,
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- "test3\t1/2\tUnknown\t6\t",
- },
- {
- // Test pod phase Succeeded shouldn't be printed
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test4"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: api.PodSucceeded,
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- "",
- },
- {
- // Test pod phase Failed shouldn't be printed
- api.Pod{
- ObjectMeta: api.ObjectMeta{Name: "test5"},
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: api.PodFailed,
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {Ready: true, RestartCount: 3},
- },
- },
- },
- "",
- },
- }
- buf := bytes.NewBuffer([]byte{})
- printer := HumanReadablePrinter{hiddenObjNum: 0}
- for _, test := range tests {
- printer.printPod(&test.pod, buf, PrintOptions{false, false, false, false, false, false, false, "", []string{}})
- // We ignore time
- if !strings.HasPrefix(buf.String(), test.expect) {
- t.Fatalf("Expected: %s, got: %s", test.expect, buf.String())
- }
- buf.Reset()
- }
- if printer.hiddenObjNum != 2 {
- t.Fatalf("Expected hidden pods: 2, got: %d", printer.hiddenObjNum)
- }
- }
- func TestPrintPodWithLabels(t *testing.T) {
- tests := []struct {
- pod api.Pod
- labelColumns []string
- startsWith string
- endsWith string
- }{
- {
- // Test name, num of containers, restarts, container ready status
- api.Pod{
- ObjectMeta: api.ObjectMeta{
- Name: "test1",
- Labels: map[string]string{"col1": "asd", "COL2": "zxc"},
- },
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- []string{"col1", "COL2"},
- "test1\t1/2\tpodPhase\t6\t",
- "\tasd\tzxc\n",
- },
- {
- // Test name, num of containers, restarts, container ready status
- api.Pod{
- ObjectMeta: api.ObjectMeta{
- Name: "test1",
- Labels: map[string]string{"col1": "asd", "COL2": "zxc"},
- },
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- []string{},
- "test1\t1/2\tpodPhase\t6\t",
- "\n",
- },
- }
- buf := bytes.NewBuffer([]byte{})
- printer := HumanReadablePrinter{hiddenObjNum: 0}
- for _, test := range tests {
- printer.printPod(&test.pod, buf, PrintOptions{false, false, false, false, false, false, false, "", test.labelColumns})
- // We ignore time
- if !strings.HasPrefix(buf.String(), test.startsWith) || !strings.HasSuffix(buf.String(), test.endsWith) {
- t.Fatalf("Expected to start with: %s and end with: %s, but got: %s", test.startsWith, test.endsWith, buf.String())
- }
- buf.Reset()
- }
- if printer.hiddenObjNum > 0 {
- t.Fatalf("Expected hidden pods: 0, got: %d", printer.hiddenObjNum)
- }
- }
- type stringTestList []struct {
- name, got, exp string
- }
- func TestTranslateTimestamp(t *testing.T) {
- tl := stringTestList{
- {"a while from now", translateTimestamp(unversioned.Time{Time: time.Now().Add(2.1e9)}), "<invalid>"},
- {"almost now", translateTimestamp(unversioned.Time{Time: time.Now().Add(1.9e9)}), "0s"},
- {"now", translateTimestamp(unversioned.Time{Time: time.Now()}), "0s"},
- {"unknown", translateTimestamp(unversioned.Time{}), "<unknown>"},
- {"30 seconds ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-3e10)}), "30s"},
- {"5 minutes ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-3e11)}), "5m"},
- {"an hour ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-6e12)}), "1h"},
- {"2 days ago", translateTimestamp(unversioned.Time{Time: time.Now().UTC().AddDate(0, 0, -2)}), "2d"},
- {"months ago", translateTimestamp(unversioned.Time{Time: time.Now().UTC().AddDate(0, 0, -90)}), "90d"},
- {"10 years ago", translateTimestamp(unversioned.Time{Time: time.Now().UTC().AddDate(-10, 0, 0)}), "10y"},
- }
- for _, test := range tl {
- if test.got != test.exp {
- t.Errorf("On %v, expected '%v', but got '%v'",
- test.name, test.exp, test.got)
- }
- }
- }
- func TestPrintDeployment(t *testing.T) {
- tests := []struct {
- deployment extensions.Deployment
- expect string
- }{
- {
- extensions.Deployment{
- ObjectMeta: api.ObjectMeta{
- Name: "test1",
- CreationTimestamp: unversioned.Time{Time: time.Now().Add(1.9e9)},
- },
- Spec: extensions.DeploymentSpec{
- Replicas: 5,
- Template: api.PodTemplateSpec{
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- },
- },
- Status: extensions.DeploymentStatus{
- Replicas: 10,
- UpdatedReplicas: 2,
- AvailableReplicas: 1,
- UnavailableReplicas: 4,
- },
- },
- "test1\t5\t10\t2\t1\t0s\n",
- },
- }
- buf := bytes.NewBuffer([]byte{})
- for _, test := range tests {
- printDeployment(&test.deployment, buf, PrintOptions{false, false, false, false, true, false, false, "", []string{}})
- if buf.String() != test.expect {
- t.Fatalf("Expected: %s, got: %s", test.expect, buf.String())
- }
- buf.Reset()
- }
- }
- func TestPrintDaemonSet(t *testing.T) {
- tests := []struct {
- ds extensions.DaemonSet
- startsWith string
- }{
- {
- extensions.DaemonSet{
- ObjectMeta: api.ObjectMeta{
- Name: "test1",
- CreationTimestamp: unversioned.Time{Time: time.Now().Add(1.9e9)},
- },
- Spec: extensions.DaemonSetSpec{
- Template: api.PodTemplateSpec{
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- },
- },
- Status: extensions.DaemonSetStatus{
- CurrentNumberScheduled: 2,
- DesiredNumberScheduled: 3,
- },
- },
- "test1\t3\t2\t<none>\t0s\n",
- },
- }
- buf := bytes.NewBuffer([]byte{})
- for _, test := range tests {
- printDaemonSet(&test.ds, buf, PrintOptions{false, false, false, false, false, false, false, "", []string{}})
- if !strings.HasPrefix(buf.String(), test.startsWith) {
- t.Fatalf("Expected to start with %s but got %s", test.startsWith, buf.String())
- }
- buf.Reset()
- }
- }
- func TestPrintJob(t *testing.T) {
- completions := int32(2)
- tests := []struct {
- job batch.Job
- expect string
- }{
- {
- batch.Job{
- ObjectMeta: api.ObjectMeta{
- Name: "job1",
- CreationTimestamp: unversioned.Time{Time: time.Now().Add(1.9e9)},
- },
- Spec: batch.JobSpec{
- Completions: &completions,
- },
- Status: batch.JobStatus{
- Succeeded: 1,
- },
- },
- "job1\t2\t1\t0s\n",
- },
- {
- batch.Job{
- ObjectMeta: api.ObjectMeta{
- Name: "job2",
- CreationTimestamp: unversioned.Time{Time: time.Now().AddDate(-10, 0, 0)},
- },
- Spec: batch.JobSpec{
- Completions: nil,
- },
- Status: batch.JobStatus{
- Succeeded: 0,
- },
- },
- "job2\t<none>\t0\t10y\n",
- },
- }
- buf := bytes.NewBuffer([]byte{})
- for _, test := range tests {
- printJob(&test.job, buf, PrintOptions{false, false, false, false, true, false, false, "", []string{}})
- if buf.String() != test.expect {
- t.Fatalf("Expected: %s, got: %s", test.expect, buf.String())
- }
- buf.Reset()
- }
- }
- func TestPrintPodShowLabels(t *testing.T) {
- tests := []struct {
- pod api.Pod
- startsWith string
- endsWith string
- showLabels bool
- }{
- {
- // Test name, num of containers, restarts, container ready status
- api.Pod{
- ObjectMeta: api.ObjectMeta{
- Name: "test1",
- Labels: map[string]string{"col1": "asd", "COL2": "zxc"},
- },
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- "test1\t1/2\tpodPhase\t6\t",
- "\tCOL2=zxc,col1=asd\n",
- true,
- },
- {
- // Test name, num of containers, restarts, container ready status
- api.Pod{
- ObjectMeta: api.ObjectMeta{
- Name: "test1",
- Labels: map[string]string{"col3": "asd", "COL4": "zxc"},
- },
- Spec: api.PodSpec{Containers: make([]api.Container, 2)},
- Status: api.PodStatus{
- Phase: "podPhase",
- ContainerStatuses: []api.ContainerStatus{
- {Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
- {RestartCount: 3},
- },
- },
- },
- "test1\t1/2\tpodPhase\t6\t",
- "\n",
- false,
- },
- }
- buf := bytes.NewBuffer([]byte{})
- printer := HumanReadablePrinter{hiddenObjNum: 0}
- for _, test := range tests {
- printer.printPod(&test.pod, buf, PrintOptions{false, false, false, false, false, test.showLabels, false, "", []string{}})
- // We ignore time
- if !strings.HasPrefix(buf.String(), test.startsWith) || !strings.HasSuffix(buf.String(), test.endsWith) {
- t.Fatalf("Expected to start with: %s and end with: %s, but got: %s", test.startsWith, test.endsWith, buf.String())
- }
- buf.Reset()
- }
- if printer.hiddenObjNum > 0 {
- t.Fatalf("Expected hidden pods: 0, got: %d", printer.hiddenObjNum)
- }
- }
|