inspec/test/unit/resources/apt_test.rb

65 lines
2 KiB
Ruby
Raw Normal View History

2015-10-10 17:54:00 +00:00
# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
require 'helper'
2015-10-26 03:04:18 +00:00
require 'inspec/resource'
2015-10-10 17:54:00 +00:00
2015-10-26 03:04:18 +00:00
describe 'Inspec::Resources::AptRepo' do
2015-10-10 17:54:00 +00:00
it 'check apt on ubuntu' do
resource = MockLoader.new(:ubuntu1504).load_resource('apt', 'http://archive.ubuntu.com/ubuntu/')
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
it 'check apt on ubuntu with ppa' do
resource = MockLoader.new(:ubuntu1504).load_resource('apt', 'ubuntu-wine/ppa')
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
it 'check apt on ubuntu with ppa' do
resource = MockLoader.new(:ubuntu1504).load_resource('apt', 'ppa:ubuntu-wine/ppa')
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
2016-10-08 21:26:21 +00:00
it 'check apt on mint' do
resource = MockLoader.new(:mint18).load_resource('apt', 'http://archive.ubuntu.com/ubuntu/')
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
it 'check apt on mint with ppa' do
resource = MockLoader.new(:mint18).load_resource('apt', 'ubuntu-wine/ppa')
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
it 'check apt on mint with ppa' do
resource = MockLoader.new(:mint18).load_resource('apt', 'ppa:ubuntu-wine/ppa')
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
2015-10-10 17:54:00 +00:00
it 'check apt on debian' do
2016-10-08 21:26:21 +00:00
resource = MockLoader.new(:debian8).load_resource('apt', 'http://archive.ubuntu.com/ubuntu/')
2015-10-10 17:54:00 +00:00
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
it 'check apt on unknown os' do
resource = MockLoader.new(:undefined).load_resource('apt', 'ubuntu-wine/ppa')
_(resource.exists?).must_equal false
_(resource.enabled?).must_equal false
end
# check ppa resource
it 'check apt on ubuntu' do
resource = MockLoader.new(:ubuntu1504).load_resource('ppa', 'ubuntu-wine/ppa')
_(resource.exists?).must_equal true
_(resource.enabled?).must_equal true
end
end