77 lines
2.2 KiB
Ruby
77 lines
2.2 KiB
Ruby
class FaasCli < Formula
|
|
desc "CLI for templating and/or deploying FaaS functions"
|
|
homepage "http://docs.get-faas.com/"
|
|
url "https://github.com/alexellis/faas-cli.git",
|
|
:tag => "0.4.7",
|
|
:revision => "0b2e05dcbab61e5a462b65352d4cf6ddf3dbf58a"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "b89b44b1a990de13659cc1d6ef03ec6cad72ede9f60b5c8b0d6639ca84210dce" => :sierra
|
|
sha256 "28ab1835bccff4f261c286e9d1d0df699bbe2fc2c5209b7def6aa0a8e8537e97" => :el_capitan
|
|
sha256 "e3a7567fd99ab802575078586b4d309f592e26bc1bbaa9e9f42690ebe70c159e" => :yosemite
|
|
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/alexellis/faas-cli").install buildpath.children
|
|
cd "src/github.com/alexellis/faas-cli" do
|
|
commit = Utils.popen_read("git rev-list -1 HEAD").chomp
|
|
system "go", "build", "-ldflags", "-X main.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.
|
|
200 OK
|
|
URL: http://localhost:#{port}/function/dummy_function
|
|
EOS
|
|
|
|
begin
|
|
output = shell_output("#{bin}/faas-cli -action deploy -yaml test.yml")
|
|
assert_equal expected, output.chomp
|
|
ensure
|
|
Process.kill("TERM", pid)
|
|
Process.wait(pid)
|
|
end
|
|
end
|
|
end
|