Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
require 'spec_helper'

describe 'foreman_proxy::plugin::chef' do
let :facts do
on_supported_os['redhat-6-x86_64']
end

let :pre_condition do
"include foreman_proxy"
end

context 'chef plugin is enabled' do
let :params do
{
:enabled => true
}
end

it 'should call the plugin' do
should contain_foreman_proxy__plugin('chef')
end

it 'should install configuration file' do
should contain_foreman_proxy__settings_file('chef')
should contain_file('/etc/foreman-proxy/settings.d/chef.yml').with_content(/:enabled: true/)
end
end

context 'chef plugin is disabled' do
let :params do
{
:enabled => false
}
end

it 'should call the plugin' do
should contain_foreman_proxy__plugin('chef')
end

it 'should install configuration file' do
should contain_foreman_proxy__settings_file('chef')
should contain_file('/etc/foreman-proxy/settings.d/chef.yml').with_content(/:enabled: false/)
end
end
end
(3-3/10)