summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ci/test.ps123
1 files changed, 19 insertions, 4 deletions
diff --git a/ci/test.ps1 b/ci/test.ps1
index 06e0ab228..ad368091a 100644
--- a/ci/test.ps1
+++ b/ci/test.ps1
@@ -38,10 +38,15 @@ Write-Host "## Configuring test environment"
Write-Host "##############################################################################"
if (-not $Env:SKIP_PROXY_TESTS) {
+ Invoke-WebRequest -Method GET -Uri https://github.com/ethomson/poxyproxy/releases/download/v0.7.0/poxyproxy-0.7.0.jar -OutFile poxyproxy.jar
+
+ Write-Host ""
+ Write-Host "Starting HTTP proxy (Basic)..."
+ javaw -jar poxyproxy.jar --port 8080 --credentials foo:bar --auth-type basic --quiet
+
Write-Host ""
- Write-Host "Starting HTTP proxy..."
- Invoke-WebRequest -Method GET -Uri https://github.com/ethomson/poxyproxy/releases/download/v0.4.0/poxyproxy-0.4.0.jar -OutFile poxyproxy.jar
- javaw -jar poxyproxy.jar -d --port 8080 --credentials foo:bar --quiet
+ Write-Host "Starting HTTP proxy (NTLM)..."
+ javaw -jar poxyproxy.jar --port 8090 --credentials foo:bar --auth-type ntlm --quiet
}
Write-Host ""
@@ -76,14 +81,24 @@ if (-not $Env:SKIP_ONLINE_TESTS) {
}
if (-not $Env:SKIP_PROXY_TESTS) {
+ # Test HTTP Basic authentication
Write-Host ""
- Write-Host "Running proxy tests"
+ Write-Host "Running proxy tests (Basic authentication)"
Write-Host ""
$Env:GITTEST_REMOTE_PROXY_HOST="localhost:8080"
$Env:GITTEST_REMOTE_PROXY_USER="foo"
$Env:GITTEST_REMOTE_PROXY_PASS="bar"
+ run_test proxy
+ # Test NTLM authentication
+ Write-Host ""
+ Write-Host "Running proxy tests (NTLM authentication)"
+ Write-Host ""
+
+ $Env:GITTEST_REMOTE_PROXY_HOST="localhost:8090"
+ $Env:GITTEST_REMOTE_PROXY_USER="foo"
+ $Env:GITTEST_REMOTE_PROXY_PASS="bar"
run_test proxy
$Env:GITTEST_REMOTE_PROXY_HOST=$null