mirror of
https://github.com/apple/container.git
synced 2026-09-11 18:25:41 +00:00
Signed-off-by: Harry Li <harrymingh@gmail.com> Co-authored-by: Dmitry Kovba <dkovba@apple.com>
109 lines
3.9 KiB
Swift
109 lines
3.9 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
// Copyright © 2025 Apple Inc. and the Containerization project authors. All rights reserved.
|
|
//
|
|
// 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.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import Foundation
|
|
import Testing
|
|
|
|
@testable import ContainerizationExtras
|
|
|
|
struct ProxyUtilsTests {
|
|
|
|
@Test("HTTP proxy resolution")
|
|
func testHttpProxy() {
|
|
let env = ["http_proxy": "http://proxy.local:8080"]
|
|
let proxy = ProxyUtils.proxy(for: "example.com", env: env)
|
|
#expect(proxy?.absoluteString == "http://proxy.local:8080")
|
|
}
|
|
|
|
@Test("HTTPS proxy resolution")
|
|
func testHttpsProxy() {
|
|
let env = ["https_proxy": "https://secureproxy.local:8443"]
|
|
let proxy = ProxyUtils.proxy(for: "secure.com", env: env)
|
|
#expect(proxy?.absoluteString == "https://secureproxy.local:8443")
|
|
}
|
|
|
|
@Test("NO_PROXY exact match")
|
|
func testNoProxyExactMatch() {
|
|
let env = [
|
|
"http_proxy": "http://proxy.local:8080",
|
|
"NO_PROXY": "example.com",
|
|
]
|
|
let proxy = ProxyUtils.proxy(for: "example.com", env: env)
|
|
#expect(proxy == nil)
|
|
}
|
|
|
|
@Test("Uppercase HTTP_PROXY is respected")
|
|
func testUppercaseHttpProxy() {
|
|
let env = ["HTTP_PROXY": "http://upper.local:8081"]
|
|
let proxy = ProxyUtils.proxy(for: "upper.com", env: env)
|
|
#expect(proxy?.absoluteString == "http://upper.local:8081")
|
|
}
|
|
|
|
@Test("Lowercase no_proxy is respected")
|
|
func testLowercaseNoProxy() {
|
|
let env = [
|
|
"http_proxy": "http://proxy.local:8080",
|
|
"no_proxy": "lower.com",
|
|
]
|
|
let proxy = ProxyUtils.proxy(for: "lower.com", env: env)
|
|
#expect(proxy == nil)
|
|
}
|
|
|
|
@Test("HTTPS proxy has higher priority than HTTP proxy")
|
|
func testHttpsPreferredOverHttp() {
|
|
let env = [
|
|
"http_proxy": "http://proxy.local:8080",
|
|
"https_proxy": "https://secureproxy.local:8443",
|
|
]
|
|
let proxy = ProxyUtils.proxy(for: "secure.com", env: env)
|
|
#expect(proxy?.absoluteString == "https://secureproxy.local:8443")
|
|
}
|
|
|
|
@Test("Uppercase HTTP_PROXY overrides lowercase http_proxy")
|
|
func testUppercaseOverridesLowercaseHttp() {
|
|
let env = [
|
|
"http_proxy": "http://lower.local:8080",
|
|
"HTTP_PROXY": "http://upper.local:8081",
|
|
]
|
|
let proxy = ProxyUtils.proxy(for: "example.com", env: env)
|
|
#expect(proxy?.absoluteString == "http://upper.local:8081")
|
|
}
|
|
|
|
@Test("Uppercase HTTPS_PROXY overrides lowercase https_proxy")
|
|
func testUppercaseOverridesLowercaseHttps() {
|
|
let env = [
|
|
"https_proxy": "https://lower.local:8443",
|
|
"HTTPS_PROXY": "https://upper.local:8444",
|
|
]
|
|
let proxy = ProxyUtils.proxy(for: "secure.com", env: env)
|
|
#expect(proxy?.absoluteString == "https://upper.local:8444")
|
|
}
|
|
|
|
@Test("Uppercase NO_PROXY overrides lowercase no_proxy")
|
|
func testUppercaseOverridesLowercaseNoProxy() {
|
|
let env = [
|
|
"http_proxy": "http://proxy.local:8080",
|
|
"no_proxy": "foo.com",
|
|
"NO_PROXY": "bar.com",
|
|
]
|
|
let proxyFoo = ProxyUtils.proxy(for: "foo.com", env: env)
|
|
let proxyBar = ProxyUtils.proxy(for: "bar.com", env: env)
|
|
|
|
#expect(proxyFoo != nil)
|
|
#expect(proxyBar == nil)
|
|
}
|
|
}
|