Add initial saltcheck tests
This commit is contained in:
parent
683f45579d
commit
668e712d6c
26
salt/saltcheck-tests/api.tst
Normal file
26
salt/saltcheck-tests/api.tst
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
|
{% if salt_settings.install_packages %}
|
||||||
|
api_installed:
|
||||||
|
module_and_function: pkg.version
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.salt_api }}
|
||||||
|
{%- if salt_settings.version is defined %}
|
||||||
|
assertion: assertEqual
|
||||||
|
expected-return: {{ salt_settings.version }}
|
||||||
|
{% else %}
|
||||||
|
assertion: assertNotEmpty
|
||||||
|
{%- endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
api_running:
|
||||||
|
module_and_function: service.status
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.api_service }}
|
||||||
|
assertion: assertTrue
|
||||||
|
|
||||||
|
api_enabled:
|
||||||
|
module_and_function: service.enabled
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.api_service }}
|
||||||
|
assertion: assertTrue
|
47
salt/saltcheck-tests/master.tst
Normal file
47
salt/saltcheck-tests/master.tst
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
|
{% if salt_settings.install_packages %}
|
||||||
|
master_installed:
|
||||||
|
module_and_function: pkg.version
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.salt_master }}
|
||||||
|
{%- if salt_settings.version is defined %}
|
||||||
|
assertion: assertEqual
|
||||||
|
expected-return: {{ salt_settings.version }}
|
||||||
|
{% else %}
|
||||||
|
assertion: assertNotEmpty
|
||||||
|
{%- endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
master_running:
|
||||||
|
module_and_function: service.status
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.master_service }}
|
||||||
|
assertion: assertTrue
|
||||||
|
|
||||||
|
master_enabled:
|
||||||
|
module_and_function: service.enabled
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.master_service }}
|
||||||
|
assertion: assertTrue
|
||||||
|
|
||||||
|
master_conf_deployed:
|
||||||
|
module_and_function: file.search
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.config_path }}/master.d/f_defaults.conf
|
||||||
|
- This file managed by Salt, do not edit by hand
|
||||||
|
assertion: assertTrue
|
||||||
|
|
||||||
|
{% if salt_settings.master_remove_config %}
|
||||||
|
default-master-conf-removed:
|
||||||
|
module_and_function: file.file_exists
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.config_path }}/master
|
||||||
|
assertion: assertFalse
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
old-master-conf-removed:
|
||||||
|
module_and_function: file.file_exists
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.config_path }}/master.d/_defaults.conf
|
||||||
|
assertion: assertFalse
|
55
salt/saltcheck-tests/minion.tst
Normal file
55
salt/saltcheck-tests/minion.tst
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
|
{% if salt_settings.install_packages %}
|
||||||
|
minion_installed:
|
||||||
|
module_and_function: pkg.version
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.salt_minion }}
|
||||||
|
{%- if salt_settings.version is defined %}
|
||||||
|
assertion: assertEqual
|
||||||
|
expected-return: {{ salt_settings.version }}
|
||||||
|
{% else %}
|
||||||
|
assertion: assertNotEmpty
|
||||||
|
{%- endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
minion_running:
|
||||||
|
module_and_function: service.status
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.minion_service }}
|
||||||
|
assertion: assertTrue
|
||||||
|
|
||||||
|
minion_enabled:
|
||||||
|
module_and_function: service.enabled
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.minion_service }}
|
||||||
|
assertion: assertTrue
|
||||||
|
|
||||||
|
minion_conf_deployed:
|
||||||
|
module_and_function: file.search
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.config_path }}/master.d/f_defaults.conf
|
||||||
|
- This file managed by Salt, do not edit by hand!!
|
||||||
|
assertion: assertTrue
|
||||||
|
|
||||||
|
{% if salt_settings.minion_remove_config %}
|
||||||
|
default-minion-conf-removed:
|
||||||
|
module_and_function: file.file_exists
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.config_path }}/minion
|
||||||
|
assertion: assertFalse
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
old-minion-conf-removed:
|
||||||
|
module_and_function: file.file_exists
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.config_path }}/minion
|
||||||
|
assertion: assertFalse
|
||||||
|
|
||||||
|
{% if 'inotify' in salt_settings.get('minion', {}).get('beacons', {}) and salt_settings.get('pyinotify', False) %}
|
||||||
|
inotify_installed:
|
||||||
|
module_and_function: pkg.version
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.pyinotify }}
|
||||||
|
assertion: assertNotEmpty
|
||||||
|
{% endif %}
|
21
salt/saltcheck-tests/ssh.tst
Normal file
21
salt/saltcheck-tests/ssh.tst
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
|
{% if salt_settings.install_packages %}
|
||||||
|
master_installed:
|
||||||
|
module_and_function: pkg.version
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.salt_ssh }}
|
||||||
|
{%- if salt_settings.version is defined %}
|
||||||
|
assertion: assertEqual
|
||||||
|
expected-return: {{ salt_settings.version }}
|
||||||
|
{% else %}
|
||||||
|
assertion: assertNotEmpty
|
||||||
|
{%- endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
roster_deployed:
|
||||||
|
module_and_function: file.search
|
||||||
|
args:
|
||||||
|
- {{ salt_settings.config_path }}/roster
|
||||||
|
- This file is managed by Salt! Do not edit by hand!
|
||||||
|
assertion: assertTrue
|
Loading…
Reference in New Issue
Block a user