mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
90 lines
1.8 KiB
Go
90 lines
1.8 KiB
Go
package envconfig_test
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/vrischmann/envconfig"
|
|
)
|
|
|
|
func ExampleInit() {
|
|
var conf struct {
|
|
MySQL struct {
|
|
Host string
|
|
Port int
|
|
Database struct {
|
|
User string
|
|
Password string
|
|
Name string
|
|
}
|
|
Params struct {
|
|
Charset string `envconfig:"-"`
|
|
}
|
|
}
|
|
Log struct {
|
|
Path string `envconfig:"default=/var/log/mylog.log"`
|
|
Rotate bool `envconfig:"logRotate"`
|
|
}
|
|
NbWorkers int
|
|
Timeout time.Duration
|
|
Cassandra struct {
|
|
SSLCert string
|
|
SSLKey string
|
|
}
|
|
}
|
|
|
|
os.Setenv("MYSQL_HOST", "localhost")
|
|
os.Setenv("MYSQL_PORT", "3306")
|
|
os.Setenv("MYSQL_DATABASE_USER", "root")
|
|
os.Setenv("MYSQL_DATABASE_PASSWORD", "foobar")
|
|
os.Setenv("MYSQL_DATABASE_NAME", "default")
|
|
os.Setenv("logRotate", "true")
|
|
os.Setenv("NBWORKERS", "10")
|
|
os.Setenv("TIMEOUT", "120s")
|
|
os.Setenv("CASSANDRA_SSL_CERT", "/etc/cassandra/ssl.crt")
|
|
os.Setenv("CASSANDRA_SSL_KEY", "/etc/cassandra/ssl.key")
|
|
|
|
if err := envconfig.Init(&conf); err != nil {
|
|
fmt.Printf("err=%s\n", err)
|
|
}
|
|
|
|
fmt.Println(conf.MySQL.Database.User)
|
|
fmt.Println(conf.Log.Rotate)
|
|
fmt.Println(conf.Timeout)
|
|
fmt.Println(conf.Log.Path)
|
|
fmt.Println(conf.Cassandra.SSLCert)
|
|
fmt.Println(conf.Cassandra.SSLKey)
|
|
// Output:
|
|
// root
|
|
// true
|
|
// 2m0s
|
|
// /var/log/mylog.log
|
|
// /etc/cassandra/ssl.crt
|
|
// /etc/cassandra/ssl.key
|
|
}
|
|
|
|
func ExampleInitWithPrefix() {
|
|
var conf struct {
|
|
Name string
|
|
}
|
|
|
|
os.Setenv("NAME", "")
|
|
os.Setenv("FOO_NAME", "")
|
|
|
|
os.Setenv("NAME", "foobar")
|
|
|
|
err := envconfig.InitWithPrefix(&conf, "FOO")
|
|
fmt.Println(err)
|
|
|
|
os.Setenv("FOO_NAME", "foobar")
|
|
err = envconfig.InitWithPrefix(&conf, "FOO")
|
|
fmt.Println(err)
|
|
|
|
fmt.Println(conf.Name)
|
|
// Output:
|
|
// envconfig: keys FOO_NAME, foo_name not found
|
|
// <nil>
|
|
// foobar
|
|
}
|