homebrew-core/Formula/faas-cli.rb
2017-10-09 06:41:44 -07:00

82 lines
2.4 KiB
Ruby

class FaasCli < Formula
desc "CLI for templating and/or deploying FaaS functions"
homepage "http://docs.get-faas.com/"
url "https://github.com/openfaas/faas-cli.git",
:tag => "0.4.18",
:revision => "a4f03381443fd5c1e74ea7e17614df9b3b60abd1"
bottle do
cellar :any_skip_relocation
sha256 "a426c45e9cbe4ab6544325db7a64f535ff3e63207697ac448898900723976b49" => :high_sierra
sha256 "c2fa664a069c91485b402109679609e0e65722854c4795e14e228d3d9d137a28" => :sierra
sha256 "8677a4480374a8065987ba962955f5a4118966c5e8327bf8d1ab85c749bea0b0" => :el_capitan
end
depends_on "go" => :build
def install
ENV["XC_OS"] = "darwin"
ENV["XC_ARCH"] = MacOS.prefer_64_bit? ? "amd64" : "386"
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/openfaas/faas-cli").install buildpath.children
cd "src/github.com/openfaas/faas-cli" do
commit = Utils.popen_read("git rev-list -1 HEAD").chomp
system "go", "build", "-ldflags", "-s -w -X github.com/openfaas/faas-cli/commands.GitCommit=#{commit}", "-a",
"-installsuffix", "cgo", "-o", bin/"faas-cli"
prefix.install_metafiles
end
end
test do
require "socket"
server = TCPServer.new("localhost", 0)
port = server.addr[1]
pid = fork do
loop do
socket = server.accept
response = "OK"
socket.print "HTTP/1.1 200 OK\r\n" \
"Content-Length: #{response.bytesize}\r\n" \
"Connection: close\r\n"
socket.print "\r\n"
socket.print response
socket.close
end
end
(testpath/"test.yml").write <<-EOF.undent
provider:
name: faas
gateway: http://localhost:#{port}
network: "func_functions"
functions:
dummy_function:
lang: python
handler: ./dummy_function
image: dummy_image
EOF
expected = <<-EOS.undent
Deploying: dummy_function.
Removing old service.
Deployed.
URL: http://localhost:#{port}/function/dummy_function
200 OK
EOS
begin
output = shell_output("#{bin}/faas-cli deploy -yaml test.yml")
assert_equal expected, output
commit = Utils.popen_read("git rev-list -1 HEAD").chomp
output = shell_output("#{bin}/faas-cli version")
assert_match commit, output.chomp
ensure
Process.kill("TERM", pid)
Process.wait(pid)
end
end
end