test: quit

This commit is contained in:
loveuer 2024-01-13 19:59:24 +08:00
parent 286f010346
commit 53ed37a218

View File

@ -7,27 +7,22 @@ import (
"time"
)
var (
app = nf.New()
quit = make(chan bool)
)
func main() {
app := nf.New()
quit := make(chan bool)
app.Get("/name", handleGet)
go func() {
err := app.Run(":7383")
err := app.Run(":80")
log.Print("run with err=", err)
}()
go func() {
time.Sleep(5 * time.Second)
err := app.Shutdown(context.TODO())
log.Print("quit with err=", err)
quit <- true
}()
<-quit
log.Print("quited")
}
func handleGet(c *nf.Ctx) error {
@ -45,5 +40,13 @@ func handleGet(c *nf.Ctx) error {
return nf.NewNFError(400, err.Error())
}
if req.Name == "quit" {
go func() {
time.Sleep(2 * time.Second)
log.Print("app quit = ", app.Shutdown(context.TODO()))
}()
}
return c.JSON(nf.Map{"req_map": req})
}