4b63a70b87
Closes #47964. Signed-off-by: Alexander Bayandin <a.bayandin@gmail.com>
48 lines
1.3 KiB
Ruby
48 lines
1.3 KiB
Ruby
class Allure < Formula
|
|
desc "Flexible lightweight test report tool"
|
|
homepage "https://github.com/allure-framework/allure2"
|
|
url "https://dl.bintray.com/qameta/maven/io/qameta/allure/allure-commandline/2.13.1/allure-commandline-2.13.1.zip"
|
|
sha256 "17ff3a90983a16b0e892975d9839e331706b5b7a906d97427cdbad4834281d6a"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.8+"
|
|
|
|
def install
|
|
# Remove all windows files
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
prefix.install_metafiles
|
|
libexec.install Dir["*"]
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
end
|
|
|
|
test do
|
|
(testpath/"allure-results/allure-result.json").write <<~EOS
|
|
{
|
|
"uuid": "allure",
|
|
"name": "testReportGeneration",
|
|
"fullName": "org.homebrew.AllureFormula.testReportGeneration",
|
|
"status": "passed",
|
|
"stage": "finished",
|
|
"start": 1494857300486,
|
|
"stop": 1494857300492,
|
|
"labels": [
|
|
{
|
|
"name": "package",
|
|
"value": "org.homebrew"
|
|
},
|
|
{
|
|
"name": "testClass",
|
|
"value": "AllureFormula"
|
|
},
|
|
{
|
|
"name": "testMethod",
|
|
"value": "testReportGeneration"
|
|
}
|
|
]
|
|
}
|
|
EOS
|
|
system "#{bin}/allure", "generate", "#{testpath}/allure-results", "-o", "#{testpath}/allure-report"
|
|
end
|
|
end
|