2019-05-31 01:11:13 +03:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/micro/cli"
|
2019-06-21 15:36:11 +03:00
|
|
|
"github.com/micro/go-micro/config/cmd"
|
2019-05-31 01:11:13 +03:00
|
|
|
"github.com/micro/go-micro/config/source"
|
|
|
|
)
|
|
|
|
|
|
|
|
func test(t *testing.T, withContext bool) {
|
|
|
|
var src source.Source
|
|
|
|
|
|
|
|
// setup app
|
|
|
|
app := cmd.App()
|
|
|
|
app.Name = "testapp"
|
|
|
|
app.Flags = []cli.Flag{
|
|
|
|
cli.StringFlag{Name: "db-host"},
|
|
|
|
}
|
|
|
|
|
|
|
|
// with context
|
|
|
|
if withContext {
|
|
|
|
// set action
|
|
|
|
app.Action = func(c *cli.Context) {
|
|
|
|
src = WithContext(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
// run app
|
|
|
|
app.Run([]string{"run", "-db-host", "localhost"})
|
|
|
|
// no context
|
|
|
|
} else {
|
|
|
|
// set args
|
|
|
|
os.Args = []string{"run", "-db-host", "localhost"}
|
|
|
|
src = NewSource()
|
|
|
|
}
|
|
|
|
|
|
|
|
// test config
|
|
|
|
c, err := src.Read()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var actual map[string]interface{}
|
|
|
|
if err := json.Unmarshal(c.Data, &actual); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
actualDB := actual["db"].(map[string]interface{})
|
|
|
|
if actualDB["host"] != "localhost" {
|
|
|
|
t.Errorf("expected localhost, got %v", actualDB["name"])
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCliSource(t *testing.T) {
|
|
|
|
// without context
|
|
|
|
test(t, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCliSourceWithContext(t *testing.T) {
|
|
|
|
// with context
|
|
|
|
test(t, true)
|
|
|
|
}
|