4c4406b2df
* Flatten the directory hierarchy of modules * Update ignore.txt, flatten units * Update imports * Completely flatten the modules directory * Update sanity ignore * Fix some sanity test ignores * Fix relative import * Fix docs builds without category * ci_complete * Clean up docs. ci_complete * Adjust needs/file alias * ci_complete * fix hardcoded ping module paths Co-authored-by: Matt Davis <mrd@redhat.com>
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
|
|
from units.compat import unittest
|
|
from ansible.modules.systemd import parse_systemctl_show
|
|
|
|
|
|
class ParseSystemctlShowTestCase(unittest.TestCase):
|
|
|
|
def test_simple(self):
|
|
lines = [
|
|
'Type=simple',
|
|
'Restart=no',
|
|
'Requires=system.slice sysinit.target',
|
|
'Description=Blah blah blah',
|
|
]
|
|
parsed = parse_systemctl_show(lines)
|
|
self.assertEqual(parsed, {
|
|
'Type': 'simple',
|
|
'Restart': 'no',
|
|
'Requires': 'system.slice sysinit.target',
|
|
'Description': 'Blah blah blah',
|
|
})
|
|
|
|
def test_multiline_exec(self):
|
|
# This was taken from a real service that specified "ExecStart=/bin/echo foo\nbar"
|
|
lines = [
|
|
'Type=simple',
|
|
'ExecStart={ path=/bin/echo ; argv[]=/bin/echo foo',
|
|
'bar ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }',
|
|
'Description=blah',
|
|
]
|
|
parsed = parse_systemctl_show(lines)
|
|
self.assertEqual(parsed, {
|
|
'Type': 'simple',
|
|
'ExecStart': '{ path=/bin/echo ; argv[]=/bin/echo foo\n'
|
|
'bar ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }',
|
|
'Description': 'blah',
|
|
})
|
|
|
|
def test_single_line_with_brace(self):
|
|
lines = [
|
|
'Type=simple',
|
|
'Description={ this is confusing',
|
|
'Restart=no',
|
|
]
|
|
parsed = parse_systemctl_show(lines)
|
|
self.assertEqual(parsed, {
|
|
'Type': 'simple',
|
|
'Description': '{ this is confusing',
|
|
'Restart': 'no',
|
|
})
|