func main() { app.Init(cfg.EnvProvider{Namespace: Namespace}) // Pull options from the config. var conn *db.DB if _, errHost := cfg.String(cfgWebHost); errHost != nil { xenia.Println("Configuring MongoDB") mongoURI := cfg.MustURL(cfgMongoURI) err := db.RegMasterSession("startup", mongoURI.Path, mongoURI.String(), 0) if err != nil { xenia.Println("Unable to initialize MongoDB") os.Exit(1) } conn, err = db.NewMGO("startup", mongoURI.Path) if err != nil { xenia.Println("Unable to get MongoDB session") os.Exit(1) } defer conn.CloseMGO("startup") } xenia.AddCommand( cmddb.GetCommands(conn), cmdquery.GetCommands(), cmdscript.GetCommands(), cmdregex.GetCommands(), cmdmask.GetCommands(), cmdrelationship.GetCommands(), cmdview.GetCommands(), ) xenia.Execute() }
func teardownAgg(t *testing.T, db *db.DB) { if err := aggfix.Remove(tests.Context, db, aggPrefix); err != nil { t.Fatalf("%s\tShould be able to remove the forms and submissions : %v", tests.Failed, err) } t.Logf("%s\tShould be able to remove the forms and submissions.", tests.Success) db.CloseMGO(tests.Context) tests.DisplayLog() }
func teardown(t *testing.T, db *db.DB) { if err := galleryfix.Remove(tests.Context, db, prefix); err != nil { t.Fatalf("%s\tShould be able to remove the galleries : %v", tests.Failed, err) } t.Logf("%s\tShould be able to remove the galleries.", tests.Success) db.CloseMGO(tests.Context) tests.DisplayLog() }
// teardown deinitializes for each indivdual test. func teardown(t *testing.T, db *db.DB) { if err := mfix.Remove(db, collection); err != nil { t.Fatalf("%s\tShould be able to remove the query mask : %v", tests.Failed, err) } t.Logf("%s\tShould be able to remove the query mask.", tests.Success) db.CloseMGO(tests.Context) tests.DisplayLog() }
// teardown deinitializes for each indivdual test. func teardown(t *testing.T, db *db.DB) { relationshipfix.Remove(tests.Context, db, "RTEST_") viewfix.Remove(tests.Context, db, "VTEST_") rfix.Remove(db, "RTEST_") unloadItems(tests.Context, db) unloadTestData(t, db) db.CloseMGO(tests.Context) db.CloseCayley(tests.Context) tests.DisplayLog() }
func teardown(t *testing.T, db *db.DB) { if err := formfix.Remove(tests.Context, db, prefix); err != nil { t.Fatalf("%s\tShould be able to remove the form fixtures from the database : %v", tests.Failed, err) } t.Logf("%s\tShould be able to remove the form fixtures from the database.", tests.Success) if err := galleryfix.Remove(tests.Context, db, prefix); err != nil { t.Fatalf("%s\tShould be able to remove the gallery fixtures from the database : %v", tests.Failed, err) } t.Logf("%s\tShould be able to remove the gallery fixtures from the database.", tests.Success) if err := submissionfix.Remove(tests.Context, db, prefix); err != nil { t.Fatalf("%s\tShould be able to remove the submission fixtures from the database : %v", tests.Failed, err) } t.Logf("%s\tShould be able to remove the submission fixtures from the database.", tests.Success) db.CloseMGO(tests.Context) tests.DisplayLog() }
func main() { // Initialize the configuration if err := cfg.Init(cfg.EnvProvider{Namespace: "WIRE"}); err != nil { wire.Println("Unable to initialize configuration") os.Exit(1) } // Initialize the logging logLevel := func() int { ll, err := cfg.Int(cfgLoggingLevel) if err != nil { return log.NONE } return ll } log.Init(os.Stderr, logLevel, log.Ldefault) wire.Println("Using log level", logLevel()) // Pull options from the config. var mgoDB *db.DB var graphDB *cayley.Handle // Configure MongoDB. wire.Println("Configuring MongoDB") mongoURI := cfg.MustURL(cfgMongoURI) err := db.RegMasterSession("startup", mongoURI.Path, mongoURI.String(), 0) if err != nil { wire.Println("Unable to initialize MongoDB") os.Exit(1) } mgoDB, err = db.NewMGO("startup", mongoURI.Path) if err != nil { wire.Println("Unable to get MongoDB session") os.Exit(1) } defer mgoDB.CloseMGO("") // Configure Cayley. wire.Println("Configuring Cayley") if err := mgoDB.NewCayley("startup", mongoURI.Path); err != nil { wire.Println("Unable to get Cayley support") } graphDB, err = mgoDB.GraphHandle("startup") if err != nil { wire.Println("Unable to get Cayley handle") os.Exit(1) } // Add the graph and view commands to the CLI tool. wire.AddCommand( cmdview.GetCommands(mgoDB, graphDB), ) // Execute the command. wire.Execute() }
// teardown deinitializes for each indivdual test. func teardown(t *testing.T, db *db.DB, store *cayley.Handle) { db.CloseMGO(tests.Context) store.Close() tests.DisplayLog() }