-
Notifications
You must be signed in to change notification settings - Fork 500
/
test_util.go
70 lines (60 loc) · 2.03 KB
/
test_util.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
68
69
70
/*
* Copyright (c) 2017, MegaEase
* All rights reserved.
*
* 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
*
* https://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 cluster
import (
"fmt"
"github.com/phayes/freeport"
"github.com/megaease/easegress/pkg/env"
"github.com/megaease/easegress/pkg/option"
)
func check(e error) {
if e != nil {
panic(e)
}
}
// CreateOptionsForTest creates a options for testing purposes.
func CreateOptionsForTest(tempDir string) *option.Options {
ports, err := freeport.GetFreePorts(3)
check(err)
name := "test-member-x"
opt := option.New()
opt.Name = name
opt.ClusterName = "test-cluster"
opt.ClusterRole = "primary"
opt.ClusterRequestTimeout = "10s"
opt.Cluster.ListenClientURLs = []string{fmt.Sprintf("https://localhost:%d", ports[0])}
opt.Cluster.AdvertiseClientURLs = opt.Cluster.ListenClientURLs
opt.Cluster.ListenPeerURLs = []string{fmt.Sprintf("https://localhost:%d", ports[1])}
opt.Cluster.InitialAdvertisePeerURLs = opt.Cluster.ListenPeerURLs
opt.Cluster.InitialCluster = make(map[string]string)
opt.Cluster.InitialCluster[name] = opt.Cluster.InitialAdvertisePeerURLs[0]
opt.APIAddr = fmt.Sprintf("localhost:%d", ports[2])
opt.DataDir = fmt.Sprintf("%s/data", tempDir)
opt.LogDir = fmt.Sprintf("%s/log", tempDir)
opt.MemberDir = fmt.Sprintf("%s/member", tempDir)
err = opt.Parse()
check(err)
env.InitServerDir(opt)
return opt
}
// CreateClusterForTest creates a cluster for testing purposes.
func CreateClusterForTest(tempDir string) Cluster {
opt := CreateOptionsForTest(tempDir)
clusterInstance, err := New(opt)
check(err)
return clusterInstance
}