mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 13:25:42 +00:00
This is not all of it as it is not possible (or at least I do not know of a way) to get all suggestions for a repo/project. Did this via loop searching mainly and taking the modernize suggestions.
52 lines
1.5 KiB
Go
52 lines
1.5 KiB
Go
// Copyright 2023 LiveKit, Inc.
|
|
//
|
|
// 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 selector_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/livekit/protocol/livekit"
|
|
|
|
"github.com/livekit/livekit-server/pkg/routing/selector"
|
|
)
|
|
|
|
func TestCPULoadSelector_SelectNode(t *testing.T) {
|
|
sel := selector.CPULoadSelector{CPULoadLimit: 0.8, SortBy: "random", Algorithm: "lowest"}
|
|
|
|
var nodes []*livekit.Node
|
|
_, err := sel.SelectNode(nodes)
|
|
require.Error(t, err, "should error no available nodes")
|
|
|
|
// Select a node with high load when no nodes with low load are available
|
|
nodes = []*livekit.Node{nodeLoadHigh}
|
|
if _, err := sel.SelectNode(nodes); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
// Select a node with low load when available
|
|
nodes = []*livekit.Node{nodeLoadLow, nodeLoadHigh}
|
|
for range 5 {
|
|
node, err := sel.SelectNode(nodes)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if node != nodeLoadLow {
|
|
t.Error("selected the wrong node")
|
|
}
|
|
}
|
|
}
|