-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
saltcheck.py
1373 lines (1184 loc) · 46.1 KB
/
saltcheck.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
A module for testing the logic of states and highstates on salt minions
:codeauthor: William Cannon <william.cannon@gmail.com>
:maturity: new
Saltcheck provides unittest like functionality requiring only the knowledge of
salt module execution and yaml. Saltcheck uses salt modules to return data, then
runs an assertion against that return. This allows for testing with all the
features included in salt modules.
In order to run state and highstate saltcheck tests, a sub-folder in the state directory
must be created and named ``saltcheck-tests``. Tests for a state should be created in files
ending in ``*.tst`` and placed in the ``saltcheck-tests`` folder. ``tst`` files are run
through the salt rendering system, enabling tests to be written in yaml (or renderer of choice),
and include jinja, as well as the usual grain and pillar information. Like states, multiple tests can
be specified in a ``tst`` file. Multiple ``tst`` files can be created in the ``saltcheck-tests``
folder, and should be named the same as the associated state. The ``id`` of a test works in the
same manner as in salt state files and should be unique and descriptive.
.. versionadded:: 3000
The ``saltcheck-tests`` folder can be customized using the ``saltcheck_test_location`` minion
configuration setting. This setting is a relative path from the formula's ``salt://`` path
to the test files.
Usage
=====
Example Default file system layout:
.. code-block:: text
/srv/salt/apache/
init.sls
config.sls
saltcheck-tests/
init.tst
config.tst
deployment_validation.tst
Alternative example file system layout with custom saltcheck_test_location:
Minion configuration:
---------------------
.. code-block:: yaml
saltcheck_test_location: tests/integration/saltcheck
Filesystem layout:
------------------
.. code-block:: text
/srv/salt/apache/
init.sls
config.sls
tests/integration/saltcheck/
init.tst
config.tst
deployment_validation.tst
Tests can be run for each state by name, for all ``apache/saltcheck/*.tst``
files, or for all states assigned to the minion in top.sls. Tests may also be
created with no associated state. These tests will be run through the use of
``saltcheck.run_state_tests``, but will not be automatically run by
``saltcheck.run_highstate_tests``.
.. code-block:: bash
salt '*' saltcheck.run_state_tests apache,apache.config
salt '*' saltcheck.run_state_tests apache check_all=True
salt '*' saltcheck.run_highstate_tests
salt '*' saltcheck.run_state_tests apache.deployment_validation
Saltcheck Keywords
==================
**module_and_function:**
(str) This is the salt module which will be run locally,
the same as ``salt-call --local <module>``. The ``saltcheck.state_apply`` module name is
special as it bypasses the local option in order to resolve state names when run in
a master/minion environment.
**args:**
(list) Optional arguments passed to the salt module
**kwargs:**
(dict) Optional keyword arguments to be passed to the salt module
**assertion:**
(str) One of the supported assertions and required except for ``saltcheck.state_apply``
Tests which fail the assertion and expected_return, cause saltcheck to exit which a non-zero exit code.
**expected_return:**
(str) Required except by ``assertEmpty``, ``assertNotEmpty``, ``assertTrue``,
``assertFalse``. The return of module_and_function is compared to this value in the assertion.
**assertion_section:**
(str) Optional keyword used to parse the module_and_function return. If a salt module
returns a dictionary as a result, the ``assertion_section`` value is used to lookup a specific value
in that return for the assertion comparison.
**assertion_section_delimiter:**
(str) Optional delimiter to use when splitting a nested structure.
Defaults to ':'
**print_result:**
(bool) Optional keyword to show results in the ``assertEqual``, ``assertNotEqual``,
``assertIn``, and ``assertNotIn`` output. Defaults to True.
**output_details:**
(bool) Optional keyword to display ``module_and_function``, ``args``, ``assertion_section``,
and assertion results text in the output. If print_result is False, assertion results will be hidden.
This is a per test setting, but can be set globally for all tests by adding ``saltcheck_output_details: True``
in the minion configuration file.
Defaults to False
**pillar_data:**
(dict) Optional keyword for passing in pillar data. Intended for use in potential test
setup or teardown with the ``saltcheck.state_apply`` function.
**skip:**
(bool) Optional keyword to skip running the individual test
.. versionadded:: 3000
Multiple assertions can be run against the output of a single ``module_and_function`` call. The ``assertion``,
``expected_return``, ``assertion_section``, and ``assertion_section_delimiter`` keys can be placed in a list under an
``assertions`` key. See the multiple assertions example below.
Sample Cases/Examples
=====================
Basic Example
-------------
.. code-block:: yaml
echo_test_hello:
module_and_function: test.echo
args:
- "hello"
kwargs:
assertion: assertEqual
expected_return: 'hello'
Example with jinja
------------------
.. code-block:: jinja
{% for package in ["apache2", "openssh"] %}
{# or another example #}
{# for package in salt['pillar.get']("packages") #}
test_{{ package }}_latest:
module_and_function: pkg.upgrade_available
args:
- {{ package }}
assertion: assertFalse
{% endfor %}
Example with setup state including pillar
-----------------------------------------
.. code-block:: yaml
setup_test_environment:
module_and_function: saltcheck.state_apply
args:
- common
pillar_data:
data: value
verify_vim:
module_and_function: pkg.version
args:
- vim
assertion: assertNotEmpty
Example with jinja
------------------
.. code-block:: jinja
{% for package in ["apache2", "openssh"] %}
{# or another example #}
{# for package in salt['pillar.get']("packages") #}
test_{{ package }}_latest:
module_and_function: pkg.upgrade_available
args:
- {{ package }}
assertion: assertFalse
{% endfor %}
Example with setup state including pillar
-----------------------------------------
.. code-block:: yaml
setup_test_environment:
module_and_function: saltcheck.state_apply
args:
- common
pillar-data:
data: value
verify_vim:
module_and_function: pkg.version
args:
- vim
assertion: assertNotEmpty
Example with skip
-----------------
.. code-block:: yaml
package_latest:
module_and_function: pkg.upgrade_available
args:
- apache2
assertion: assertFalse
skip: True
Example with assertion_section
------------------------------
.. code-block:: yaml
validate_shell:
module_and_function: user.info
args:
- root
assertion: assertEqual
expected_return: /bin/bash
assertion_section: shell
Example with a nested assertion_section
---------------------------------------
.. code-block:: yaml
validate_smb_signing:
module_and_function: lgpo.get
args:
- 'Machine'
kwargs:
return_full_policy_names: True
assertion: assertEqual
expected_return: Enabled
assertion_section: 'Computer Configuration|Microsoft network client: Digitally sign communications (always)'
assertion_section_delimiter: '|'
Example suppressing print results
---------------------------------
.. code-block:: yaml
validate_env_nameNode:
module_and_function: hadoop.dfs
args:
- text
- /oozie/common/env.properties
expected_return: nameNode = hdfs://nameservice2
assertion: assertNotIn
print_result: False
Example with multiple assertions and output_details
---------------------------------------------------
.. code-block:: yaml
multiple_validations:
module_and_function: network.netstat
assertions:
- assertion: assertEqual
assertion_section: "0:program"
expected_return: "systemd-resolve"
- assertion: assertEqual
assertion_section: "0:proto"
expected_return: "udp"
output_details: True
Supported assertions
====================
* assertEqual
* assertNotEqual
* assertTrue
* assertFalse
* assertIn
* assertNotIn
* assertGreater
* assertGreaterEqual
* assertLess
* assertLessEqual
* assertEmpty
* assertNotEmpty
.. warning::
The saltcheck.state_apply function is an alias for
:py:func:`state.apply <salt.modules.state.apply>`. If using the
:ref:`ACL system <acl-eauth>` ``saltcheck.*`` might provide more capability
than intended if only ``saltcheck.run_state_tests`` and
``saltcheck.run_highstate_tests`` are needed.
"""
import copy
import logging
import multiprocessing
import os
import time
import salt.client
import salt.exceptions
import salt.utils.data
import salt.utils.files
import salt.utils.functools
import salt.utils.path
import salt.utils.platform
import salt.utils.yaml
from salt.defaults import DEFAULT_TARGET_DELIM
from salt.utils.decorators import memoize
from salt.utils.json import dumps, loads
from salt.utils.odict import OrderedDict
log = logging.getLogger(__name__)
global_scheck = None
__virtualname__ = "saltcheck"
def __virtual__():
"""
Set the virtual pkg module if not running as a proxy
"""
if not salt.utils.platform.is_proxy():
return __virtualname__
return (
False,
"The saltcheck execution module failed to load: only available on minions.",
)
def run_test(**kwargs):
"""
Execute one saltcheck test and return result
:param keyword arg test:
CLI Example:
.. code-block:: bash
salt '*' saltcheck.run_test
test='{"module_and_function": "test.echo",
"assertion": "assertEqual",
"expected_return": "This works!",
"args":["This works!"] }'
"""
# salt converts the string to a dictionary auto-magically
scheck = SaltCheck()
test = kwargs.get("test", None)
if test and isinstance(test, dict):
return scheck.run_test(test)
else:
return "Test argument must be a dictionary"
def state_apply(state_name, **kwargs):
"""
Runs :py:func:`state.apply <salt.modules.state.apply>` with given options to set up test data.
Intended to be used for optional test setup or teardown
Reference the :py:func:`state.apply <salt.modules.state.apply>` module documentation for arguments and usage options
CLI Example:
.. code-block:: bash
salt '*' saltcheck.state_apply postfix
"""
# A new salt client is instantiated with the default configuration because the main module's
# client is hardcoded to local
# minion is running with a master, a potentially non-local client is needed to lookup states
conf_file = copy.deepcopy(__opts__["conf_file"])
local_opts = salt.config.minion_config(conf_file)
if "running_data/var/run/salt-minion.pid" in __opts__.get("pidfile", False):
# Force salt-ssh minions to use local
local_opts["file_client"] = "local"
log.debug("Detected salt-ssh, running as local")
caller = salt.client.Caller(mopts=local_opts)
if kwargs:
return caller.cmd("state.apply", state_name, **kwargs)
else:
return caller.cmd("state.apply", state_name)
def report_highstate_tests(saltenv=None):
"""
Report on tests for states assigned to the minion through highstate.
Quits with the exit code for the number of missing tests.
CLI Example:
.. code-block:: bash
salt '*' saltcheck.report_highstate_tests
.. versionadded:: 3000
"""
if not saltenv:
if "saltenv" in __opts__ and __opts__["saltenv"]:
saltenv = __opts__["saltenv"]
else:
saltenv = "base"
sls_list = []
sls_list = _get_top_states(saltenv)
stl = StateTestLoader(saltenv)
missing_tests = 0
states_missing_tests = []
for state_name in sls_list:
stl.add_test_files_for_sls(state_name, False)
if state_name not in stl.found_states:
missing_tests = missing_tests + 1
states_missing_tests.append(state_name)
__context__["retcode"] = missing_tests
return {
"TEST REPORT RESULTS": {
"Missing Tests": missing_tests,
"States missing tests": states_missing_tests,
"States with tests": stl.found_states,
}
}
def run_state_tests(state, saltenv=None, check_all=False, only_fails=False):
"""
Execute tests for a salt state and return results
Nested states will also be tested
:param str state: state name for which to run associated .tst test files
:param str saltenv: optional saltenv. Defaults to base
:param bool check_all: boolean to run all tests in state/saltcheck-tests directory
:param bool only_fails: boolean to only print failure results
CLI Example:
.. code-block:: bash
salt '*' saltcheck.run_state_tests postfix,common
Tests will be run in parallel by adding "saltcheck_parallel: True" in minion config.
When enabled, saltcheck will use up to the number of cores detected. This can be limited
by setting the "saltcheck_processes" value to an integer to set the maximum number
of parallel processes.
"""
if not saltenv:
if "saltenv" in __opts__ and __opts__["saltenv"]:
saltenv = __opts__["saltenv"]
else:
saltenv = "base"
# Use global scheck variable for reuse in each multiprocess
global global_scheck
global_scheck = SaltCheck(saltenv)
parallel = __salt__["config.get"]("saltcheck_parallel")
num_proc = __salt__["config.get"]("saltcheck_processes")
stl = StateTestLoader(saltenv)
results = OrderedDict()
sls_list = salt.utils.args.split_input(state)
for state_name in sls_list:
stl.add_test_files_for_sls(state_name, check_all)
stl.load_test_suite()
results_dict = OrderedDict()
# Check for situations to disable parallization
if parallel:
if type(num_proc) == float:
num_proc = int(num_proc)
if multiprocessing.cpu_count() < 2:
parallel = False
log.debug("Only 1 CPU. Disabling parallization.")
elif num_proc == 1:
# Don't bother with multiprocessing overhead
parallel = False
log.debug("Configuration limited to 1 CPU. Disabling parallization.")
else:
for items in stl.test_dict.values():
if "state.apply" in items.get("module_and_function", []):
# Multiprocessing doesn't ensure ordering, which state.apply
# might require
parallel = False
log.warning(
"Tests include state.apply. Disabling parallization."
)
if parallel:
if num_proc:
pool_size = num_proc
else:
pool_size = min(len(stl.test_dict), multiprocessing.cpu_count())
log.debug("Running tests in parallel with %s processes", pool_size)
presults = multiprocessing.Pool(pool_size).map(
func=parallel_scheck, iterable=stl.test_dict.items()
)
# Remove list and form expected data structure
for item in presults:
for key, value in item.items():
results_dict[key] = value
else:
for key, value in stl.test_dict.items():
result = global_scheck.run_test(value)
results_dict[key] = result
# If passed a duplicate state, don't overwrite with empty res
if not results.get(state_name):
results[state_name] = results_dict
return _generate_out_list(results, only_fails=only_fails)
def parallel_scheck(data):
"""triggers salt-call in parallel"""
key = data[0]
value = data[1]
results = {}
results[key] = global_scheck.run_test(value)
return results
run_state_tests_ssh = salt.utils.functools.alias_function(
run_state_tests, "run_state_tests_ssh"
)
def run_highstate_tests(saltenv=None, only_fails=False):
"""
Execute all tests for states assigned to the minion through highstate and return results
:param str saltenv: optional saltenv. Defaults to base
:param bool only_fails: boolean to only print failure results
CLI Example:
.. code-block:: bash
salt '*' saltcheck.run_highstate_tests
"""
if not saltenv:
if "saltenv" in __opts__ and __opts__["saltenv"]:
saltenv = __opts__["saltenv"]
else:
saltenv = "base"
sls_list = []
sls_list = _get_top_states(saltenv)
all_states = ",".join(sls_list)
return run_state_tests(all_states, saltenv=saltenv, only_fails=only_fails)
def _eval_failure_only_print(state_name, results, only_fails):
"""
For given results, only return failures if desired
"""
if only_fails:
failed_tests = {}
for test in results[state_name]:
if results[state_name][test]["status"].startswith("Fail"):
if failed_tests.get(state_name):
failed_tests[state_name].update({test: results[state_name][test]})
else:
failed_tests[state_name] = {test: results[state_name][test]}
return failed_tests
else:
# Show all test results
return {state_name: results[state_name]}
def _generate_out_list(results, only_fails=False):
"""
generate test results output list
"""
passed = 0
failed = 0
skipped = 0
missing_tests = 0
total_time = 0.0
out_list = []
for state in results:
if not results[state].items():
missing_tests = missing_tests + 1
else:
for _, val in results[state].items():
if val["status"].startswith("Pass"):
passed = passed + 1
if val["status"].startswith("Fail"):
failed = failed + 1
if val["status"].startswith("Skip"):
skipped = skipped + 1
total_time = total_time + float(val["duration"])
out_list.append(_eval_failure_only_print(state, results, only_fails))
out_list = sorted(out_list, key=lambda x: sorted(x.keys()))
out_list.append(
{
"TEST RESULTS": {
"Execution Time": round(total_time, 4),
"Passed": passed,
"Failed": failed,
"Skipped": skipped,
"Missing Tests": missing_tests,
}
}
)
# Set exist code to 1 if failed tests
# Use-cases for exist code handling of missing or skipped?
__context__["retcode"] = 1 if failed else 0
return out_list
def _render_file(file_path):
"""
call the salt utility to render a file
"""
# salt-call slsutil.renderer /srv/salt/jinjatest/saltcheck-tests/test1.tst
rendered = __salt__["slsutil.renderer"](file_path, saltenv=global_scheck.saltenv)
log.info("rendered: %s", rendered)
return rendered
@memoize
def _is_valid_module(module):
"""
Return a list of all modules available on minion
"""
modules = __salt__["sys.list_modules"]()
return bool(module in modules)
@memoize
def _is_valid_function(module_name, function):
"""
Determine if a function is valid for a module
"""
try:
functions = __salt__["sys.list_functions"](module_name)
except salt.exceptions.SaltException:
functions = ["unable to look up functions"]
return "{}.{}".format(module_name, function) in functions
def _get_top_states(saltenv="base"):
"""
Equivalent to a salt cli: salt web state.show_top
"""
top_states = []
top_states = __salt__["state.show_top"]()[saltenv]
log.debug("saltcheck for saltenv: %s found top states: %s", saltenv, top_states)
return top_states
class SaltCheck:
"""
This class validates and runs the saltchecks
"""
def __init__(self, saltenv="base"):
self.sls_list_state = []
self.modules = []
self.results_dict = {}
self.results_dict_summary = {}
self.saltenv = saltenv
self.assertions_list = """assertEqual assertNotEqual
assertTrue assertFalse
assertIn assertNotIn
assertGreater
assertGreaterEqual
assertLess assertLessEqual
assertEmpty assertNotEmpty""".split()
def _check_assertions(self, dict):
"""Validate assertion keys"""
is_valid = True
assertion = dict.get("assertion", None)
# support old expected-return and newer name normalized expected_return
exp_ret_key = any(
key in dict.keys() for key in ["expected_return", "expected-return"]
)
exp_ret_val = dict.get("expected_return", dict.get("expected-return", None))
if assertion not in self.assertions_list:
log.error("Saltcheck: %s is not in the assertions list", assertion)
is_valid = False
# Only check expected returns for assertions which require them
if assertion not in [
"assertEmpty",
"assertNotEmpty",
"assertTrue",
"assertFalse",
]:
if exp_ret_key is None:
log.error("Saltcheck: missing expected_return")
is_valid = False
if exp_ret_val is None:
log.error("Saltcheck: expected_return missing a value")
is_valid = False
return is_valid
def __is_valid_test(self, test_dict):
"""
Determine if a test contains:
- a test name
- a valid module and function
- a valid assertion, or valid grouping under an assertions key
- an expected return value - if assertion type requires it
"""
log.info("Saltcheck: validating data: %s", test_dict)
is_valid = True
skip = test_dict.get("skip", False)
m_and_f = test_dict.get("module_and_function", None)
# Running a state does not require assertions or checks
if m_and_f == "saltcheck.state_apply":
return is_valid
if test_dict.get("assertions"):
for assertion_group in test_dict.get("assertions"):
is_valid = self._check_assertions(assertion_group)
else:
is_valid = self._check_assertions(test_dict)
if m_and_f:
module, function = m_and_f.split(".")
if not _is_valid_module(module):
is_valid = False
log.error("Saltcheck: %s is not a valid module", module)
if not _is_valid_function(module, function):
is_valid = False
log.error("Saltcheck: %s is not a valid function", function)
else:
log.error("Saltcheck: missing module_and_function")
is_valid = False
return is_valid
def _call_salt_command(self, fun, args, kwargs):
"""
Generic call of salt Caller command
"""
conf_file = __opts__["conf_file"]
local_opts = salt.config.minion_config(conf_file)
# Save orginal file_client to restore after salt.client.Caller run
orig_file_client = local_opts["file_client"]
mlocal_opts = copy.deepcopy(local_opts)
mlocal_opts["file_client"] = "local"
value = False
if args and kwargs:
value = salt.client.Caller(mopts=mlocal_opts).cmd(fun, *args, **kwargs)
elif args and not kwargs:
value = salt.client.Caller(mopts=mlocal_opts).cmd(fun, *args)
elif not args and kwargs:
value = salt.client.Caller(mopts=mlocal_opts).cmd(fun, **kwargs)
else:
value = salt.client.Caller(mopts=mlocal_opts).cmd(fun)
__opts__["file_client"] = orig_file_client
return value
def _run_assertions(
self,
mod_and_func,
args,
data,
module_output,
output_details,
assert_print_result,
):
"""
Run assertion against input
"""
value = {}
assertion_section = data.get("assertion_section", None)
assertion_section_delimiter = data.get(
"assertion_section_delimiter", DEFAULT_TARGET_DELIM
)
if assertion_section:
module_output = salt.utils.data.traverse_dict_and_list(
module_output,
assertion_section,
default=False,
delimiter=assertion_section_delimiter,
)
if mod_and_func in ["saltcheck.state_apply"]:
assertion = "assertNotEmpty"
else:
assertion = data["assertion"]
expected_return = data.get("expected_return", data.get("expected-return", None))
if assertion not in [
"assertIn",
"assertNotIn",
"assertEmpty",
"assertNotEmpty",
"assertTrue",
"assertFalse",
]:
expected_return = self._cast_expected_to_returned_type(
expected_return, module_output
)
if assertion == "assertEqual":
assertion_desc = "=="
value["status"] = self.__assert_equal(
expected_return, module_output, assert_print_result
)
elif assertion == "assertNotEqual":
assertion_desc = "!="
value["status"] = self.__assert_not_equal(
expected_return, module_output, assert_print_result
)
elif assertion == "assertTrue":
assertion_desc = "True is"
value["status"] = self.__assert_true(module_output)
elif assertion == "assertFalse":
assertion_desc = "False is"
value["status"] = self.__assert_false(module_output)
elif assertion == "assertIn":
assertion_desc = "IN"
value["status"] = self.__assert_in(
expected_return, module_output, assert_print_result
)
elif assertion == "assertNotIn":
assertion_desc = "NOT IN"
value["status"] = self.__assert_not_in(
expected_return, module_output, assert_print_result
)
elif assertion == "assertGreater":
assertion_desc = ">"
value["status"] = self.__assert_greater(expected_return, module_output)
elif assertion == "assertGreaterEqual":
assertion_desc = ">="
value["status"] = self.__assert_greater_equal(
expected_return, module_output
)
elif assertion == "assertLess":
assertion_desc = "<"
value["status"] = self.__assert_less(expected_return, module_output)
elif assertion == "assertLessEqual":
assertion_desc = "<="
value["status"] = self.__assert_less_equal(expected_return, module_output)
elif assertion == "assertEmpty":
assertion_desc = "IS EMPTY"
value["status"] = self.__assert_empty(module_output)
elif assertion == "assertNotEmpty":
assertion_desc = "IS NOT EMPTY"
value["status"] = self.__assert_not_empty(module_output)
else:
value["status"] = "Fail - bad assertion"
if output_details:
if assertion_section:
assertion_section_repr_title = " {}".format("assertion_section")
assertion_section_repr_value = " {}".format(assertion_section)
else:
assertion_section_repr_title = ""
assertion_section_repr_value = ""
value[
"module.function [args]{}".format(assertion_section_repr_title)
] = "{} {}{}".format(
mod_and_func,
dumps(args),
assertion_section_repr_value,
)
value["saltcheck assertion"] = "{}{} {}".format(
("" if expected_return is None else "{} ".format(expected_return)),
assertion_desc,
("hidden" if not assert_print_result else module_output),
)
return value
def run_test(self, test_dict):
"""
Run a single saltcheck test
"""
result = {}
start = time.time()
global_output_details = __salt__["config.get"](
"saltcheck_output_details", False
)
output_details = test_dict.get("output_details", global_output_details)
if self.__is_valid_test(test_dict):
skip = test_dict.get("skip", False)
if skip:
return {"status": "Skip", "duration": 0.0}
mod_and_func = test_dict["module_and_function"]
args = test_dict.get("args", None)
kwargs = test_dict.get("kwargs", None)
pillar_data = test_dict.get(
"pillar_data", test_dict.get("pillar-data", None)
)
if pillar_data:
if not kwargs:
kwargs = {}
kwargs["pillar"] = pillar_data
else:
# make sure we clean pillar from previous test
if kwargs:
kwargs.pop("pillar", None)
assert_print_result = test_dict.get("print_result", True)
actual_return = self._call_salt_command(mod_and_func, args, kwargs)
if test_dict.get("assertions"):
for num, assert_group in enumerate(
test_dict.get("assertions"), start=1
):
result["assertion{}".format(num)] = self._run_assertions(
mod_and_func,
args,
assert_group,
actual_return,
output_details,
assert_print_result,
)
# Walk individual assert status results to set the top level status
# key as needed
for k, v in copy.deepcopy(result).items():
if k.startswith("assertion"):
for assert_k, assert_v in result[k].items():
if assert_k.startswith("status"):
if result[k][assert_k] != "Pass":
result["status"] = "Fail"
if not result.get("status"):
result["status"] = "Pass"
else:
result.update(
self._run_assertions(
mod_and_func,
args,
test_dict,
actual_return,
output_details,
assert_print_result,
)
)
else:
result["status"] = "Fail - invalid test"
end = time.time()
result["duration"] = round(end - start, 4)
return result
@staticmethod
def _cast_expected_to_returned_type(expected, returned):
"""
Determine the type of variable returned
Cast the expected to the type of variable returned
"""
new_expected = expected
if returned is not None:
ret_type = type(returned)
if expected == "False" and ret_type == bool:
expected = False
try:
new_expected = ret_type(expected)
except ValueError:
log.info("Unable to cast expected into type of returned")
log.info("returned = %s", returned)
log.info("type of returned = %s", type(returned))
log.info("expected = %s", expected)
log.info("type of expected = %s", type(expected))
return new_expected
@staticmethod
def __assert_equal(expected, returned, assert_print_result=True):
"""
Test if two objects are equal
"""
result = "Pass"
try:
if assert_print_result:
assert expected == returned, "{} is not equal to {}".format(
expected, returned
)
else:
assert expected == returned, "Result is not equal"
except AssertionError as err:
result = "Fail: " + str(err)
return result
@staticmethod
def __assert_not_equal(expected, returned, assert_print_result=True):
"""