Make "age" of pod print example static

This commit is contained in:
Janet Kuo 2015-07-08 11:22:29 -07:00
parent 56da0be884
commit 524e70d501

View File

@ -24,6 +24,7 @@ import (
"os" "os"
"reflect" "reflect"
"testing" "testing"
"time"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api" "github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/latest" "github.com/GoogleCloudPlatform/kubernetes/pkg/api/latest"
@ -35,6 +36,7 @@ import (
cmdutil "github.com/GoogleCloudPlatform/kubernetes/pkg/kubectl/cmd/util" cmdutil "github.com/GoogleCloudPlatform/kubernetes/pkg/kubectl/cmd/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/kubectl/resource" "github.com/GoogleCloudPlatform/kubernetes/pkg/kubectl/resource"
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime" "github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
) )
type internalType struct { type internalType struct {
@ -291,8 +293,11 @@ func ExamplePrintPodWithWideFormat() {
} }
nodeName := "kubernetes-minion-abcd" nodeName := "kubernetes-minion-abcd"
cmd := NewCmdRun(f, os.Stdout) cmd := NewCmdRun(f, os.Stdout)
ctrl := &api.Pod{ pod := &api.Pod{
ObjectMeta: api.ObjectMeta{Name: "test1"}, ObjectMeta: api.ObjectMeta{
Name: "test1",
CreationTimestamp: util.Time{time.Now().AddDate(-10, 0, 0)},
},
Spec: api.PodSpec{ Spec: api.PodSpec{
Containers: make([]api.Container, 2), Containers: make([]api.Container, 2),
NodeName: nodeName, NodeName: nodeName,
@ -305,13 +310,13 @@ func ExamplePrintPodWithWideFormat() {
}, },
}, },
} }
err := f.PrintObject(cmd, ctrl, os.Stdout) err := f.PrintObject(cmd, pod, os.Stdout)
if err != nil { if err != nil {
fmt.Printf("Unexpected error: %v", err) fmt.Printf("Unexpected error: %v", err)
} }
// Output: // Output:
// NAME READY STATUS RESTARTS AGE NODE // NAME READY STATUS RESTARTS AGE NODE
// test1 1/2 podPhase 6 292y kubernetes-minion-abcd // test1 1/2 podPhase 6 10y kubernetes-minion-abcd
} }
func TestNormalizationFuncGlobalExistance(t *testing.T) { func TestNormalizationFuncGlobalExistance(t *testing.T) {