inspec/test/unit/fetchers/tar_test.rb

37 lines
918 B
Ruby
Raw Normal View History

2016-02-21 01:48:45 +00:00
# encoding: utf-8
# author: Dominik Richter
# author: Christoph Hartmann
require 'helper'
describe Fetchers::Tar do
let(:fetcher) { Fetchers::Tar }
it 'registers with the fetchers registry' do
reg = Inspec::Fetcher.registry
_(reg['tar']).must_equal fetcher
end
2016-02-22 17:24:16 +00:00
describe 'applied to a tar archive' do
2016-02-21 01:48:45 +00:00
let(:target) { MockLoader.profile_tgz('complete-profile') }
let(:res) { fetcher.resolve(target) }
it 'must be resolved' do
_(res).must_be_kind_of fetcher
end
it 'must contain all files' do
2016-02-22 04:35:47 +00:00
_(res.files.sort).must_equal %w{inspec.yml libraries libraries/testlib.rb
controls controls/filesystem_spec.rb}.sort
2016-02-21 01:48:45 +00:00
end
it 'must not read if the file isnt included' do
_(res.read('file-not-in-archive')).must_be_nil
2016-02-21 01:48:45 +00:00
end
it 'must read the contents of the file' do
_(res.read('inspec.yml')).must_match /^name: complete$/
end
end
end