Files
node-problem-detector/pkg/util/helpers_test.go
2021-05-10 21:58:38 +00:00

148 lines
4.0 KiB
Go

/*
Copyright 2018 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 util
import (
"testing"
"time"
)
func TestGetStartTime(t *testing.T) {
now := time.Now()
testCases := []struct {
name string
uptime time.Duration
lookback string
delay string
expectErr bool
expectedStartTime time.Time
}{
{
name: "bad lookback value",
uptime: 0,
lookback: "abc",
delay: "",
expectErr: true,
expectedStartTime: time.Time{},
},
{
name: "bad delay value",
uptime: 0,
lookback: "",
delay: "abc",
expectErr: true,
expectedStartTime: time.Time{},
},
{
name: "node is just up, no lookback and delay",
uptime: 0,
lookback: "",
delay: "",
expectErr: false,
expectedStartTime: now,
},
{
name: "no delay, lookback > uptime",
uptime: 5 * time.Second,
lookback: "7s",
delay: "",
expectErr: false,
expectedStartTime: now.Add(-5 * time.Second),
},
{
name: "no delay, lookback < uptime",
uptime: 5 * time.Second,
lookback: "3s",
delay: "",
expectErr: false,
expectedStartTime: now.Add(-3 * time.Second),
},
{
name: "no lookback, delay > uptime",
uptime: 5 * time.Second,
lookback: "",
delay: "7s",
expectErr: false,
expectedStartTime: now.Add(2 * time.Second),
},
{
name: "no lookback, delay < uptime",
uptime: 5 * time.Second,
lookback: "",
delay: "3s",
expectErr: false,
expectedStartTime: now,
},
{
name: "uptime < delay",
uptime: 10 * time.Second,
lookback: "6s",
delay: "12s",
expectErr: false,
expectedStartTime: now.Add(2 * time.Second),
},
{
name: "uptime > delay, uptime < lookback",
uptime: 10 * time.Second,
lookback: "12s",
delay: "7s",
expectErr: false,
expectedStartTime: now.Add(-3 * time.Second),
},
{
name: "uptime > delay, uptime > lookback, lookback > uptime - delay",
uptime: 10 * time.Second,
lookback: "6s",
delay: "7s",
expectErr: false,
expectedStartTime: now.Add(-3 * time.Second),
},
{
name: "uptime > delay, uptime > lookback, lookback < uptime - delay",
uptime: 10 * time.Second,
lookback: "2s",
delay: "7s",
expectErr: false,
expectedStartTime: now.Add(-2 * time.Second),
},
}
for _, test := range testCases {
t.Run(test.name, func(t *testing.T) {
startTime, err := GetStartTime(now, test.uptime, test.lookback, test.delay)
if test.expectErr && err == nil {
t.Fatalf("Expect to get error, but got no returned error.")
}
if !test.expectErr && err != nil {
t.Fatalf("Expect to get no error, but got returned error: %v", err)
}
if test.expectedStartTime != startTime {
t.Fatalf("Expect to get start time %v, but got %v", test.expectedStartTime, startTime)
}
})
}
}
func TestGetOSVersion(t *testing.T) {
ver, err := GetOSVersion()
if err != nil {
t.Errorf("cannot get os version, %s", err)
}
if ver == "" {
t.Errorf("GetOSVersion() should not be empty string")
}
}