2017-02-23 7 views
0

Jruby 9.1.7.0에서 오이 스크립트를 실행합니다. 출력은 STDOUT으로 이동합니다. 로컬 변수에 저장하려면 어떻게해야합니까?Cucumber :: CLI :: Main.execute에서 출력 (STDOUT)을 변수로 가져 오는 방법

require 'cucumber' 
require 'stringio' 

@output = StringIO.new 
features = 'features/first.feature' 
args = features.split.concat %w(-f html) 

# Run cucumber 
begin 
# output goes to STDOUT 
    Cucumber::Cli::Main.new(args).execute! 
rescue SystemExit 
    puts "Cucumber calls @kernel.exit(), killing your script unless you rescue" 
end 

답변

0

당신이

args = features.split.concat %w(-f html -o test.html) 
0

과 코드를 수정할 수 있습니다

-o, --out [FILE|DIR]    Write output to a file/directory instead of STDOUT. This option 
           applies to the previously specified --format, or the 
           default format if no format is specified. Check the specific 
           formatter's docs to see whether to pass a file or a dir. 

cmd를 "오이 --help"를 입력하면 당신은 또한 임시 파일에 쓰기 및 읽기 수 파일로부터의 값

require 'cucumber' 
require 'tempfile' 
require 'securerandom' 

filename = "#{SecureRandom.urlsafe_base64}" 
file = Tempfile.new(filename) 
filepath = "#{file.path}" 
features = "cucumber/ars/features/ars_additional.feature" 
args = features.split.concat %w(-f html -o) 
args << filepath 
Cucumber::Cli::Main.new(args).execute! 

@output = file.read 
file.close 
file.unlink