Skip to content

Commit

Permalink
test(neon): add pillar and tests for 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
myii committed Mar 21, 2020
1 parent 0da366c commit f91f10c
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/v201902-py3/controls/pkgs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
when 'fedora'
'2019.2.1rc0-3.fc31'
when 'suse'
'2019.2.0-lp151.5.12.1'
'2019.2.0-lp151.28.1'
when 'debian'
'2019.2.3+ds-1'
end
Expand Down
32 changes: 32 additions & 0 deletions test/integration/v3000-py3/controls/pkgs_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# frozen_string_literal: true

version =
case platform[:family]
when 'redhat'
case platform[:name]
when 'amazon'
'3000-1.amzn2'
when 'centos'
'3000-1.el8'
end
when 'fedora'
'3000-5.fc31'
when 'suse'
'3000-lp151.28.1'
when 'debian'
'3000+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
15 changes: 15 additions & 0 deletions test/integration/v3000-py3/controls/service_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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_enabled }
it { should be_running }
end
end
end
6 changes: 6 additions & 0 deletions test/salt/pillar/v3000-py3.sls
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
salt:
release: '3000'
py_ver: 'py3'

0 comments on commit f91f10c

Please sign in to comment.