class FaasCli < Formula desc "CLI for templating and/or deploying FaaS functions" homepage "https://docs.get-faas.com/" url "https://github.com/openfaas/faas-cli.git", :tag => "0.6.4", :revision => "8c7ebc3e7304873ba42b8d8e95d492499935f278" bottle do cellar :any_skip_relocation sha256 "93982ed7535a3d2dc8219d98c5e8c723f4924ee81f36a2cf28f0bdece9a3617b" => :high_sierra sha256 "e90f58a525a9bd50b3bd9f082f0442595a9c7327a9e69a3ec0ed4d28f49d48f9" => :sierra sha256 "aa87d88f3e13c705b9d7c7aae5d55567fb1366a797f57a185fd0b5c34e6489dd" => :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 project = "github.com/openfaas/faas-cli" commit = Utils.popen_read("git", "rev-parse", "HEAD").chomp system "go", "build", "-ldflags", "-s -w -X #{project}/version.GitCommit=#{commit} -X #{project}/version.Version=#{version}", "-a", "-installsuffix", "cgo", "-o", bin/"faas-cli" bin.install_symlink "faas-cli" => "faas" pkgshare.install "template" 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 <<~EOS provider: name: faas gateway: http://localhost:#{port} network: "func_functions" functions: dummy_function: lang: python handler: ./dummy_function image: dummy_image EOS expected = <<~EOS Deploying: dummy_function. Function dummy_function already exists, attempting rolling-update. Deployed. 200 OK. URL: http://localhost:#{port}/function/dummy_function EOS begin cp_r pkgshare/"template", testpath output = shell_output("#{bin}/faas-cli deploy -yaml test.yml") assert_equal expected, output.chomp rm_rf "template" output = shell_output("#{bin}/faas-cli deploy -yaml test.yml 2>&1", 1) assert_match "stat ./template/python/template.yml", output assert_match "ruby", shell_output("#{bin}/faas-cli template pull 2>&1") assert_match "node", shell_output("#{bin}/faas-cli new --list") output = shell_output("#{bin}/faas-cli deploy -yaml test.yml") assert_equal expected, output.chomp stable_resource = stable.instance_variable_get(:@resource) commit = stable_resource.instance_variable_get(:@specs)[:revision] faas_cli_version = shell_output("#{bin}/faas-cli version") assert_match /\s#{commit}$/, faas_cli_version assert_match /\s#{version}$/, faas_cli_version ensure Process.kill("TERM", pid) Process.wait(pid) end end end