Add beaker tests

Add basic tests to ensure the puppet manifests can be applied cleanly
and the service will start.

Change-Id: I15a83e6d7c0449d0982fcc0a62dcab75766addec
This commit is contained in:
Colleen Murphy 2018-07-12 13:32:16 +02:00
parent 8acf255563
commit b285011749
3 changed files with 44 additions and 0 deletions

36
spec/acceptance/basic_spec.rb Executable file
View File

@ -0,0 +1,36 @@
require 'puppet-openstack_infra_spec_helper/spec_helper_acceptance'
describe 'simpleproxy', if: os[:family] == 'ubuntu' do
def pp_path
base_path = File.dirname(__FILE__)
File.join(base_path, 'fixtures')
end
def puppet_manifest
manifest_path = File.join(pp_path, 'default.pp')
File.read(manifest_path)
end
def postconditions_puppet_manifest
manifest_path = File.join(pp_path, 'postconditions.pp')
File.read(manifest_path)
end
it 'should work with no errors' do
apply_manifest(puppet_manifest, catch_failures: true)
end
it 'should be idempotent' do
apply_manifest(puppet_manifest, catch_changes: true)
end
it 'should start' do
apply_manifest(postconditions_puppet_manifest, catch_failures: true)
end
describe service('simpleproxy-mysql') do
it { should be_running }
end
end

View File

@ -0,0 +1,5 @@
include 'simpleproxy'
class { 'simpleproxy::server':
db_host => 'localhost',
}

View File

@ -0,0 +1,3 @@
service { 'simpleproxy-mysql':
ensure => running,
}