class Hcloud < Formula desc "Command-line interface for Hetzner Cloud" homepage "https://github.com/hetznercloud/cli" url "https://github.com/hetznercloud/cli/archive/v1.14.0.tar.gz" sha256 "5faecf8a9fb2e7e60a7558444ee89521c710d7c1e22988fd6a86d8b66d88a77f" bottle do cellar :any_skip_relocation sha256 "4776220df1d0a917d73c07c504a56782b327f2ae489b004592f83c726d9bf005" => :catalina sha256 "d6bbed26f9a84818b1e5c1d9160385e8f05156b22f1808db2386f53846093cc8" => :mojave sha256 "b447dd152cd87951043579a75d138d6abc100961780ce61a93f9e06b5d784e42" => :high_sierra end depends_on "go" => :build def install ENV["GOPATH"] = HOMEBREW_CACHE/"go_cache" (buildpath/"src/github.com/hetznercloud/cli").install buildpath.children cd "src/github.com/hetznercloud/cli" do ldflags = "-w -X github.com/hetznercloud/cli/cli.Version=v#{version}" system "go", "build", "-o", bin/"hcloud", "-ldflags", ldflags, "./cmd/hcloud" prefix.install_metafiles end output = Utils.popen_read("#{bin}/hcloud completion bash") (bash_completion/"hcloud").write output output = Utils.popen_read("#{bin}/hcloud completion zsh") (zsh_completion/"_hcloud").write output end test do config_path = testpath/".config/hcloud/cli.toml" ENV["HCLOUD_CONFIG"] = config_path assert_match "", shell_output("#{bin}/hcloud context active") config_path.write <<~EOS active_context = "test" [[contexts]] name = "test" token = "foobar" EOS assert_match "test", shell_output("#{bin}/hcloud context list") assert_match "test", shell_output("#{bin}/hcloud context active") assert_match "hcloud v#{version}", shell_output("#{bin}/hcloud version") end end