如何从黄瓜/ aruba捕获shell脚本程序输出?

时间:2016-11-05 10:06:50

标签: ruby bash shell cucumber aruba

我想捕获我从黄瓜功能文件中运行的输出。

我创建了一个shell脚本程序并将其放在/ usr / local / bin /中,因此可以从系统中的任何位置访问它。

abc_qa.sh -

arg=$1
if [[ $arg = 1 ]]
then
    echo $(date)
fi

黄瓜的项目结构 -

aruba -

├──特色

│├──支持

││└──env.rb

│└──use_aruba_cucumber.feature

├──Gemfile

Gemfile -

source 'https://rubygems.org'
gem 'aruba', '~> 0.14.2'

env.rb -

require 'aruba/cucumber'

use_aruba_cucumber.feature -

Feature: Cucumber
 Scenario: First Run
    When I run `bash abc_qa.sh 1`

我想在黄瓜本身捕获这个abc_qa.sh程序输出,并通过使用任何类型的简单测试来比较这个日期是对还是错,并将此测试作为通过。

1 个答案:

答案 0 :(得分:1)

您可以使用%x(command)获取命令的标准输出。

然后,您可以使用Time.parse"Sat Nov 5 12:04:18 CET 2016"转换为2016-11-05 12:04:18 +0100作为Time对象,并将其与Time.now进行比较:

require 'time'
time_from_abc_script = Time.parse(%x(bash abc_qa.sh 1))
puts (Time.now-time_from_abc_script).abs < 5 # No more than 5s difference between 2 times

您可以在任何所需的测试文件中使用此布尔值。

例如:

features/use_aruba_with_cucumber.feature

Feature: Cucumber
 Scenario: First Run
  When I run `bash abc_qa.sh 1`
  Then the output should be the current time

features/step_definitions/time_steps.rb

require 'time'

Then(/^the output should be the current time$/) do
  time_from_script = Time.parse(last_command_started.output)
  expect(time_from_script).to be_within(5).of(Time.now)
end