mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 20:10:55 +00:00
commit
27b7a8f743
@ -499,6 +499,41 @@ func (c *Controller) GetFile(key string) (multipart.File, *multipart.FileHeader,
|
|||||||
return c.Ctx.Request.FormFile(key)
|
return c.Ctx.Request.FormFile(key)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetFiles return multi-upload files
|
||||||
|
// files, err:=c.Getfiles("myfiles")
|
||||||
|
// if err != nil {
|
||||||
|
// http.Error(w, err.Error(), http.StatusNoContent)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// for i, _ := range files {
|
||||||
|
// //for each fileheader, get a handle to the actual file
|
||||||
|
// file, err := files[i].Open()
|
||||||
|
// defer file.Close()
|
||||||
|
// if err != nil {
|
||||||
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// //create destination file making sure the path is writeable.
|
||||||
|
// dst, err := os.Create("upload/" + files[i].Filename)
|
||||||
|
// defer dst.Close()
|
||||||
|
// if err != nil {
|
||||||
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// //copy the uploaded file to the destination file
|
||||||
|
// if _, err := io.Copy(dst, file); err != nil {
|
||||||
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
func (c *Controller) GetFiles(key string) ([]*multipart.FileHeader, error) {
|
||||||
|
files, ok := c.Ctx.Request.MultipartForm.File["key"]
|
||||||
|
if ok {
|
||||||
|
return files, nil
|
||||||
|
}
|
||||||
|
return nil, http.ErrMissingFile
|
||||||
|
}
|
||||||
|
|
||||||
// SaveToFile saves uploaded file to new path.
|
// SaveToFile saves uploaded file to new path.
|
||||||
// it only operates the first one of mutil-upload form file field.
|
// it only operates the first one of mutil-upload form file field.
|
||||||
func (c *Controller) SaveToFile(fromfile, tofile string) error {
|
func (c *Controller) SaveToFile(fromfile, tofile string) error {
|
||||||
|
@ -36,7 +36,6 @@ import (
|
|||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
@ -48,26 +47,50 @@ import (
|
|||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var defaultSetting = BeegoHttpSettings{UserAgent: "beegoServer", ConnectTimeout: 60 * time.Second, ReadWriteTimeout: 60 * time.Second, Gzip: true}
|
var defaultSetting = BeegoHttpSettings{
|
||||||
|
UserAgent: "beegoServer",
|
||||||
|
ConnectTimeout: 60 * time.Second,
|
||||||
|
ReadWriteTimeout: 60 * time.Second,
|
||||||
|
Gzip: true,
|
||||||
|
DumpBody: true,
|
||||||
|
}
|
||||||
|
|
||||||
var defaultCookieJar http.CookieJar
|
var defaultCookieJar http.CookieJar
|
||||||
|
var settingMutex sync.Mutex
|
||||||
|
|
||||||
// createDefaultCookie creates a global cookiejar to store cookies.
|
// createDefaultCookie creates a global cookiejar to store cookies.
|
||||||
func createDefaultCookie() {
|
func createDefaultCookie() {
|
||||||
|
settingMutex.Lock()
|
||||||
|
defer settingMutex.Unlock()
|
||||||
defaultCookieJar, _ = cookiejar.New(nil)
|
defaultCookieJar, _ = cookiejar.New(nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Overwrite default settings
|
// Overwrite default settings
|
||||||
func SetDefaultSetting(setting BeegoHttpSettings) {
|
func SetDefaultSetting(setting BeegoHttpSettings) {
|
||||||
|
settingMutex.Lock()
|
||||||
|
defer settingMutex.Unlock()
|
||||||
defaultSetting = setting
|
defaultSetting = setting
|
||||||
|
if defaultSetting.ConnectTimeout == 0 {
|
||||||
|
defaultSetting.ConnectTimeout = 60 * time.Second
|
||||||
|
}
|
||||||
|
if defaultSetting.ReadWriteTimeout == 0 {
|
||||||
|
defaultSetting.ReadWriteTimeout = 60 * time.Second
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// return *BeegoHttpRequest with specific method
|
// return *BeegoHttpRequest with specific method
|
||||||
func newBeegoRequest(url, method string) *BeegoHttpRequest {
|
func NewBeegoRequest(rawurl, method string) *BeegoHttpRequest {
|
||||||
var resp http.Response
|
var resp http.Response
|
||||||
|
u, err := url.Parse(rawurl)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
req := http.Request{
|
req := http.Request{
|
||||||
|
URL: u,
|
||||||
Method: method,
|
Method: method,
|
||||||
Header: make(http.Header),
|
Header: make(http.Header),
|
||||||
Proto: "HTTP/1.1",
|
Proto: "HTTP/1.1",
|
||||||
@ -75,7 +98,7 @@ func newBeegoRequest(url, method string) *BeegoHttpRequest {
|
|||||||
ProtoMinor: 1,
|
ProtoMinor: 1,
|
||||||
}
|
}
|
||||||
return &BeegoHttpRequest{
|
return &BeegoHttpRequest{
|
||||||
url: url,
|
url: rawurl,
|
||||||
req: &req,
|
req: &req,
|
||||||
params: map[string]string{},
|
params: map[string]string{},
|
||||||
files: map[string]string{},
|
files: map[string]string{},
|
||||||
@ -86,27 +109,27 @@ func newBeegoRequest(url, method string) *BeegoHttpRequest {
|
|||||||
|
|
||||||
// Get returns *BeegoHttpRequest with GET method.
|
// Get returns *BeegoHttpRequest with GET method.
|
||||||
func Get(url string) *BeegoHttpRequest {
|
func Get(url string) *BeegoHttpRequest {
|
||||||
return newBeegoRequest(url, "GET")
|
return NewBeegoRequest(url, "GET")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Post returns *BeegoHttpRequest with POST method.
|
// Post returns *BeegoHttpRequest with POST method.
|
||||||
func Post(url string) *BeegoHttpRequest {
|
func Post(url string) *BeegoHttpRequest {
|
||||||
return newBeegoRequest(url, "POST")
|
return NewBeegoRequest(url, "POST")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Put returns *BeegoHttpRequest with PUT method.
|
// Put returns *BeegoHttpRequest with PUT method.
|
||||||
func Put(url string) *BeegoHttpRequest {
|
func Put(url string) *BeegoHttpRequest {
|
||||||
return newBeegoRequest(url, "PUT")
|
return NewBeegoRequest(url, "PUT")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete returns *BeegoHttpRequest DELETE method.
|
// Delete returns *BeegoHttpRequest DELETE method.
|
||||||
func Delete(url string) *BeegoHttpRequest {
|
func Delete(url string) *BeegoHttpRequest {
|
||||||
return newBeegoRequest(url, "DELETE")
|
return NewBeegoRequest(url, "DELETE")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Head returns *BeegoHttpRequest with HEAD method.
|
// Head returns *BeegoHttpRequest with HEAD method.
|
||||||
func Head(url string) *BeegoHttpRequest {
|
func Head(url string) *BeegoHttpRequest {
|
||||||
return newBeegoRequest(url, "HEAD")
|
return NewBeegoRequest(url, "HEAD")
|
||||||
}
|
}
|
||||||
|
|
||||||
// BeegoHttpSettings
|
// BeegoHttpSettings
|
||||||
@ -120,6 +143,7 @@ type BeegoHttpSettings struct {
|
|||||||
Transport http.RoundTripper
|
Transport http.RoundTripper
|
||||||
EnableCookie bool
|
EnableCookie bool
|
||||||
Gzip bool
|
Gzip bool
|
||||||
|
DumpBody bool
|
||||||
}
|
}
|
||||||
|
|
||||||
// BeegoHttpRequest provides more useful methods for requesting one url than http.Request.
|
// BeegoHttpRequest provides more useful methods for requesting one url than http.Request.
|
||||||
@ -134,6 +158,11 @@ type BeegoHttpRequest struct {
|
|||||||
dump []byte
|
dump []byte
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// get request
|
||||||
|
func (b *BeegoHttpRequest) GetRequest() *http.Request {
|
||||||
|
return b.req
|
||||||
|
}
|
||||||
|
|
||||||
// Change request settings
|
// Change request settings
|
||||||
func (b *BeegoHttpRequest) Setting(setting BeegoHttpSettings) *BeegoHttpRequest {
|
func (b *BeegoHttpRequest) Setting(setting BeegoHttpSettings) *BeegoHttpRequest {
|
||||||
b.setting = setting
|
b.setting = setting
|
||||||
@ -153,14 +182,20 @@ func (b *BeegoHttpRequest) SetEnableCookie(enable bool) *BeegoHttpRequest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// SetUserAgent sets User-Agent header field
|
// SetUserAgent sets User-Agent header field
|
||||||
func (b *BeegoHttpRequest) SetUserAgent(userAgent string) *BeegoHttpRequest {
|
func (b *BeegoHttpRequest) SetUserAgent(useragent string) *BeegoHttpRequest {
|
||||||
b.setting.UserAgent = userAgent
|
b.setting.UserAgent = useragent
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
// Debug sets show debug or not when executing request.
|
// Debug sets show debug or not when executing request.
|
||||||
func (b *BeegoHttpRequest) Debug(isDebug bool) *BeegoHttpRequest {
|
func (b *BeegoHttpRequest) Debug(isdebug bool) *BeegoHttpRequest {
|
||||||
b.setting.ShowDebug = isDebug
|
b.setting.ShowDebug = isdebug
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dump Body.
|
||||||
|
func (b *BeegoHttpRequest) DumpBody(isdump bool) *BeegoHttpRequest {
|
||||||
|
b.setting.DumpBody = isdump
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -279,21 +314,18 @@ func (b *BeegoHttpRequest) JsonBody(obj interface{}) (*BeegoHttpRequest, error)
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (b *BeegoHttpRequest) buildUrl(paramBody string) {
|
func (b *BeegoHttpRequest) buildUrl(paramBody string) {
|
||||||
if paramBody == "" {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// build GET url with query string
|
// build GET url with query string
|
||||||
if b.req.Method == "GET" {
|
if b.req.Method == "GET" && len(paramBody) > 0 {
|
||||||
if strings.Index(b.url, "?") == -1 {
|
if strings.Index(b.url, "?") != -1 {
|
||||||
b.url = b.url + "?" + paramBody
|
|
||||||
} else {
|
|
||||||
b.url += "&" + paramBody
|
b.url += "&" + paramBody
|
||||||
|
} else {
|
||||||
|
b.url = b.url + "?" + paramBody
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// build POST url and body
|
// build POST/PUT/PATCH url and body
|
||||||
if b.req.Method == "POST" && b.req.Body == nil {
|
if (b.req.Method == "POST" || b.req.Method == "PUT" || b.req.Method == "PATCH") && b.req.Body == nil {
|
||||||
// with files
|
// with files
|
||||||
if len(b.files) > 0 {
|
if len(b.files) > 0 {
|
||||||
pr, pw := io.Pipe()
|
pr, pw := io.Pipe()
|
||||||
@ -338,16 +370,29 @@ func (b *BeegoHttpRequest) getResponse() (*http.Response, error) {
|
|||||||
if b.resp.StatusCode != 0 {
|
if b.resp.StatusCode != 0 {
|
||||||
return b.resp, nil
|
return b.resp, nil
|
||||||
}
|
}
|
||||||
|
resp, err := b.SendOut()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
b.resp = resp
|
||||||
|
return resp, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *BeegoHttpRequest) SendOut() (*http.Response, error) {
|
||||||
var paramBody string
|
var paramBody string
|
||||||
if len(b.params) > 0 {
|
if len(b.params) > 0 {
|
||||||
|
var buf bytes.Buffer
|
||||||
for k, v := range b.params {
|
for k, v := range b.params {
|
||||||
paramBody += fmt.Sprintf("&%s=%v", url.QueryEscape(k), url.QueryEscape(v))
|
buf.WriteString(url.QueryEscape(k))
|
||||||
|
buf.WriteByte('=')
|
||||||
|
buf.WriteString(url.QueryEscape(v))
|
||||||
|
buf.WriteByte('&')
|
||||||
}
|
}
|
||||||
paramBody = paramBody[1:]
|
paramBody = buf.String()
|
||||||
|
paramBody = paramBody[0 : len(paramBody)-1]
|
||||||
}
|
}
|
||||||
|
|
||||||
b.buildUrl(paramBody)
|
b.buildUrl(paramBody)
|
||||||
|
|
||||||
url, err := url.Parse(b.url)
|
url, err := url.Parse(b.url)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -357,13 +402,6 @@ func (b *BeegoHttpRequest) getResponse() (*http.Response, error) {
|
|||||||
|
|
||||||
trans := b.setting.Transport
|
trans := b.setting.Transport
|
||||||
|
|
||||||
if b.setting.ConnectTimeout == 0 {
|
|
||||||
b.setting.ConnectTimeout = 60 * time.Second
|
|
||||||
}
|
|
||||||
if b.setting.ReadWriteTimeout == 0 {
|
|
||||||
b.setting.ReadWriteTimeout = 60 * time.Second
|
|
||||||
}
|
|
||||||
|
|
||||||
if trans == nil {
|
if trans == nil {
|
||||||
// create default transport
|
// create default transport
|
||||||
trans = &http.Transport{
|
trans = &http.Transport{
|
||||||
@ -404,15 +442,13 @@ func (b *BeegoHttpRequest) getResponse() (*http.Response, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if b.setting.ShowDebug {
|
if b.setting.ShowDebug {
|
||||||
dump, err := httputil.DumpRequest(b.req, true)
|
dump, err := httputil.DumpRequest(b.req, b.setting.DumpBody)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err.Error())
|
log.Println(err.Error())
|
||||||
}
|
}
|
||||||
b.dump = dump
|
b.dump = dump
|
||||||
}
|
}
|
||||||
|
return client.Do(b.req)
|
||||||
b.resp, err = client.Do(b.req)
|
|
||||||
return b.resp, err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// String returns the body string in response.
|
// String returns the body string in response.
|
||||||
@ -433,9 +469,12 @@ func (b *BeegoHttpRequest) Bytes() ([]byte, error) {
|
|||||||
return b.body, nil
|
return b.body, nil
|
||||||
}
|
}
|
||||||
resp, err := b.getResponse()
|
resp, err := b.getResponse()
|
||||||
if resp == nil || resp.Body == nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if resp.Body == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
if b.setting.Gzip && resp.Header.Get("Content-Encoding") == "gzip" {
|
if b.setting.Gzip && resp.Header.Get("Content-Encoding") == "gzip" {
|
||||||
reader, err := gzip.NewReader(resp.Body)
|
reader, err := gzip.NewReader(resp.Body)
|
||||||
@ -452,18 +491,20 @@ func (b *BeegoHttpRequest) Bytes() ([]byte, error) {
|
|||||||
// ToFile saves the body data in response to one file.
|
// ToFile saves the body data in response to one file.
|
||||||
// it calls Response inner.
|
// it calls Response inner.
|
||||||
func (b *BeegoHttpRequest) ToFile(filename string) error {
|
func (b *BeegoHttpRequest) ToFile(filename string) error {
|
||||||
resp, err := b.getResponse()
|
|
||||||
if resp == nil || resp.Body == nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer resp.Body.Close()
|
|
||||||
|
|
||||||
f, err := os.Create(filename)
|
f, err := os.Create(filename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
|
|
||||||
|
resp, err := b.getResponse()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if resp.Body == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
_, err = io.Copy(f, resp.Body)
|
_, err = io.Copy(f, resp.Body)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,8 @@ var (
|
|||||||
"gte": true,
|
"gte": true,
|
||||||
"lt": true,
|
"lt": true,
|
||||||
"lte": true,
|
"lte": true,
|
||||||
|
"eq": true,
|
||||||
|
"nq": true,
|
||||||
"startswith": true,
|
"startswith": true,
|
||||||
"endswith": true,
|
"endswith": true,
|
||||||
"istartswith": true,
|
"istartswith": true,
|
||||||
|
@ -30,6 +30,8 @@ var mysqlOperators = map[string]string{
|
|||||||
"gte": ">= ?",
|
"gte": ">= ?",
|
||||||
"lt": "< ?",
|
"lt": "< ?",
|
||||||
"lte": "<= ?",
|
"lte": "<= ?",
|
||||||
|
"eq": "= ?",
|
||||||
|
"ne": "!= ?",
|
||||||
"startswith": "LIKE BINARY ?",
|
"startswith": "LIKE BINARY ?",
|
||||||
"endswith": "LIKE BINARY ?",
|
"endswith": "LIKE BINARY ?",
|
||||||
"istartswith": "LIKE ?",
|
"istartswith": "LIKE ?",
|
||||||
|
@ -29,6 +29,8 @@ var postgresOperators = map[string]string{
|
|||||||
"gte": ">= ?",
|
"gte": ">= ?",
|
||||||
"lt": "< ?",
|
"lt": "< ?",
|
||||||
"lte": "<= ?",
|
"lte": "<= ?",
|
||||||
|
"eq": "= ?",
|
||||||
|
"ne": "!= ?",
|
||||||
"startswith": "LIKE ?",
|
"startswith": "LIKE ?",
|
||||||
"endswith": "LIKE ?",
|
"endswith": "LIKE ?",
|
||||||
"istartswith": "LIKE UPPER(?)",
|
"istartswith": "LIKE UPPER(?)",
|
||||||
|
@ -29,6 +29,8 @@ var sqliteOperators = map[string]string{
|
|||||||
"gte": ">= ?",
|
"gte": ">= ?",
|
||||||
"lt": "< ?",
|
"lt": "< ?",
|
||||||
"lte": "<= ?",
|
"lte": "<= ?",
|
||||||
|
"eq": "= ?",
|
||||||
|
"ne": "!= ?",
|
||||||
"startswith": "LIKE ? ESCAPE '\\'",
|
"startswith": "LIKE ? ESCAPE '\\'",
|
||||||
"endswith": "LIKE ? ESCAPE '\\'",
|
"endswith": "LIKE ? ESCAPE '\\'",
|
||||||
"istartswith": "LIKE ? ESCAPE '\\'",
|
"istartswith": "LIKE ? ESCAPE '\\'",
|
||||||
|
14
router.go
14
router.go
@ -611,19 +611,21 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
|
|||||||
if p.enableFilter {
|
if p.enableFilter {
|
||||||
if l, ok := p.filters[pos]; ok {
|
if l, ok := p.filters[pos]; ok {
|
||||||
for _, filterR := range l {
|
for _, filterR := range l {
|
||||||
if ok, p := filterR.ValidRouter(urlPath); ok {
|
if filterR.returnOnOutput && w.started {
|
||||||
for k, v := range p {
|
return true
|
||||||
|
}
|
||||||
|
if ok, params := filterR.ValidRouter(urlPath); ok {
|
||||||
|
for k, v := range params {
|
||||||
context.Input.Params[k] = v
|
context.Input.Params[k] = v
|
||||||
}
|
}
|
||||||
filterR.filterFunc(context)
|
filterR.filterFunc(context)
|
||||||
if filterR.returnOnOutput && w.started {
|
}
|
||||||
return true
|
if filterR.returnOnOutput && w.started {
|
||||||
}
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -444,7 +444,7 @@ func TestFilterAfterExec(t *testing.T) {
|
|||||||
mux := NewControllerRegister()
|
mux := NewControllerRegister()
|
||||||
mux.InsertFilter(url, BeforeRouter, beegoFilterNoOutput)
|
mux.InsertFilter(url, BeforeRouter, beegoFilterNoOutput)
|
||||||
mux.InsertFilter(url, BeforeExec, beegoFilterNoOutput)
|
mux.InsertFilter(url, BeforeExec, beegoFilterNoOutput)
|
||||||
mux.InsertFilter(url, AfterExec, beegoAfterExec1)
|
mux.InsertFilter(url, AfterExec, beegoAfterExec1, false)
|
||||||
|
|
||||||
mux.Get(url, beegoFilterFunc)
|
mux.Get(url, beegoFilterFunc)
|
||||||
|
|
||||||
@ -506,7 +506,7 @@ func TestFilterFinishRouterMultiFirstOnly(t *testing.T) {
|
|||||||
url := "/finishRouterMultiFirstOnly"
|
url := "/finishRouterMultiFirstOnly"
|
||||||
|
|
||||||
mux := NewControllerRegister()
|
mux := NewControllerRegister()
|
||||||
mux.InsertFilter(url, FinishRouter, beegoFinishRouter1)
|
mux.InsertFilter(url, FinishRouter, beegoFinishRouter1, false)
|
||||||
mux.InsertFilter(url, FinishRouter, beegoFinishRouter2)
|
mux.InsertFilter(url, FinishRouter, beegoFinishRouter2)
|
||||||
|
|
||||||
mux.Get(url, beegoFilterFunc)
|
mux.Get(url, beegoFilterFunc)
|
||||||
@ -534,7 +534,7 @@ func TestFilterFinishRouterMulti(t *testing.T) {
|
|||||||
|
|
||||||
mux := NewControllerRegister()
|
mux := NewControllerRegister()
|
||||||
mux.InsertFilter(url, FinishRouter, beegoFinishRouter1, false)
|
mux.InsertFilter(url, FinishRouter, beegoFinishRouter1, false)
|
||||||
mux.InsertFilter(url, FinishRouter, beegoFinishRouter2)
|
mux.InsertFilter(url, FinishRouter, beegoFinishRouter2, false)
|
||||||
|
|
||||||
mux.Get(url, beegoFilterFunc)
|
mux.Get(url, beegoFilterFunc)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user