-
Notifications
You must be signed in to change notification settings - Fork 166
fix(soax): fix config copy bug, certverifier bug, doc typo, add HTTP CONNECT test and SOAX integration tests #588
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
Open
fortuna
wants to merge
4
commits into
main
Choose a base branch
from
fix/soax-proxy-fixes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
5421a0b
fix(soax): fix config copy bug, doc typo, and add HTTP CONNECT test
fortuna e85fffe
refactor(soax): move ConnType to GetRegions/GetCities params, add int…
fortuna 6dc4d9f
fix(tls): handle nil CertVerifier in toStdConfig; add SOAX proxy inte…
fortuna a5062ac
docs(soax): document proxy integration tests in README
fortuna 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,68 @@ | ||
| // Copyright 2025 The Outline Authors | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // https://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| package soax | ||
|
|
||
| import ( | ||
| "context" | ||
| "os" | ||
| "testing" | ||
|
|
||
| "github.com/stretchr/testify/require" | ||
| ) | ||
|
|
||
| func newLiveClient(t *testing.T) *Client { | ||
| t.Helper() | ||
| apiKey := os.Getenv("SOAX_API_KEY") | ||
| packageKey := os.Getenv("SOAX_PACKAGE_KEY") | ||
| if apiKey == "" || packageKey == "" { | ||
| t.Skip("SOAX_API_KEY and SOAX_PACKAGE_KEY must be set to run live API tests") | ||
| } | ||
| return &Client{ | ||
| APIKey: apiKey, | ||
| PackageKey: packageKey, | ||
| } | ||
| } | ||
|
|
||
| func TestLiveAPI_GetResidentialISPs(t *testing.T) { | ||
| client := newLiveClient(t) | ||
| isps, err := client.GetResidentialISPs(context.Background(), "US", "", "") | ||
| require.NoError(t, err) | ||
| require.NotEmpty(t, isps) | ||
| t.Logf("Residential ISPs in US (%v): %v", len(isps), isps) | ||
| } | ||
|
|
||
| func TestLiveAPI_GetMobileISPs(t *testing.T) { | ||
| client := newLiveClient(t) | ||
| isps, err := client.GetMobileISPs(context.Background(), "US", "", "") | ||
| require.NoError(t, err) | ||
| require.NotEmpty(t, isps) | ||
| t.Logf("Mobile ISPs in US (%v): %v", len(isps), isps) | ||
| } | ||
|
|
||
| func TestLiveAPI_GetRegions(t *testing.T) { | ||
| client := newLiveClient(t) | ||
| regions, err := client.GetRegions(context.Background(), ConnTypeMobile, "US", "") | ||
| require.NoError(t, err) | ||
| require.NotEmpty(t, regions) | ||
| t.Logf("Mobile regions in US (%v): %v", len(regions), regions) | ||
| } | ||
|
|
||
| func TestLiveAPI_GetCities(t *testing.T) { | ||
| client := newLiveClient(t) | ||
| cities, err := client.GetCities(context.Background(), ConnTypeMobile, "US", "", "") | ||
| require.NoError(t, err) | ||
| require.NotEmpty(t, cities) | ||
| t.Logf("Mobile cities in US (%v): %v", len(cities), cities) | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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,106 @@ | ||
| // Copyright 2025 The Outline Authors | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // https://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| package soax | ||
|
|
||
| import ( | ||
| "context" | ||
| "encoding/json" | ||
| "io" | ||
| "net" | ||
| "net/http" | ||
| "os" | ||
| "strconv" | ||
| "testing" | ||
|
|
||
| "github.com/stretchr/testify/require" | ||
| "golang.getoutline.org/sdk/transport" | ||
| ) | ||
|
|
||
| const checkerURL = "https://checker.soax.com/api/ipinfo" | ||
|
|
||
| type ipInfoResponse struct { | ||
| Status bool `json:"status"` | ||
| Reason string `json:"reason"` | ||
| Data struct { | ||
| CountryCode string `json:"country_code"` | ||
| IP string `json:"ip"` | ||
| ISP string `json:"isp"` | ||
| Carrier string `json:"carrier"` | ||
| Region string `json:"region"` | ||
| City string `json:"city"` | ||
| } `json:"data"` | ||
| } | ||
|
|
||
| func newLiveProxyConfig(t *testing.T) ProxySessionConfig { | ||
| t.Helper() | ||
| packageIDStr := os.Getenv("SOAX_PACKAGE_ID") | ||
| packageKey := os.Getenv("SOAX_PACKAGE_KEY") | ||
| if packageIDStr == "" || packageKey == "" { | ||
| t.Skip("SOAX_PACKAGE_ID and SOAX_PACKAGE_KEY must be set to run live proxy tests") | ||
| } | ||
| packageID, err := strconv.Atoi(packageIDStr) | ||
| require.NoError(t, err) | ||
| return ProxySessionConfig{ | ||
| Auth: ProxyAuthConfig{ | ||
| PackageID: packageID, | ||
| PackageKey: packageKey, | ||
| }, | ||
| Node: ProxyNodeConfig{ | ||
| CountryCode: "US", | ||
| }, | ||
| } | ||
| } | ||
|
|
||
| func fetchIPInfo(t *testing.T, dialer transport.StreamDialer) *ipInfoResponse { | ||
| t.Helper() | ||
| httpClient := &http.Client{ | ||
| Transport: &http.Transport{ | ||
| DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) { | ||
| return dialer.DialStream(ctx, addr) | ||
| }, | ||
| }, | ||
| } | ||
| resp, err := httpClient.Get(checkerURL) | ||
| require.NoError(t, err) | ||
| defer resp.Body.Close() | ||
| body, err := io.ReadAll(resp.Body) | ||
| require.NoError(t, err) | ||
| var info ipInfoResponse | ||
| require.NoError(t, json.Unmarshal(body, &info)) | ||
| require.True(t, info.Status, "checker returned status=false: %s", info.Reason) | ||
| return &info | ||
| } | ||
|
|
||
| func TestLiveProxy_SOCKS5(t *testing.T) { | ||
| config := newLiveProxyConfig(t) | ||
| session := config.NewSession() | ||
| client, err := session.NewSOCKS5Client() | ||
| require.NoError(t, err) | ||
|
|
||
| info := fetchIPInfo(t, client) | ||
| require.Equal(t, "US", info.Data.CountryCode) | ||
| t.Logf("SOCKS5: ip=%s isp=%s city=%s region=%s", info.Data.IP, info.Data.ISP, info.Data.City, info.Data.Region) | ||
| } | ||
|
|
||
| func TestLiveProxy_HTTPConnect(t *testing.T) { | ||
| config := newLiveProxyConfig(t) | ||
| session := config.NewSession() | ||
| dialer, err := session.NewWebProxyStreamDialer() | ||
| require.NoError(t, err) | ||
|
|
||
| info := fetchIPInfo(t, dialer) | ||
| require.Equal(t, "US", info.Data.CountryCode) | ||
| t.Logf("HTTP CONNECT: ip=%s isp=%s city=%s region=%s", info.Data.IP, info.Data.ISP, info.Data.City, info.Data.Region) | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.