Skip to content

Commit

Permalink
Fix --proxy parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
klzgrad committed Jan 16, 2019
1 parent 39935a6 commit 22f93a0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
11 changes: 4 additions & 7 deletions src/net/tools/naive/naive_proxy_bin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,11 @@ void GetCommandLineFromConfig(const base::FilePath& config_path,
}

std::string GetProxyFromURL(const GURL& url) {
auto shp = url::SchemeHostPort(url);
if (url::DefaultPortForScheme(shp.scheme().c_str(), shp.scheme().size()) ==
url::PORT_UNSPECIFIED) {
return shp.Serialize() + ":" + base::IntToString(shp.port());
} else {
return shp.Serialize();
std::string str = url.GetWithEmptyPath().spec();
if (str.size() && str.back() == '/') {
str.pop_back();
}
return str;
}

bool ParseCommandLine(const CommandLine& cmdline, Params* params) {
Expand Down Expand Up @@ -298,7 +296,6 @@ bool ParseCommandLine(const CommandLine& cmdline, Params* params) {
return false;
}
params->proxy_url = GetProxyFromURL(url_no_auth);
params->proxy_url.erase();
params->proxy_user = url.username();
params->proxy_pass = url.password();
}
Expand Down
10 changes: 7 additions & 3 deletions tests/basic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,23 @@ echo '{"listen":"socks://127.0.0.1:61080","log":""}' >/tmp/config.json
test_naive 'Config file' socks5h://127.0.0.1:61080 '/tmp/config.json'
rm -f /tmp/config.json

test_naive 'Trivial - scheme only' socks5h://127.0.0.1:1080 \
test_naive 'Trivial - listen scheme only' socks5h://127.0.0.1:1080 \
'--log --listen=socks://'

test_naive 'Trivial - no host' socks5h://127.0.0.1:61080 \
test_naive 'Trivial - listen no host' socks5h://127.0.0.1:61080 \
'--log --listen=socks://:61080'

test_naive 'Trivial - no port' socks5h://127.0.0.1:1080 \
test_naive 'Trivial - listen no port' socks5h://127.0.0.1:1080 \
'--log --listen=socks://127.0.0.1'

test_naive 'SOCKS-SOCKS' socks5h://127.0.0.1:11080 \
'--log --listen=socks://:11080 --proxy=socks://127.0.0.1:21080' \
'--log --listen=socks://:21080'

test_naive 'SOCKS-SOCKS - proxy no port' socks5h://127.0.0.1:11080 \
'--log --listen=socks://:11080 --proxy=socks://127.0.0.1' \
'--log --listen=socks://:1080'

test_naive 'SOCKS-HTTP' socks5h://127.0.0.1:11080 \
'--log --listen=socks://:11080 --proxy=http://127.0.0.1:28080' \
'--log --listen=http://:28080'
Expand Down

0 comments on commit 22f93a0

Please sign in to comment.