Merge pull request #6151 from heyitsanthony/configfile-defaults

embed: load config defaults before loading from file
release-3.1
Xiang Li 2016-08-10 11:27:57 -07:00 committed by GitHub
commit f5549cba2a
3 changed files with 42 additions and 4 deletions

34
e2e/etcd_config_test.go Normal file
View File

@ -0,0 +1,34 @@
// Copyright 2016 The etcd Authors
//
// 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 e2e
import (
"testing"
)
const exampleConfigFile = "../etcd.conf.yml.sample"
func TestEtcdExampleConfig(t *testing.T) {
proc, err := spawnCmd([]string{binDir + "/etcd", "--config-file", exampleConfigFile})
if err != nil {
t.Fatal(err)
}
if err = waitReadyExpectProc(proc, false); err != nil {
t.Fatal(err)
}
if err = proc.Stop(); err != nil {
t.Fatal(err)
}
}

View File

@ -446,8 +446,13 @@ func (ep *etcdProcess) Stop() error {
}
func (ep *etcdProcess) waitReady() error {
defer close(ep.donec)
return waitReadyExpectProc(ep.proc, ep.cfg.isProxy)
}
func waitReadyExpectProc(exproc *expect.ExpectProcess, isProxy bool) error {
readyStrs := []string{"enabled capabilities for version", "published"}
if ep.cfg.isProxy {
if isProxy {
readyStrs = []string{"httpproxy: endpoints found"}
}
c := 0
@ -460,8 +465,7 @@ func (ep *etcdProcess) waitReady() error {
}
return c == len(readyStrs)
}
_, err := ep.proc.ExpectFunc(matchSet)
close(ep.donec)
_, err := exproc.ExpectFunc(matchSet)
return err
}

View File

@ -160,7 +160,7 @@ func NewConfig() *Config {
}
func ConfigFromFile(path string) (*Config, error) {
cfg := &configYAML{}
cfg := &configYAML{Config: *NewConfig()}
if err := cfg.configFromFile(path); err != nil {
return nil, err
}