mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	* use go1.18 to build gitea& update min go version to 1.17 * bump in a few more places * add a few simple tests for isipprivate * update go.mod * update URL to https://go.dev/dl/ * golangci-lint * attempt golangci-lint workaround * change version * bump fumpt version * skip strings.title test * go mod tidy * update tests as some aren't private?? * update tests
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package util
 | 
						|
 | 
						|
import (
 | 
						|
	"net"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestIsIPPPrivate(t *testing.T) {
 | 
						|
	cases := []struct {
 | 
						|
		ip        string
 | 
						|
		isPrivate bool
 | 
						|
	}{
 | 
						|
		// case 0
 | 
						|
		{
 | 
						|
			ip:        "127.0.0.1",
 | 
						|
			isPrivate: false, // TODO: according to go, this isn't private?
 | 
						|
		},
 | 
						|
		// case 1
 | 
						|
		{
 | 
						|
			ip:        "127.1.2.3",
 | 
						|
			isPrivate: false, // TODO: according to go, this isn't private?
 | 
						|
		},
 | 
						|
		// case 2
 | 
						|
		{
 | 
						|
			ip:        "10.255.255.0",
 | 
						|
			isPrivate: true,
 | 
						|
		},
 | 
						|
		// case 3
 | 
						|
		{
 | 
						|
			ip:        "8.8.8.8",
 | 
						|
			isPrivate: false,
 | 
						|
		},
 | 
						|
		// case 4
 | 
						|
		{
 | 
						|
			ip:        "::1",
 | 
						|
			isPrivate: false, // TODO: according to go, this isn't private?
 | 
						|
		},
 | 
						|
		// case 4
 | 
						|
		{
 | 
						|
			ip:        "2a12:7c40::f00d",
 | 
						|
			isPrivate: false,
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	for n, c := range cases {
 | 
						|
		i := net.ParseIP(c.ip)
 | 
						|
		p := IsIPPrivate(i)
 | 
						|
		assert.Equal(t, c.isPrivate, p, "case %d: should be equal", n)
 | 
						|
	}
 | 
						|
}
 |