From 1923ad6acbc466e25963247dae6e6b122935a4ef Mon Sep 17 00:00:00 2001 From: Azareal Date: Wed, 29 Aug 2018 12:55:24 +1000 Subject: [PATCH] Let's zone in on the problem. --- general_test.go | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/general_test.go b/general_test.go index 2ac9cdac..5935d41d 100644 --- a/general_test.go +++ b/general_test.go @@ -3,16 +3,16 @@ package main import ( "bytes" "database/sql" - "errors" "log" "net/http" "net/http/httptest" - "runtime/debug" "strconv" "strings" "testing" "time" + "github.com/pkg/errors" + "./common" "./install/install" "./query_gen/lib" @@ -28,17 +28,17 @@ var installAdapter install.InstallAdapter func ResetTables() (err error) { err = installAdapter.InitDatabase() if err != nil { - return err + return errors.WithStack(err) } err = installAdapter.TableDefs() if err != nil { - return err + return errors.WithStack(err) } err = installAdapter.CreateAdmin() if err != nil { - return err + return errors.WithStack(err) } return installAdapter.InitialData() @@ -59,23 +59,23 @@ func gloinit() (err error) { err = common.LoadConfig() if err != nil { - return err + return errors.WithStack(err) } err = common.ProcessConfig() if err != nil { - return err + return errors.WithStack(err) } common.Themes, err = common.NewThemeList() if err != nil { - return err + return errors.WithStack(err) } common.SwitchToTestDB() var ok bool installAdapter, ok = install.Lookup(dbAdapter) if !ok { - return errors.New("We couldn't find the adapter '" + dbAdapter + "'") + return errors.WithStack(errors.New("We couldn't find the adapter '" + dbAdapter + "'")) } installAdapter.SetConfig(common.DbConfig.Host, common.DbConfig.Username, common.DbConfig.Password, common.DbConfig.Dbname, common.DbConfig.Port) @@ -85,16 +85,16 @@ func gloinit() (err error) { } err = InitDatabase() if err != nil { - return err + return errors.WithStack(err) } err = afterDBInit() if err != nil { - return err + return errors.WithStack(err) } router, err = NewGenRouter(http.FileServer(http.Dir("./uploads"))) if err != nil { - return err + return errors.WithStack(err) } gloinited = true return nil @@ -104,7 +104,7 @@ func init() { err := gloinit() if err != nil { log.Print("Something bad happened") - debug.PrintStack() + //debug.PrintStack() log.Fatal(err) } }