mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
import os
|
|
import unittest
|
|
import json
|
|
import jc.parsers.update_alt_gs
|
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
# input
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/update-alternatives-get-selections.out'), 'r', encoding='utf-8') as f:
|
|
update_alternatives_get_selections = f.read()
|
|
|
|
# output
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/update-alternatives-get-selections.json'), 'r', encoding='utf-8') as f:
|
|
update_alternatives_get_selections_json = json.loads(f.read())
|
|
|
|
|
|
def test_update_alt_gs_nodata(self):
|
|
"""
|
|
Test 'update-alternatives --get-selections' with no data
|
|
"""
|
|
self.assertEqual(jc.parsers.update_alt_gs.parse('', quiet=True), [])
|
|
|
|
def test_update_alt_gs(self):
|
|
"""
|
|
Test 'update-alternatives --get-selections'
|
|
"""
|
|
self.assertEqual(jc.parsers.update_alt_gs.parse(self.update_alternatives_get_selections, quiet=True), self.update_alternatives_get_selections_json)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|