1
0
mirror of https://github.com/google/gops.git synced 2024-11-24 08:22:25 +02:00
gops/main_test.go
Tobias Klauser d64b2d5ce7 Fix formatting for multiple of 24 hours
In case a process has been running for a multiple of 24 hours, the
process runtime will be formatted as DD-MM:SS instead of DD-HH:MM:SS.
Fix this and add a test for fmtEtimeDuration.
2020-11-03 13:47:01 +01:00

81 lines
1.5 KiB
Go

// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"testing"
"time"
)
func Test_shortenVersion(t *testing.T) {
tests := []struct {
version string
want string
}{
{
version: "go1.8.1.typealias",
want: "go1.8.1.typealias",
},
{
version: "go1.9",
want: "go1.9",
},
{
version: "go1.9rc",
want: "go1.9rc",
},
{
version: "devel +990dac2723 Fri Jun 30 18:24:58 2017 +0000",
want: "devel +990dac2723",
},
}
for _, tt := range tests {
t.Run(tt.version, func(t *testing.T) {
if got := shortenVersion(tt.version); got != tt.want {
t.Errorf("shortenVersion() = %v, want %v", got, tt.want)
}
})
}
}
func Test_fmtEtimeDuration(t *testing.T) {
tests := []struct {
d time.Duration
want string
}{
{
want: "00:00",
},
{
d: 2*time.Minute + 5*time.Second + 400*time.Millisecond,
want: "02:05",
},
{
d: 1*time.Second + 500*time.Millisecond,
want: "00:02",
},
{
d: 2*time.Hour + 42*time.Minute + 12*time.Second,
want: "02:42:12",
},
{
d: 24 * time.Hour,
want: "01-00:00:00",
},
{
d: 24*time.Hour + 59*time.Minute + 59*time.Second,
want: "01-00:59:59",
},
}
for _, tt := range tests {
t.Run(tt.d.String(), func(t *testing.T) {
if got := fmtEtimeDuration(tt.d); got != tt.want {
t.Errorf("fmtEtimeDuration() = %v, want %v", got, tt.want)
}
})
}
}