mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 13:50:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2014 The Kubernetes Authors All rights reserved.
 | |
| 
 | |
| 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 event
 | |
| 
 | |
| import (
 | |
| 	"reflect"
 | |
| 	"testing"
 | |
| 
 | |
| 	"k8s.io/kubernetes/pkg/api"
 | |
| 	"k8s.io/kubernetes/pkg/api/testapi"
 | |
| 	"k8s.io/kubernetes/pkg/fields"
 | |
| 	"k8s.io/kubernetes/pkg/labels"
 | |
| 	"k8s.io/kubernetes/pkg/util"
 | |
| )
 | |
| 
 | |
| func testEvent(name string) *api.Event {
 | |
| 	return &api.Event{
 | |
| 		ObjectMeta: api.ObjectMeta{
 | |
| 			Name:      name,
 | |
| 			Namespace: "default",
 | |
| 		},
 | |
| 		InvolvedObject: api.ObjectReference{
 | |
| 			Namespace: "default",
 | |
| 		},
 | |
| 		Reason: "forTesting",
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestGetAttrs(t *testing.T) {
 | |
| 	eventA := &api.Event{
 | |
| 		ObjectMeta: api.ObjectMeta{
 | |
| 			Name:      "f0118",
 | |
| 			Namespace: "default",
 | |
| 		},
 | |
| 		InvolvedObject: api.ObjectReference{
 | |
| 			Kind:            "Pod",
 | |
| 			Name:            "foo",
 | |
| 			Namespace:       "baz",
 | |
| 			UID:             "long uid string",
 | |
| 			APIVersion:      testapi.Default.GroupVersion().String(),
 | |
| 			ResourceVersion: "0",
 | |
| 			FieldPath:       "",
 | |
| 		},
 | |
| 		Reason: "ForTesting",
 | |
| 		Source: api.EventSource{Component: "test"},
 | |
| 		Type:   api.EventTypeNormal,
 | |
| 	}
 | |
| 	label, field, err := getAttrs(eventA)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Unexpected error %v", err)
 | |
| 	}
 | |
| 	if e, a := label, (labels.Set{}); !reflect.DeepEqual(e, a) {
 | |
| 		t.Errorf("diff: %s", util.ObjectDiff(e, a))
 | |
| 	}
 | |
| 	expect := fields.Set{
 | |
| 		"metadata.name":                  "f0118",
 | |
| 		"metadata.namespace":             "default",
 | |
| 		"involvedObject.kind":            "Pod",
 | |
| 		"involvedObject.name":            "foo",
 | |
| 		"involvedObject.namespace":       "baz",
 | |
| 		"involvedObject.uid":             "long uid string",
 | |
| 		"involvedObject.apiVersion":      testapi.Default.GroupVersion().String(),
 | |
| 		"involvedObject.resourceVersion": "0",
 | |
| 		"involvedObject.fieldPath":       "",
 | |
| 		"reason":                         "ForTesting",
 | |
| 		"source":                         "test",
 | |
| 		"type":                           api.EventTypeNormal,
 | |
| 	}
 | |
| 	if e, a := expect, field; !reflect.DeepEqual(e, a) {
 | |
| 		t.Errorf("diff: %s", util.ObjectDiff(e, a))
 | |
| 	}
 | |
| }
 |