1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/tests/test_lsb_release.py
2023-10-01 18:12:22 -07:00

48 lines
1.2 KiB
Python

import os
import unittest
import json
from typing import Dict
from jc.parsers.lsb_release import parse
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
class MyTests(unittest.TestCase):
f_in: Dict = {}
f_json: Dict = {}
@classmethod
def setUpClass(cls):
fixtures = {
'lsb_release_a': (
'fixtures/generic/lsb_release-a.out',
'fixtures/generic/lsb_release-a.json')
}
for file, filepaths in fixtures.items():
with open(os.path.join(THIS_DIR, filepaths[0]), 'r', encoding='utf-8') as a, \
open(os.path.join(THIS_DIR, filepaths[1]), 'r', encoding='utf-8') as b:
cls.f_in[file] = a.read()
cls.f_json[file] = json.loads(b.read())
def test_lsb_release_nodata(self):
"""
Test 'lsb_release' with no data
"""
self.assertEqual(parse('', quiet=True), {})
def test_lsb_release_a(self):
"""
Test 'lsb_release -a'
"""
self.assertEqual(
parse(self.f_in['lsb_release_a'], quiet=True),
self.f_json['lsb_release_a']
)
if __name__ == '__main__':
unittest.main()