mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-19 12:36:34 +00:00
* Feat: add the diy theme feature Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: add test case Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: update go mod to fix vela top can't show on some terminal Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: add test case Signed-off-by: HanMengnan <1448189829@qq.com> * Feat: embed theme file Signed-off-by: HanMengnan <1448189829@qq.com> * Feat: add theme selector and add test cases Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: fix type bug Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: fix some file bugs Signed-off-by: HanMengnan <1448189829@qq.com> Signed-off-by: HanMengnan <1448189829@qq.com>
56 lines
1.7 KiB
Go
56 lines
1.7 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 view
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestResourceView(t *testing.T) {
|
|
app := NewApp(nil, nil, "")
|
|
view := NewCommonView(app)
|
|
assert.Equal(t, view.Name(), "Resource")
|
|
|
|
view.Init()
|
|
assert.Equal(t, view.GetBorderColor(), view.app.config.Theme.Border.Table.Color())
|
|
assert.Equal(t, len(view.Hint()), 3)
|
|
|
|
view.BuildHeader([]string{"Name", "Data"})
|
|
assert.Equal(t, view.GetCell(0, 0).Color, view.app.config.Theme.Table.Header.Color())
|
|
assert.Equal(t, view.GetCell(0, 0).Text, "Name")
|
|
|
|
view.BuildBody([][]string{{"Name1", "Data1"}})
|
|
assert.Equal(t, view.GetCell(1, 0).Color, view.app.config.Theme.Table.Body.Color())
|
|
assert.Equal(t, view.GetCell(1, 0).Text, "Name1")
|
|
assert.Equal(t, view.GetCell(1, 1).Text, "Data1")
|
|
|
|
view.Refresh(true, func(func()) {})
|
|
assert.Equal(t, view.GetCell(0, 0).Text, "")
|
|
|
|
view.BuildHeader([]string{"Name", "Data"})
|
|
view.Refresh(false, func(func()) {})
|
|
assert.Equal(t, view.GetCell(0, 0).Text, "Name")
|
|
|
|
view.BuildHeader([]string{"Name", "Data"})
|
|
assert.Equal(t, view.GetCell(0, 0).Text, "Name")
|
|
|
|
view.Stop()
|
|
assert.Equal(t, view.GetCell(0, 0).Text, "")
|
|
}
|