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
|
"""
Copyright (c) 2015 Tim Waugh <tim@cyberelk.net>
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""
from journal_brief.format import get_formatter
import journal_brief.format.systemd # registers class; # noqa: F401
from locale import setlocale, LC_ALL
class TestSystemdEntryFormatter(object):
def test_no_failed_units(self):
formatter = get_formatter('systemd')
assert formatter.flush() == ''
def test_systemd(self):
setlocale(LC_ALL, 'en_US.UTF-8') # check locale-aware sorting
formatter = get_formatter('systemd')
base = formatter.FILTER_INCLUSIONS[0].copy()
for unit in ['unit1', 'unit2', 'unit1', 'Unit3']:
entry = base.copy()
entry.update({
'MESSAGE': 'Unit %s.service entered failed state.' % unit,
'UNIT': '%s.service' % unit,
})
assert formatter.format(entry) == ''
assert formatter.flush().splitlines() == [
'',
'Failed systemd units:',
'',
' 2 x unit1.service',
' 1 x unit2.service',
' 1 x Unit3.service',
]
|