Files
kubevela/references/cli/top/utils/time_test.go
Siege Lion 67f1901015 Refactor: rename interfaces and functions in vela top to promote semanticity (#4727)
* Fix: rename two interface name to make the name more specific

1. rename the ResourceListener to ViewListener
2. rename the Component to View

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: update the type of ”Main“ field in component.app

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: rename some functions of pageStack to make the name more readable

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: fix some name

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: add more test case

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: fix time format bug

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: fix test case in cluster_namespace_test.go

Signed-off-by: HanMengnan <1448189829@qq.com>

Signed-off-by: HanMengnan <1448189829@qq.com>
2022-09-15 17:10:18 +08:00

43 lines
1.2 KiB
Go

/*
Copyright 2022 The KubeVela 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 utils
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestTimeFormat(t *testing.T) {
t1, err1 := time.ParseDuration("1.5h")
assert.NoError(t, err1)
assert.Equal(t, TimeFormat(t1), "1h30m0s")
t2, err2 := time.ParseDuration("25h")
assert.NoError(t, err2)
assert.Equal(t, TimeFormat(t2), "1d1h0m0s")
t3, err3 := time.ParseDuration("0.1h")
assert.NoError(t, err3)
assert.Equal(t, TimeFormat(t3), "6m0s")
t4, err4 := time.ParseDuration("0.001h")
assert.NoError(t, err4)
assert.Equal(t, TimeFormat(t4), "3s")
t5, err5 := time.ParseDuration("0.00001h")
assert.NoError(t, err5)
assert.Equal(t, TimeFormat(t5), "36ms")
}