Przeglądaj źródła

test(magnesium): add pillar and tests for `3002`

tags/v1.7.2
Imran Iqbal 3 lat temu
rodzic
commit
c0660608d7
Brak konta powiązanego z adresem e-mail autora
3 zmienionych plików z 39 dodań i 0 usunięć
  1. +17
    -0
      test/integration/v3002-py3/controls/pkgs_spec.rb
  2. +16
    -0
      test/integration/v3002-py3/controls/service_spec.rb
  3. +6
    -0
      test/salt/pillar/v3002-py3.sls

+ 17
- 0
test/integration/v3002-py3/controls/pkgs_spec.rb Wyświetl plik

@@ -0,0 +1,17 @@
# frozen_string_literal: true

control 'salt packages' do
title 'should be installed'

version = '3002'

%w[
salt-master
salt-minion
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should match(/^#{version}/) }
end
end
end

+ 16
- 0
test/integration/v3002-py3/controls/service_spec.rb Wyświetl plik

@@ -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

+ 6
- 0
test/salt/pillar/v3002-py3.sls Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz