-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use go1.18 to build gitea #19099
Merged
Merged
use go1.18 to build gitea #19099
Changes from 3 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a0b38a1
use go1.18 to build gitea& update min go version to 1.17
techknowlogick f5c52ed
bump in a few more places
techknowlogick 20657ba
add a few simple tests for isipprivate
techknowlogick 5a8a51d
update go.mod
techknowlogick cf16d5f
update URL to https://go.dev/dl/
techknowlogick f827b41
golangci-lint
techknowlogick 5027a65
attempt golangci-lint workaround
techknowlogick 55e2fc6
change version
techknowlogick 2626a36
bump fumpt version
techknowlogick 3ee7b3c
Merge branch 'main' into go18
techknowlogick ed5d769
skip strings.title test
techknowlogick 0d40341
go mod tidy
techknowlogick 72bfdcb
update tests as some aren't private??
techknowlogick 8729bfd
update tests
techknowlogick File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// 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: true, | ||
}, | ||
// case 1 | ||
{ | ||
ip: "127.1.2.3", | ||
isPrivate: true, | ||
}, | ||
// case 2 | ||
{ | ||
ip: "10.255.255.0", | ||
isPrivate: true, | ||
}, | ||
// case 3 | ||
{ | ||
ip: "8.8.8.8", | ||
isPrivate: false, | ||
}, | ||
// case 4 | ||
{ | ||
ip: "::1", | ||
isPrivate: true, | ||
}, | ||
// 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) | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think that we already should include go1.18 code, even for tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is go1.17 code: https://cs.opensource.google/go/go/+/refs/tags/go1.17:src/net/ip.go;l=704
Edit: This just adds tests for logic we already had