90 lines
3.1 KiB
Ruby
90 lines
3.1 KiB
Ruby
class CucumberCpp < Formula
|
|
desc "Support for writing Cucumber step definitions in C++"
|
|
homepage "https://cucumber.io"
|
|
url "https://github.com/cucumber/cucumber-cpp/archive/v0.5.tar.gz"
|
|
sha256 "9e1b5546187290b265e43f47f67d4ce7bf817ae86ee2bc5fb338115b533f8438"
|
|
license "MIT"
|
|
revision 9
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "463d163c018e1d207f0dd8cc3473ee872e2d58433b146de268eb91ea23f8493c"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "15ddb1214407ec67e52c157bee09c87582e6b990da1d887ea9209d9fb84f15cb"
|
|
sha256 cellar: :any_skip_relocation, monterey: "7972324f02cfc79899be874e1b8cc402668808ef6b050ba55796eb425f700396"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "d4190f94dc9bf646da7651b40e74f169665d8d24e5b9eefa21b8665f4df00317"
|
|
sha256 cellar: :any_skip_relocation, catalina: "e6ae6448b0ba7195587da376f2ed1385112601c40b8dbcc3fc4bbd9dcafe7576"
|
|
sha256 cellar: :any_skip_relocation, mojave: "2590c06bdaf51baa254dc3982d853e7d0fb247fd13182db1a8f4ba1f7c07f4db"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "8f5fb64963eb741e323475d8720c3ae0ebd98e932b5a82371277e0e82a05c4e3"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "ruby" => :test
|
|
depends_on "boost"
|
|
|
|
def install
|
|
args = std_cmake_args + %w[
|
|
-DCUKE_DISABLE_GTEST=on
|
|
-DCUKE_DISABLE_CPPSPEC=on
|
|
-DCUKE_DISABLE_FUNCTIONAL=on
|
|
-DCUKE_DISABLE_BOOST_TEST=on
|
|
-DCMAKE_CXX_STANDARD=11
|
|
]
|
|
|
|
system "cmake", ".", *args
|
|
system "cmake", "--build", "."
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
boost = Formula["boost"]
|
|
ENV.prepend_path "PATH", Formula["ruby"].opt_bin
|
|
ENV["GEM_HOME"] = testpath
|
|
ENV["BUNDLE_PATH"] = testpath
|
|
|
|
system "gem", "install", "cucumber", "-v", "5.2.0"
|
|
|
|
(testpath/"features/test.feature").write <<~EOS
|
|
Feature: Test
|
|
Scenario: Just for test
|
|
Given A given statement
|
|
When A when statement
|
|
Then A then statement
|
|
EOS
|
|
(testpath/"features/step_definitions/cucumber.wire").write <<~EOS
|
|
host: localhost
|
|
port: 3902
|
|
EOS
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <cucumber-cpp/generic.hpp>
|
|
GIVEN("^A given statement$") {
|
|
}
|
|
WHEN("^A when statement$") {
|
|
}
|
|
THEN("^A then statement$") {
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-o", "test", "-I#{include}", "-L#{lib}",
|
|
"-lcucumber-cpp", "-I#{boost.opt_include}",
|
|
"-L#{boost.opt_lib}", "-lboost_regex", "-lboost_system",
|
|
"-lboost_program_options", "-lboost_filesystem", "-lboost_chrono",
|
|
"-pthread"
|
|
begin
|
|
pid = fork { exec "./test" }
|
|
expected = <<~EOS
|
|
Feature: Test
|
|
|
|
Scenario: Just for test # features\/test.feature:2
|
|
Given A given statement # test.cpp:2
|
|
When A when statement # test.cpp:4
|
|
Then A then statement # test.cpp:6
|
|
|
|
1 scenario \(1 passed\)
|
|
3 steps \(3 passed\)
|
|
EOS
|
|
assert_match expected, shell_output("#{testpath}/bin/cucumber --publish-quiet")
|
|
ensure
|
|
Process.kill("SIGINT", pid)
|
|
Process.wait(pid)
|
|
end
|
|
end
|
|
end
|