mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
69 lines
1.7 KiB
Go
69 lines
1.7 KiB
Go
/*
|
|
Copyright 2014 CoreOS, 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 etcdserver
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestBootstrapConfigVerify(t *testing.T) {
|
|
tests := []struct {
|
|
clusterSetting string
|
|
clst ClusterState
|
|
disc string
|
|
shouldError bool
|
|
}{
|
|
{"", ClusterStateValueNew, "", true},
|
|
{"", "", "http://discovery", true},
|
|
{
|
|
"node1=http://localhost:7001,node2=http://localhost:7001",
|
|
ClusterStateValueNew, "", true,
|
|
},
|
|
{
|
|
"node1=http://localhost:7001,node2=http://localhost:7002",
|
|
ClusterStateValueNew, "", false,
|
|
},
|
|
{
|
|
"node1=http://localhost:7001",
|
|
"", "http://discovery", false,
|
|
},
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
cluster := &Cluster{}
|
|
err := cluster.Set(tt.clusterSetting)
|
|
if err != nil && tt.shouldError {
|
|
continue
|
|
}
|
|
|
|
cfg := ServerConfig{
|
|
NodeID: 0x7350a9cd4dc16f76,
|
|
DiscoveryURL: tt.disc,
|
|
Cluster: cluster,
|
|
ClusterState: tt.clst,
|
|
}
|
|
err = cfg.VerifyBootstrapConfig()
|
|
if (err == nil) && tt.shouldError {
|
|
t.Errorf("%#v", *cluster)
|
|
t.Errorf("#%d: Got no error where one was expected", i)
|
|
}
|
|
if (err != nil) && !tt.shouldError {
|
|
t.Errorf("#%d: Got unexpected error: %v", i, err)
|
|
}
|
|
}
|
|
}
|