2022-05-28 05:42:28 +03:00
|
|
|
// Copyright 2017 Manu Martinez-Almeida. All rights reserved.
|
2017-06-12 09:04:52 +03:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-09-21 05:16:51 +03:00
|
|
|
package gin
|
|
|
|
|
2018-08-12 05:12:33 +03:00
|
|
|
import "net/http"
|
2016-09-21 05:16:51 +03:00
|
|
|
|
2017-07-02 18:06:53 +03:00
|
|
|
// CreateTestContext returns a fresh engine and context for testing purposes
|
2016-09-21 05:16:51 +03:00
|
|
|
func CreateTestContext(w http.ResponseWriter) (c *Context, r *Engine) {
|
|
|
|
r = New()
|
2022-11-06 12:08:11 +03:00
|
|
|
c = r.allocateContext(0)
|
|
|
|
c.reset()
|
|
|
|
c.writermem.reset(w)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateTestContextOnly returns a fresh context base on the engine for testing purposes
|
|
|
|
func CreateTestContextOnly(w http.ResponseWriter, r *Engine) (c *Context) {
|
|
|
|
c = r.allocateContext(r.maxParams)
|
2016-09-21 05:16:51 +03:00
|
|
|
c.reset()
|
|
|
|
c.writermem.reset(w)
|
|
|
|
return
|
|
|
|
}
|