test: add tests for v3000-py2
This commit is contained in:
parent
965588b108
commit
c228029879
21
test/integration/v3000-py2/controls/pkgs_spec.rb
Normal file
21
test/integration/v3000-py2/controls/pkgs_spec.rb
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
version =
|
||||||
|
case platform[:family]
|
||||||
|
when 'debian'
|
||||||
|
'3000.2+ds-1'
|
||||||
|
end
|
||||||
|
|
||||||
|
control 'salt packages' do
|
||||||
|
title 'should be installed'
|
||||||
|
|
||||||
|
%w[
|
||||||
|
salt-master
|
||||||
|
salt-minion
|
||||||
|
].each do |p|
|
||||||
|
describe package(p) do
|
||||||
|
it { should be_installed }
|
||||||
|
its('version') { should eq version }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
16
test/integration/v3000-py2/controls/service_spec.rb
Normal file
16
test/integration/v3000-py2/controls/service_spec.rb
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
control 'salt services' do
|
||||||
|
title 'should be running'
|
||||||
|
|
||||||
|
%w[
|
||||||
|
salt-master
|
||||||
|
salt-minion
|
||||||
|
].each do |p|
|
||||||
|
describe service(p) do
|
||||||
|
it { should be_installed }
|
||||||
|
it { should be_enabled }
|
||||||
|
it { should be_running }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
5
test/salt/pillar/v3000-py2.sls
Normal file
5
test/salt/pillar/v3000-py2.sls
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
|
salt:
|
||||||
|
release: '3000'
|
Loading…
Reference in New Issue
Block a user