39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
require "language/go"
|
|
|
|
class Vegeta < Formula
|
|
desc "HTTP load testing tool and library"
|
|
homepage "https://github.com/tsenart/vegeta"
|
|
url "https://github.com/tsenart/vegeta/archive/v6.0.0.tar.gz"
|
|
sha256 "7933a77eaae1e5269f6490842527a646221d91515eb8e863e831df608e7a0d48"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "ad80d784b86ca30afa3ac8c0dd899d9166953be009ceb4cf784b07c64bf21701" => :el_capitan
|
|
sha256 "9dea781e263dd683a17651fa3c18b91fed068510c189a0dbf0820d9eb04b9634" => :yosemite
|
|
sha256 "b0ab8a3f5fe221bf139e45aa44cbf1d483c2a5b24590a9a3e0b1ca68eb735f4a" => :mavericks
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
go_resource "github.com/streadway/quantile" do
|
|
url "https://github.com/streadway/quantile.git",
|
|
:revision => "b0c588724d25ae13f5afb3d90efec0edc636432b"
|
|
end
|
|
|
|
def install
|
|
mkdir_p buildpath/"src/github.com/tsenart/"
|
|
ln_s buildpath, buildpath/"src/github.com/tsenart/vegeta"
|
|
ENV["GOPATH"] = buildpath
|
|
ENV["CGO_ENABLED"] = "0"
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
system "go", "build", "-ldflags", "-X main.Version=#{version}", "-o", "vegeta"
|
|
bin.install "vegeta"
|
|
end
|
|
|
|
test do
|
|
output = pipe_output("#{bin}/vegeta attack -duration=1s -rate=1", "GET http://localhost/")
|
|
pipe_output("#{bin}/vegeta report", output)
|
|
end
|
|
end
|