-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
cockroach_test.go
67 lines (59 loc) · 1.72 KB
/
cockroach_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright 2023 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package install
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestVirtualClusterLabel(t *testing.T) {
testCases := []struct {
name string
virtualClusterName string
sqlInstance int
expectedLabel string
}{
{
name: "empty tenant name",
virtualClusterName: "",
expectedLabel: "cockroach-system",
},
{
name: "system tenant name",
virtualClusterName: "system",
expectedLabel: "cockroach-system",
},
{
name: "simple app tenant name",
virtualClusterName: "a",
sqlInstance: 1,
expectedLabel: "cockroach-a_1",
},
{
name: "tenant name with hyphens",
virtualClusterName: "tenant-a-1",
sqlInstance: 1,
expectedLabel: "cockroach-tenant-a-1_1",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
label := VirtualClusterLabel(tc.virtualClusterName, tc.sqlInstance)
require.Equal(t, tc.expectedLabel, label)
nameFromLabel, instanceFromLabel, err := VirtualClusterInfoFromLabel(label)
require.NoError(t, err)
expectedTenantName := tc.virtualClusterName
if tc.virtualClusterName == "" {
expectedTenantName = "system"
}
require.Equal(t, expectedTenantName, nameFromLabel)
require.Equal(t, tc.sqlInstance, instanceFromLabel)
})
}
}