class Fn < Formula desc "Command-line tool for the fn project" homepage "https://fnproject.github.io" url "https://github.com/fnproject/cli/archive/0.4.23.tar.gz" sha256 "f756228329df77e015d63ab2176c2a1bf67f0ce8488f2ba295dc90eec5c23392" bottle do cellar :any_skip_relocation sha256 "d3a6e162054eb3512fcdecaf2f158b99e4db322c24a3231a9cfc757de42eab8c" => :high_sierra sha256 "fe8966658aea56e004e767f7bb03a084d176e75263c44a3c8a5e4b6938a51bb8" => :sierra sha256 "fc4bc7ca078d583dab2913e2dd20fa3de6e9832b451cd33c4730443c4c75dbdc" => :el_capitan end depends_on "go" => :build depends_on "glide" => :build def install ENV["GOPATH"] = buildpath ENV["GLIDE_HOME"] = HOMEBREW_CACHE/"glide_home/#{name}" dir = buildpath/"src/github.com/fnproject/cli" dir.install Dir["*"] cd dir do system "glide", "install", "-v", "--force", "--skip-test" system "go", "build", "-o", "#{bin}/fn" prefix.install_metafiles end end test do require "socket" assert_match version.to_s, shell_output("#{bin}/fn --version") system "#{bin}/fn", "init", "--runtime", "go", "--name", "myfunc" assert_predicate testpath/"func.go", :exist?, "expected file func.go doesn't exist" assert_predicate testpath/"func.yaml", :exist?, "expected file func.yaml doesn't exist" server = TCPServer.new("localhost", 0) port = server.addr[1] pid = fork do loop do socket = server.accept response = '{"route": {"path": "/myfunc", "image": "fnproject/myfunc"} }' 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 begin ENV["API_URL"] = "http://localhost:#{port}" ENV["FN_REGISTRY"] = "fnproject" expected = "/myfunc created with fnproject/myfunc" output = shell_output("#{bin}/fn routes create myapp myfunc --image fnproject/myfunc:0.0.1") assert_match expected, output.chomp ensure Process.kill("TERM", pid) Process.wait(pid) end end end