109 lines
3.3 KiB
Ruby
109 lines
3.3 KiB
Ruby
class Pacparser < Formula
|
|
desc "Library to parse proxy auto-config (PAC) files"
|
|
homepage "https://github.com/pacparser/pacparser"
|
|
url "https://github.com/pacparser/pacparser/archive/1.3.7.tar.gz"
|
|
sha256 "575c5d8096b4c842b2af852bbb8bcfde96170b28b49f33249dbe2057a8beea13"
|
|
head "https://github.com/pacparser/pacparser.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 1
|
|
sha256 "5a4db686679c753a806fa2e2df5e93263f973f447f9357fcdadc071687c10071" => :mojave
|
|
sha256 "1bb0af844e0cfd58357987f2f9e6f82b0e72a13df961f13ad8b81b3e00a3dff2" => :high_sierra
|
|
sha256 "719e5eadacf71e3a2e863447609322c45f3be3a9d3ee63373c05a9a2ae7f31b8" => :sierra
|
|
end
|
|
|
|
def install
|
|
# Disable parallel build due to upstream concurrency issue.
|
|
# https://github.com/pacparser/pacparser/issues/27
|
|
ENV.deparallelize
|
|
ENV["VERSION"] = version
|
|
Dir.chdir "src"
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
# example pacfile taken from upstream sources
|
|
(testpath/"test.pac").write <<~'EOS'
|
|
function FindProxyForURL(url, host) {
|
|
|
|
if ((isPlainHostName(host) ||
|
|
dnsDomainIs(host, ".example.edu")) &&
|
|
!localHostOrDomainIs(host, "www.example.edu"))
|
|
return "plainhost/.example.edu";
|
|
|
|
// Return externaldomain if host matches .*\.externaldomain\.example
|
|
if (/.*\.externaldomain\.example/.test(host))
|
|
return "externaldomain";
|
|
|
|
// Test if DNS resolving is working as intended
|
|
if (dnsDomainIs(host, ".google.com") &&
|
|
isResolvable(host))
|
|
return "isResolvable";
|
|
|
|
// Test if DNS resolving is working as intended
|
|
if (dnsDomainIs(host, ".notresolvabledomain.invalid") &&
|
|
!isResolvable(host))
|
|
return "isNotResolvable";
|
|
|
|
if (/^https:\/\/.*$/.test(url))
|
|
return "secureUrl";
|
|
|
|
if (isInNet(myIpAddress(), '10.10.0.0', '255.255.0.0'))
|
|
return '10.10.0.0';
|
|
|
|
if ((typeof(myIpAddressEx) == "function") &&
|
|
isInNetEx(myIpAddressEx(), '3ffe:8311:ffff/48'))
|
|
return '3ffe:8311:ffff';
|
|
|
|
else
|
|
return "END-OF-SCRIPT";
|
|
}
|
|
EOS
|
|
# Functional tests from upstream sources
|
|
test_sets = [
|
|
{
|
|
"cmd" => "-c 3ffe:8311:ffff:1:0:0:0:0 -u http://www.example.com",
|
|
"res" => "3ffe:8311:ffff",
|
|
},
|
|
{
|
|
"cmd" => "-c 0.0.0.0 -u http://www.example.com",
|
|
"res" => "END-OF-SCRIPT",
|
|
},
|
|
{
|
|
"cmd" => "-u http://host1",
|
|
"res" => "plainhost/.example.edu",
|
|
},
|
|
{
|
|
"cmd" => "-u http://www1.example.edu",
|
|
"res" => "plainhost/.example.edu",
|
|
},
|
|
{
|
|
"cmd" => "-u http://manugarg.externaldomain.example",
|
|
"res" => "externaldomain",
|
|
},
|
|
{
|
|
"cmd" => "-u https://www.google.com", ## internet
|
|
"res" => "isResolvable", ## required
|
|
},
|
|
{
|
|
"cmd" => "-u https://www.notresolvabledomain.invalid",
|
|
"res" => "isNotResolvable",
|
|
},
|
|
{
|
|
"cmd" => "-u https://www.example.com",
|
|
"res" => "secureUrl",
|
|
},
|
|
{
|
|
"cmd" => "-c 10.10.100.112 -u http://www.example.com",
|
|
"res" => "10.10.0.0",
|
|
},
|
|
]
|
|
# Loop and execute tests
|
|
test_sets.each do |t|
|
|
assert_equal t["res"],
|
|
shell_output("#{bin}/pactester -p #{testpath}/test.pac " +
|
|
t["cmd"]).strip
|
|
end
|
|
end
|
|
end
|