2016-03-25 00:31:19 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# author: Dominik Richter
|
|
|
|
# author: Christoph Hartmann
|
|
|
|
|
|
|
|
require 'helper'
|
|
|
|
|
|
|
|
require 'minitest/hell'
|
|
|
|
class Minitest::Test
|
|
|
|
parallelize_me!
|
|
|
|
end
|
|
|
|
|
|
|
|
class Module
|
|
|
|
include Minitest::Spec::DSL
|
|
|
|
end
|
|
|
|
|
|
|
|
module FunctionalHelper
|
|
|
|
let(:repo_path) { File.expand_path(File.join( __FILE__, '..', '..', '..')) }
|
|
|
|
let(:exec_inspec) { File.join(repo_path, 'bin', 'inspec') }
|
|
|
|
let(:profile_path) { File.join(repo_path, 'test', 'unit', 'mock', 'profiles') }
|
|
|
|
let(:examples_path) { File.join(repo_path, 'examples') }
|
|
|
|
|
|
|
|
let(:example_profile) { File.join(examples_path, 'profile') }
|
2016-04-20 04:50:18 +00:00
|
|
|
let(:example_control) { File.join(example_profile, 'controls', 'example.rb') }
|
2016-03-25 00:31:19 +00:00
|
|
|
let(:inheritance_profile) { File.join(examples_path, 'profile') }
|
2016-09-01 12:25:56 +00:00
|
|
|
let(:failure_control) { File.join(profile_path, 'failures', 'controls', 'failures.rb') }
|
2016-09-01 22:54:03 +00:00
|
|
|
let(:simple_inheritance) { File.join(profile_path, 'simple-inheritance') }
|
2016-03-25 00:31:19 +00:00
|
|
|
|
|
|
|
let(:dst) {
|
|
|
|
# create a temporary path, but we only want an auto-clean helper
|
|
|
|
# so remove the file and give back the path
|
|
|
|
res = Tempfile.new('inspec-shred')
|
|
|
|
FileUtils.rm(res.path)
|
|
|
|
TMP_CACHE[res.path] = res
|
|
|
|
}
|
|
|
|
|
2016-11-09 14:41:48 +00:00
|
|
|
def inspec(commandline, prefix = nil)
|
|
|
|
CMD.run_command("#{prefix} #{exec_inspec} #{commandline}")
|
2016-03-25 00:31:19 +00:00
|
|
|
end
|
|
|
|
end
|