| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*
- 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.SetMembersFromString(tt.clusterSetting)
- if err != nil && tt.shouldError {
- continue
- }
- cfg := ServerConfig{
- Name: "node1",
- 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)
- }
- }
- }
|