mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #6151 from heyitsanthony/configfile-defaults
embed: load config defaults before loading from file
This commit is contained in:
commit
f5549cba2a
34
e2e/etcd_config_test.go
Normal file
34
e2e/etcd_config_test.go
Normal 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)
|
||||
}
|
||||
}
|
@ -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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user