2015-08-28 23:08:24 +00:00
|
|
|
# encoding: utf-8
|
2015-09-09 16:37:16 +00:00
|
|
|
# copyright: 2015, Vulcano Security GmbH
|
2015-10-06 16:55:44 +00:00
|
|
|
# author: Dominik Richter
|
|
|
|
# author: Christoph Hartmann
|
2015-07-15 13:15:18 +00:00
|
|
|
# license: All rights reserved
|
|
|
|
|
2015-10-21 17:30:01 +00:00
|
|
|
# Usage:
|
|
|
|
# describe command('ls -al /') do
|
|
|
|
# it { should exist }
|
|
|
|
# its(:stdout) { should match /bin/ }
|
|
|
|
# its(:stderr) { should match /No such file or directory/ }
|
|
|
|
# its(:exit_status) { should eq 0 }
|
|
|
|
# end
|
|
|
|
|
2015-09-14 12:58:39 +00:00
|
|
|
class Cmd < Vulcano.resource(1)
|
2015-08-28 23:08:24 +00:00
|
|
|
name 'command'
|
|
|
|
def initialize(cmd)
|
|
|
|
@command = cmd
|
|
|
|
end
|
|
|
|
|
|
|
|
def result
|
2015-10-05 16:44:52 +00:00
|
|
|
@result ||= vulcano.backend.run_command(@command)
|
2015-06-21 16:19:04 +00:00
|
|
|
end
|
2015-08-28 23:08:24 +00:00
|
|
|
|
|
|
|
def stdout
|
|
|
|
result.stdout
|
|
|
|
end
|
|
|
|
|
|
|
|
def stderr
|
|
|
|
result.stderr
|
|
|
|
end
|
|
|
|
|
|
|
|
def exit_status
|
|
|
|
result.exit_status.to_i
|
|
|
|
end
|
|
|
|
|
2015-09-18 10:40:53 +00:00
|
|
|
def exist?
|
2015-10-05 21:46:33 +00:00
|
|
|
res = vulcano.backend.run_command("type \"#{@command}\" > /dev/null")
|
2015-08-28 23:08:24 +00:00
|
|
|
res.exit_status.to_i == 0
|
|
|
|
end
|
2015-10-12 11:01:58 +00:00
|
|
|
|
|
|
|
def to_s
|
|
|
|
"Command #{@command}"
|
|
|
|
end
|
2015-08-28 23:08:24 +00:00
|
|
|
end
|