mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 17:30:56 +00:00
beego: run mode support test
This commit is contained in:
parent
4786fb0948
commit
675643c68d
1
beego.go
1
beego.go
@ -384,6 +384,7 @@ func initBeforeHttpRun() {
|
||||
// this function is for test package init
|
||||
func TestBeegoInit(apppath string) {
|
||||
AppPath = apppath
|
||||
RunMode = "test"
|
||||
AppConfigPath = filepath.Join(AppPath, "conf", "app.conf")
|
||||
err := ParseConfig()
|
||||
if err != nil && !os.IsNotExist(err) {
|
||||
|
@ -177,8 +177,12 @@ func ParseConfig() (err error) {
|
||||
if err != nil {
|
||||
AppConfig = config.NewFakeConfig()
|
||||
return err
|
||||
} else {
|
||||
if v := AppConfig.String(RunMode + "::HttpAddr"); v != "" {
|
||||
HttpAddr = v
|
||||
} else {
|
||||
HttpAddr = AppConfig.String("HttpAddr")
|
||||
}
|
||||
|
||||
if v, err := AppConfig.Int("HttpPort"); err == nil {
|
||||
HttpPort = v
|
||||
|
Loading…
Reference in New Issue
Block a user