2015-03-03 06:06:20 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
2015-03-03 06:06:20 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package record
|
|
|
|
|
|
|
|
import (
|
2015-06-09 00:53:24 +00:00
|
|
|
"fmt"
|
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/runtime"
|
|
|
|
"k8s.io/kubernetes/pkg/util"
|
2015-03-03 06:06:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// FakeRecorder is used as a fake during tests.
|
2015-06-09 00:53:24 +00:00
|
|
|
type FakeRecorder struct {
|
|
|
|
Events []string
|
|
|
|
}
|
2015-03-03 06:06:20 +00:00
|
|
|
|
2015-06-09 00:53:24 +00:00
|
|
|
func (f *FakeRecorder) Event(object runtime.Object, reason, message string) {
|
|
|
|
f.Events = append(f.Events, fmt.Sprintf("%s %s", reason, message))
|
|
|
|
}
|
2015-03-03 06:06:20 +00:00
|
|
|
|
2015-06-09 00:53:24 +00:00
|
|
|
func (f *FakeRecorder) Eventf(object runtime.Object, reason, messageFmt string, args ...interface{}) {
|
|
|
|
f.Events = append(f.Events, fmt.Sprintf(reason+" "+messageFmt, args...))
|
|
|
|
}
|
2015-04-23 18:46:04 +00:00
|
|
|
|
|
|
|
func (f *FakeRecorder) PastEventf(object runtime.Object, timestamp util.Time, reason, messageFmt string, args ...interface{}) {
|
|
|
|
}
|