2015-04-08 03:58:35 +03:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
import (
2015-05-09 04:34:43 +03:00
"bytes"
"errors"
2017-07-02 10:29:29 +03:00
"html/template"
2015-05-09 04:34:43 +03:00
"io"
"log"
2015-05-24 02:00:17 +03:00
"os"
2018-09-26 08:49:11 +03:00
"runtime"
2018-09-19 08:57:00 +03:00
"sync"
2015-04-08 03:58:35 +03:00
"testing"
"github.com/stretchr/testify/assert"
)
2015-04-09 13:15:02 +03:00
// TODO
2015-05-07 12:30:01 +03:00
// func debugRoute(httpMethod, absolutePath string, handlers HandlersChain) {
2015-04-09 13:15:02 +03:00
// func debugPrint(format string, values ...interface{}) {
2015-04-08 03:58:35 +03:00
func TestIsDebugging ( t * testing . T ) {
SetMode ( DebugMode )
assert . True ( t , IsDebugging ( ) )
SetMode ( ReleaseMode )
assert . False ( t , IsDebugging ( ) )
SetMode ( TestMode )
assert . False ( t , IsDebugging ( ) )
}
2015-05-09 04:34:43 +03:00
func TestDebugPrint ( t * testing . T ) {
2019-01-18 04:32:53 +03:00
re := captureOutput ( t , func ( ) {
2018-09-19 08:57:00 +03:00
SetMode ( DebugMode )
SetMode ( ReleaseMode )
debugPrint ( "DEBUG this!" )
SetMode ( TestMode )
debugPrint ( "DEBUG this!" )
SetMode ( DebugMode )
2019-02-18 05:10:45 +03:00
debugPrint ( "these are %d %s" , 2 , "error messages" )
2018-09-19 08:57:00 +03:00
SetMode ( TestMode )
} )
assert . Equal ( t , "[GIN-debug] these are 2 error messages\n" , re )
2015-05-09 04:34:43 +03:00
}
func TestDebugPrintError ( t * testing . T ) {
2019-01-18 04:32:53 +03:00
re := captureOutput ( t , func ( ) {
2018-09-19 08:57:00 +03:00
SetMode ( DebugMode )
debugPrintError ( nil )
debugPrintError ( errors . New ( "this is an error" ) )
SetMode ( TestMode )
} )
assert . Equal ( t , "[GIN-debug] [ERROR] this is an error\n" , re )
2015-05-09 04:34:43 +03:00
}
2015-07-12 17:35:15 +03:00
func TestDebugPrintRoutes ( t * testing . T ) {
2019-01-18 04:32:53 +03:00
re := captureOutput ( t , func ( ) {
2018-09-19 08:57:00 +03:00
SetMode ( DebugMode )
debugPrintRoute ( "GET" , "/path/to/route/:param" , HandlersChain { func ( c * Context ) { } , handlerNameTest } )
SetMode ( TestMode )
} )
assert . Regexp ( t , ` ^\[GIN-debug\] GET /path/to/route/:param --> (.*/vendor/)?github.com/gin-gonic/gin.handlerNameTest \(2 handlers\)\n$ ` , re )
2015-07-12 17:35:15 +03:00
}
2017-07-02 10:29:29 +03:00
func TestDebugPrintLoadTemplate ( t * testing . T ) {
2019-01-18 04:32:53 +03:00
re := captureOutput ( t , func ( ) {
2018-09-19 08:57:00 +03:00
SetMode ( DebugMode )
templ := template . Must ( template . New ( "" ) . Delims ( "{[{" , "}]}" ) . ParseGlob ( "./testdata/template/hello.tmpl" ) )
debugPrintLoadTemplate ( templ )
SetMode ( TestMode )
} )
assert . Regexp ( t , ` ^\[GIN-debug\] Loaded HTML Templates \(2\): \n(\t- \n|\t- hello\.tmpl\n) { 2}\n ` , re )
2017-07-02 10:29:29 +03:00
}
func TestDebugPrintWARNINGSetHTMLTemplate ( t * testing . T ) {
2019-01-18 04:32:53 +03:00
re := captureOutput ( t , func ( ) {
2018-09-19 08:57:00 +03:00
SetMode ( DebugMode )
debugPrintWARNINGSetHTMLTemplate ( )
SetMode ( TestMode )
} )
assert . Equal ( t , "[GIN-debug] [WARNING] Since SetHTMLTemplate() is NOT thread-safe. It should only be called\nat initialization. ie. before any route is registered or the router is listening in a socket:\n\n\trouter := gin.Default()\n\trouter.SetHTMLTemplate(template) // << good place\n\n" , re )
2017-07-02 10:29:29 +03:00
}
2017-09-29 06:58:57 +03:00
func TestDebugPrintWARNINGDefault ( t * testing . T ) {
2019-01-18 04:32:53 +03:00
re := captureOutput ( t , func ( ) {
2018-09-19 08:57:00 +03:00
SetMode ( DebugMode )
debugPrintWARNINGDefault ( )
SetMode ( TestMode )
} )
2018-09-26 08:49:11 +03:00
m , e := getMinVer ( runtime . Version ( ) )
2018-09-27 04:42:41 +03:00
if e == nil && m <= ginSupportMinGoVer {
2019-11-24 18:07:56 +03:00
assert . Equal ( t , "[GIN-debug] [WARNING] Now Gin requires Go 1.11 or later and Go 1.12 will be required soon.\n\n[GIN-debug] [WARNING] Creating an Engine instance with the Logger and Recovery middleware already attached.\n\n" , re )
2018-09-26 08:49:11 +03:00
} else {
assert . Equal ( t , "[GIN-debug] [WARNING] Creating an Engine instance with the Logger and Recovery middleware already attached.\n\n" , re )
}
2017-09-29 06:58:57 +03:00
}
func TestDebugPrintWARNINGNew ( t * testing . T ) {
2019-01-18 04:32:53 +03:00
re := captureOutput ( t , func ( ) {
2018-09-19 08:57:00 +03:00
SetMode ( DebugMode )
debugPrintWARNINGNew ( )
SetMode ( TestMode )
} )
assert . Equal ( t , "[GIN-debug] [WARNING] Running in \"debug\" mode. Switch to \"release\" mode in production.\n - using env:\texport GIN_MODE=release\n - using code:\tgin.SetMode(gin.ReleaseMode)\n\n" , re )
2017-09-29 06:58:57 +03:00
}
2019-01-18 04:32:53 +03:00
func captureOutput ( t * testing . T , f func ( ) ) string {
2018-09-19 08:57:00 +03:00
reader , writer , err := os . Pipe ( )
if err != nil {
panic ( err )
}
2019-05-10 09:03:25 +03:00
defaultWriter := DefaultWriter
defaultErrorWriter := DefaultErrorWriter
2018-09-19 08:57:00 +03:00
defer func ( ) {
2019-05-10 09:03:25 +03:00
DefaultWriter = defaultWriter
DefaultErrorWriter = defaultErrorWriter
2018-09-19 08:57:00 +03:00
log . SetOutput ( os . Stderr )
} ( )
2019-05-10 09:03:25 +03:00
DefaultWriter = writer
DefaultErrorWriter = writer
2018-09-19 08:57:00 +03:00
log . SetOutput ( writer )
out := make ( chan string )
wg := new ( sync . WaitGroup )
wg . Add ( 1 )
go func ( ) {
var buf bytes . Buffer
wg . Done ( )
2019-01-18 04:32:53 +03:00
_ , err := io . Copy ( & buf , reader )
assert . NoError ( t , err )
2018-09-19 08:57:00 +03:00
out <- buf . String ( )
} ( )
wg . Wait ( )
f ( )
writer . Close ( )
return <- out
2015-05-09 04:34:43 +03:00
}
2018-09-26 08:49:11 +03:00
func TestGetMinVer ( t * testing . T ) {
var m uint64
var e error
_ , e = getMinVer ( "go1" )
assert . NotNil ( t , e )
m , e = getMinVer ( "go1.1" )
assert . Equal ( t , uint64 ( 1 ) , m )
assert . Nil ( t , e )
m , e = getMinVer ( "go1.1.1" )
assert . Nil ( t , e )
assert . Equal ( t , uint64 ( 1 ) , m )
_ , e = getMinVer ( "go1.1.1.1" )
assert . NotNil ( t , e )
}