mirror of
				https://github.com/gin-gonic/gin.git
				synced 2025-11-04 09:12:12 +08:00 
			
		
		
		
	* fix: data race warning (#1180) * Fix the tests * refactor: remove unnecessary imports and optimize codebase - Remove unnecessary import of `flag` Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * test: refactor test assertions for mode settings - Update test assertions for mode setting in `mode_test.go` Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> --------- Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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 (
 | 
						|
	"os"
 | 
						|
	"sync/atomic"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/gin-gonic/gin/binding"
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	os.Setenv(EnvGinMode, TestMode)
 | 
						|
}
 | 
						|
 | 
						|
func TestSetMode(t *testing.T) {
 | 
						|
	assert.Equal(t, int32(testCode), atomic.LoadInt32(&ginMode))
 | 
						|
	assert.Equal(t, TestMode, Mode())
 | 
						|
	os.Unsetenv(EnvGinMode)
 | 
						|
 | 
						|
	SetMode("")
 | 
						|
	assert.Equal(t, int32(testCode), atomic.LoadInt32(&ginMode))
 | 
						|
	assert.Equal(t, TestMode, Mode())
 | 
						|
 | 
						|
	SetMode(DebugMode)
 | 
						|
	assert.Equal(t, int32(debugCode), atomic.LoadInt32(&ginMode))
 | 
						|
	assert.Equal(t, DebugMode, Mode())
 | 
						|
 | 
						|
	SetMode(ReleaseMode)
 | 
						|
	assert.Equal(t, int32(releaseCode), atomic.LoadInt32(&ginMode))
 | 
						|
	assert.Equal(t, ReleaseMode, Mode())
 | 
						|
 | 
						|
	SetMode(TestMode)
 | 
						|
	assert.Equal(t, int32(testCode), atomic.LoadInt32(&ginMode))
 | 
						|
	assert.Equal(t, TestMode, Mode())
 | 
						|
 | 
						|
	assert.Panics(t, func() { SetMode("unknown") })
 | 
						|
}
 | 
						|
 | 
						|
func TestDisableBindValidation(t *testing.T) {
 | 
						|
	v := binding.Validator
 | 
						|
	assert.NotNil(t, binding.Validator)
 | 
						|
	DisableBindValidation()
 | 
						|
	assert.Nil(t, binding.Validator)
 | 
						|
	binding.Validator = v
 | 
						|
}
 | 
						|
 | 
						|
func TestEnableJsonDecoderUseNumber(t *testing.T) {
 | 
						|
	assert.False(t, binding.EnableDecoderUseNumber)
 | 
						|
	EnableJsonDecoderUseNumber()
 | 
						|
	assert.True(t, binding.EnableDecoderUseNumber)
 | 
						|
}
 | 
						|
 | 
						|
func TestEnableJsonDecoderDisallowUnknownFields(t *testing.T) {
 | 
						|
	assert.False(t, binding.EnableDecoderDisallowUnknownFields)
 | 
						|
	EnableJsonDecoderDisallowUnknownFields()
 | 
						|
	assert.True(t, binding.EnableDecoderDisallowUnknownFields)
 | 
						|
}
 |