Utku Ozdemir 2dd0964c5f
refactor: use resource watches on dashboard
Instead of doing excessive get/list requests, do a watch per node in an infinite retry.

Additionally, refactor the dashboard code to make the various data listener namings more consistent and reorganize the packages.

Closes siderolabs/talos#6960.

Signed-off-by: Utku Ozdemir <utku.ozdemir@siderolabs.com>
2023-03-17 23:06:35 +01:00

40 lines
1.0 KiB
Go

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package components_test
import (
"testing"
"github.com/siderolabs/talos/internal/pkg/dashboard/apidata"
"github.com/siderolabs/talos/internal/pkg/dashboard/components"
"github.com/siderolabs/talos/pkg/machinery/api/machine"
)
func TestUpdate(t *testing.T) {
testProcessTable := components.NewProcessTable()
testData := &apidata.Data{
Nodes: map[string]*apidata.Node{
"node1": {
Processes: &machine.Process{
Processes: []*machine.ProcessInfo{},
},
ProcsDiff: map[int32]*machine.ProcessInfo{
1: {},
},
Series: map[string][]float64{},
},
"node2": {
ProcsDiff: map[int32]*machine.ProcessInfo{
1: {},
},
},
},
}
testProcessTable.OnAPIDataChange("node1", testData)
// Node2 does not have processes, without the check it panics
testProcessTable.OnAPIDataChange("node2", testData)
}