/* Copyright 2019 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 trace import ( "bytes" "os" "strings" "testing" "time" "k8s.io/klog" ) func TestStep(t *testing.T) { tests := []struct { name string inputString string expectedTrace *Trace }{ { name: "When string is empty", inputString: "", expectedTrace: &Trace{ steps: []traceStep{ {stepTime: time.Now(), msg: ""}, }, }, }, { name: "When string is not empty", inputString: "test2", expectedTrace: &Trace{ steps: []traceStep{ {stepTime: time.Now(), msg: "test2"}, }, }, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { sampleTrace := &Trace{} sampleTrace.Step(tt.inputString) if sampleTrace.steps[0].msg != tt.expectedTrace.steps[0].msg { t.Errorf("Expected %v \n Got %v \n", tt.expectedTrace, sampleTrace) } }) } } func TestTotalTime(t *testing.T) { test := struct { name string inputTrace *Trace }{ name: "Test with current system time", inputTrace: &Trace{ startTime: time.Now(), }, } t.Run(test.name, func(t *testing.T) { got := test.inputTrace.TotalTime() if got == 0 { t.Errorf("Expected total time 0, got %d \n", got) } }) } func TestLog(t *testing.T) { tests := []struct { name string msg string fields []Field expectedMessages []string sampleTrace *Trace }{ { name: "Check the log dump with 3 msg", expectedMessages: []string{ "msg1", "msg2", "msg3", }, sampleTrace: &Trace{ name: "Sample Trace", steps: []traceStep{ {stepTime: time.Now(), msg: "msg1"}, {stepTime: time.Now(), msg: "msg2"}, {stepTime: time.Now(), msg: "msg3"}, }, }, }, { name: "Check formatting", expectedMessages: []string{ "URL:/api,count:3", "msg1 str:text,int:2,bool:false", "msg2 x:1", }, sampleTrace: &Trace{ name: "Sample Trace", fields: []Field{{"URL", "/api"}, {"count", 3}}, steps: []traceStep{ {stepTime: time.Now(), msg: "msg1", fields: []Field{{"str", "text"}, {"int", 2}, {"bool", false}}}, {stepTime: time.Now(), msg: "msg2", fields: []Field{{"x", "1"}}}, }, }, }, { name: "Check fixture formatted", expectedMessages: []string{ "URL:/api,count:3", "msg1 str:text,int:2,bool:false", "msg2 x:1", }, sampleTrace: fieldsTraceFixture(), }, } for _, test := range tests { t.Run(test.name, func(t *testing.T) { var buf bytes.Buffer klog.SetOutput(&buf) test.sampleTrace.Log() for _, msg := range test.expectedMessages { if !strings.Contains(buf.String(), msg) { t.Errorf("\nMsg %q not found in log: \n%v\n", msg, buf.String()) } } }) } } func fieldsTraceFixture() *Trace { trace := New("Sample Trace", Field{"URL", "/api"}, Field{"count", 3}) trace.Step("msg1", Field{"str", "text"}, Field{"int", 2}, Field{"bool", false}) trace.Step("msg2", Field{"x", "1"}) return trace } func TestLogIfLong(t *testing.T) { currentTime := time.Now() type mutate struct { delay time.Duration msg string } tests := []*struct { name string expectedMessages []string sampleTrace *Trace threshold time.Duration mutateInfo []mutate // mutateInfo contains the information to mutate step's time to simulate multiple tests without waiting. }{ { name: "When threshold is 500 and msg 2 has highest share", expectedMessages: []string{ "msg2", }, mutateInfo: []mutate{ {10, "msg1"}, {1000, "msg2"}, {0, "msg3"}, }, threshold: 500, }, { name: "When threshold is 10 and msg 3 has highest share", expectedMessages: []string{ "msg3", }, mutateInfo: []mutate{ {0, "msg1"}, {0, "msg2"}, {50, "msg3"}, }, threshold: 10, }, { name: "When threshold is 0 and all msg have same share", expectedMessages: []string{ "msg1", "msg2", "msg3", }, mutateInfo: []mutate{ {0, "msg1"}, {0, "msg2"}, {0, "msg3"}, }, threshold: 0, }, { name: "When threshold is 20 and all msg 1 has highest share", expectedMessages: []string{}, mutateInfo: []mutate{ {10, "msg1"}, {0, "msg2"}, {0, "msg3"}, }, threshold: 20, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { var buf bytes.Buffer klog.SetOutput(&buf) tt.sampleTrace = New("Test trace") for index, mod := range tt.mutateInfo { tt.sampleTrace.Step(mod.msg) tt.sampleTrace.steps[index].stepTime = currentTime.Add(mod.delay) } tt.sampleTrace.LogIfLong(tt.threshold) for _, msg := range tt.expectedMessages { if msg != "" && !strings.Contains(buf.String(), msg) { t.Errorf("Msg %q expected in trace log: \n%v\n", msg, buf.String()) } } }) } } func ExampleTrace_Step() { t := New("frobber") time.Sleep(5 * time.Millisecond) t.Step("reticulated splines") // took 5ms time.Sleep(10 * time.Millisecond) t.Step("sequenced particles") // took 10ms klog.SetOutput(os.Stdout) // change output from stderr to stdout t.Log() }