mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
443 lines
20 KiB
Python
443 lines
20 KiB
Python
import os
|
|
import json
|
|
import unittest
|
|
import jc.parsers.ls
|
|
|
|
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/centos-7.7/ls.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_11_6_ls = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-al.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_al = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-al.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_al = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-al.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_11_6_ls_al = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-al.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_al = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alh.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_alh = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alh.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_alh = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-alh.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_11_6_ls_alh = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alh.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_alh = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_R = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_R = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_R = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alR.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_alR = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alR.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_alR = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alR.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_alR = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-glob.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_glob = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-glob.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_glob = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-glob.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_glob = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R-newlines.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_R_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R-newlines.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_R_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R-newlines.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_R_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-l-newlines.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_l_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-newlines.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_l_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-l-newlines.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_l_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-lR-newlines.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_lR_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-lR-newlines.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_lR_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-newlines.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_lR_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-newlines.out'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-newlines.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-newlines.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_newlines = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder.out'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_lR_empty_folder = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso.out'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_l_iso = f.read()
|
|
|
|
# output
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_11_6_ls_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-al.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_al_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-al.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_al_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-al.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_11_6_ls_al_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-al.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_al_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alh.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_alh_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alh.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_alh_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-alh.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_11_6_ls_alh_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alh.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_alh_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_R_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_R_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_R_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alR.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_alR_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alR.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_alR_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alR.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_alR_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-glob.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_glob_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-glob.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_glob_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-glob.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_glob_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R-newlines.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_R_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R-newlines.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_R_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R-newlines.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_R_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-l-newlines.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_l_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-newlines.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_l_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-l-newlines.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_l_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-lR-newlines.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_lR_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-lR-newlines.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_lR_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-newlines.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_lR_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-newlines.json'), 'r', encoding='utf-8') as f:
|
|
centos_7_7_ls_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-newlines.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-newlines.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_newlines_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder.json'), 'r', encoding='utf-8') as f:
|
|
osx_10_14_6_ls_lR_empty_folder_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso.json'), 'r', encoding='utf-8') as f:
|
|
ubuntu_18_4_ls_l_iso_json = json.loads(f.read())
|
|
|
|
|
|
def test_ls_empty_dir(self):
|
|
"""
|
|
Test plain 'ls' on an empty directory
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse('', quiet=True), [])
|
|
|
|
def test_ls_centos_7_7(self):
|
|
"""
|
|
Test plain 'ls /' on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls, quiet=True), self.centos_7_7_ls_json)
|
|
|
|
def test_ls_ubuntu_18_4(self):
|
|
"""
|
|
Test plain 'ls /' on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls, quiet=True), self.ubuntu_18_4_ls_json)
|
|
|
|
def test_ls_osx_10_11_6(self):
|
|
"""
|
|
Test plain 'ls /' on OSX 10.11.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_11_6_ls, quiet=True), self.osx_10_11_6_ls_json)
|
|
|
|
def test_ls_osx_10_14_6(self):
|
|
"""
|
|
Test plain 'ls /' on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls, quiet=True), self.osx_10_14_6_ls_json)
|
|
|
|
def test_ls_al_centos_7_7(self):
|
|
"""
|
|
Test 'ls -al /' on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_al, quiet=True), self.centos_7_7_ls_al_json)
|
|
|
|
def test_ls_al_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -al /' on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_al, quiet=True), self.ubuntu_18_4_ls_al_json)
|
|
|
|
def test_ls_al_osx_10_11_6(self):
|
|
"""
|
|
Test 'ls -al /' on OSX 10.11.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_11_6_ls_al, quiet=True), self.osx_10_11_6_ls_al_json)
|
|
|
|
def test_ls_al_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -al /' on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_al, quiet=True), self.osx_10_14_6_ls_al_json)
|
|
|
|
def test_ls_alh_centos_7_7(self):
|
|
"""
|
|
Test 'ls -alh /' on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_alh, quiet=True), self.centos_7_7_ls_alh_json)
|
|
|
|
def test_ls_alh_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -alh /' on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_alh, quiet=True), self.ubuntu_18_4_ls_alh_json)
|
|
|
|
def test_ls_alh_osx_10_11_6(self):
|
|
"""
|
|
Test 'ls -alh /' on OSX 10.11.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_11_6_ls_alh, quiet=True), self.osx_10_11_6_ls_alh_json)
|
|
|
|
def test_ls_alh_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -alh /' on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_alh, quiet=True), self.osx_10_14_6_ls_alh_json)
|
|
|
|
def test_ls_R_centos_7_7(self):
|
|
"""
|
|
Test 'ls -R /usr' on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_R, quiet=True), self.centos_7_7_ls_R_json)
|
|
|
|
def test_ls_R_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -R /usr' on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_R, quiet=True), self.ubuntu_18_4_ls_R_json)
|
|
|
|
def test_ls_R_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -R /usr' on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_R, quiet=True), self.osx_10_14_6_ls_R_json)
|
|
|
|
def test_ls_alR_centos_7_7(self):
|
|
"""
|
|
Test 'ls -alR /usr' on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_alR, quiet=True), self.centos_7_7_ls_alR_json)
|
|
|
|
def test_ls_alR_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -alR /usr' on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_alR, quiet=True), self.ubuntu_18_4_ls_alR_json)
|
|
|
|
def test_ls_alR_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -alR /usr' on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_alR, quiet=True), self.osx_10_14_6_ls_alR_json)
|
|
|
|
def test_ls_glob_centos_7_7(self):
|
|
"""
|
|
Test 'ls /usr/*' on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_glob, quiet=True), self.centos_7_7_ls_glob_json)
|
|
|
|
def test_ls_glob_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls /usr/*' on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_glob, quiet=True), self.ubuntu_18_4_ls_glob_json)
|
|
|
|
def test_ls_glob_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls /usr/*' on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_glob, quiet=True), self.osx_10_14_6_ls_glob_json)
|
|
|
|
def test_ls_R_newlines_centos_7_7(self):
|
|
"""
|
|
Test 'ls -R' for filenames with newline characters on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_R_newlines, quiet=True), self.centos_7_7_ls_R_newlines_json)
|
|
|
|
def test_ls_R_newlines_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -R' for filenames with newline characters on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_R_newlines, quiet=True), self.ubuntu_18_4_ls_R_newlines_json)
|
|
|
|
def test_ls_R_newlines_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -R' for filenames with newline characters on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_R_newlines, quiet=True), self.osx_10_14_6_ls_R_newlines_json)
|
|
|
|
def test_ls_l_newlines_centos_7_7(self):
|
|
"""
|
|
Test 'ls -l' for filenames with newline characters on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_l_newlines, quiet=True), self.centos_7_7_ls_l_newlines_json)
|
|
|
|
def test_ls_l_newlines_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -l' for filenames with newline characters on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_l_newlines, quiet=True), self.ubuntu_18_4_ls_l_newlines_json)
|
|
|
|
def test_ls_l_newlines_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -l' for filenames with newline characters on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_l_newlines, quiet=True), self.osx_10_14_6_ls_l_newlines_json)
|
|
|
|
def test_ls_lR_newlines_centos_7_7(self):
|
|
"""
|
|
Test 'ls -lR' for filenames with newline characters on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_lR_newlines, quiet=True), self.centos_7_7_ls_lR_newlines_json)
|
|
|
|
def test_ls_lR_newlines_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -lR' for filenames with newline characters on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_lR_newlines, quiet=True), self.ubuntu_18_4_ls_lR_newlines_json)
|
|
|
|
def test_ls_lR_newlines_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -lR' for filenames with newline characters on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_lR_newlines, quiet=True), self.osx_10_14_6_ls_lR_newlines_json)
|
|
|
|
def test_ls_newlines_centos_7_7(self):
|
|
"""
|
|
Test 'ls' for filenames with newline characters on Centos 7.7
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_newlines, quiet=True), self.centos_7_7_ls_newlines_json)
|
|
|
|
def test_ls_newlines_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls' for filenames with newline characters on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_newlines, quiet=True), self.ubuntu_18_4_ls_newlines_json)
|
|
|
|
def test_ls_newlines_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls' for filenames with newline characters on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_newlines, quiet=True), self.osx_10_14_6_ls_newlines_json)
|
|
|
|
def test_ls_lR_empty_folder_osx_10_14_6(self):
|
|
"""
|
|
Test 'ls -lR' for empty directories on OSX 10.14.6
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_lR_empty_folder, quiet=True), self.osx_10_14_6_ls_lR_empty_folder_json)
|
|
|
|
def test_ls_l_iso_ubuntu_18_4(self):
|
|
"""
|
|
Test 'ls -l --time-style=full-iso' for files with convertible dates on Ubuntu 18.4
|
|
"""
|
|
self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_l_iso, quiet=True), self.ubuntu_18_4_ls_l_iso_json)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|