Parcourir la source

test(neon): add pillar and tests for `3000`

tags/v1.3.2
Imran Iqbal il y a 4 ans
Parent
révision
f91f10c280
Aucun compte lié à l'adresse e-mail de l'auteur
4 fichiers modifiés avec 54 ajouts et 1 suppressions
  1. +1
    -1
      test/integration/v201902-py3/controls/pkgs_spec.rb
  2. +32
    -0
      test/integration/v3000-py3/controls/pkgs_spec.rb
  3. +15
    -0
      test/integration/v3000-py3/controls/service_spec.rb
  4. +6
    -0
      test/salt/pillar/v3000-py3.sls

+ 1
- 1
test/integration/v201902-py3/controls/pkgs_spec.rb Voir le fichier

@@ -12,7 +12,7 @@ version =
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

+ 32
- 0
test/integration/v3000-py3/controls/pkgs_spec.rb Voir le fichier

@@ -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
- 0
test/integration/v3000-py3/controls/service_spec.rb Voir le fichier

@@ -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
- 0
test/salt/pillar/v3000-py3.sls Voir le fichier

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
salt:
release: '3000'
py_ver: 'py3'

Chargement…
Annuler
Enregistrer