2020-08-03 09:26:37 -07:00
|
|
|
import os
|
2021-07-07 08:53:52 -07:00
|
|
|
import sys
|
|
|
|
import time
|
2020-08-03 09:26:37 -07:00
|
|
|
import json
|
|
|
|
import unittest
|
|
|
|
import jc.parsers.date
|
|
|
|
|
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
2021-07-07 08:53:52 -07:00
|
|
|
# Set the timezone on POSIX systems. Need to manually set for Windows tests
|
|
|
|
if not sys.platform.startswith('win32'):
|
|
|
|
os.environ['TZ'] = 'America/Los_Angeles'
|
|
|
|
time.tzset()
|
|
|
|
|
2020-08-03 09:26:37 -07:00
|
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
# input
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date.out'), 'r', encoding='utf-8') as f:
|
|
|
|
self.generic_date = f.read()
|
|
|
|
|
2021-03-24 15:13:10 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-before-midnight.out'), 'r', encoding='utf-8') as f:
|
|
|
|
self.generic_date_before_midnight = f.read()
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-after-midnight.out'), 'r', encoding='utf-8') as f:
|
|
|
|
self.generic_date_after_midnight = f.read()
|
|
|
|
|
2021-01-05 09:42:05 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date.out'), 'r', encoding='utf-8') as f:
|
|
|
|
self.ubuntu_20_04_date = f.read()
|
|
|
|
|
2021-03-23 14:47:44 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date2.out'), 'r', encoding='utf-8') as f:
|
|
|
|
self.ubuntu_20_04_date2 = f.read()
|
|
|
|
|
2020-08-03 09:26:37 -07:00
|
|
|
# output
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date.json'), 'r', encoding='utf-8') as f:
|
|
|
|
self.generic_date_json = json.loads(f.read())
|
|
|
|
|
2021-03-24 15:13:10 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-before-midnight.json'), 'r', encoding='utf-8') as f:
|
|
|
|
self.generic_date_before_midnight_json = json.loads(f.read())
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-after-midnight.json'), 'r', encoding='utf-8') as f:
|
|
|
|
self.generic_date_after_midnight_json = json.loads(f.read())
|
|
|
|
|
2021-01-05 09:42:05 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date.json'), 'r', encoding='utf-8') as f:
|
|
|
|
self.ubuntu_20_04_date_json = json.loads(f.read())
|
|
|
|
|
2021-03-23 14:47:44 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date2.json'), 'r', encoding='utf-8') as f:
|
|
|
|
self.ubuntu_20_04_date2_json = json.loads(f.read())
|
|
|
|
|
2020-08-03 09:26:37 -07:00
|
|
|
def test_date_nodata(self):
|
|
|
|
"""
|
|
|
|
Test 'date' with no data
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.date.parse('', quiet=True), {})
|
|
|
|
|
|
|
|
def test_date(self):
|
|
|
|
"""
|
|
|
|
Test 'date'
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.date.parse(self.generic_date, quiet=True), self.generic_date_json)
|
|
|
|
|
2021-03-24 15:13:10 -07:00
|
|
|
def test_date_before_midnight(self):
|
|
|
|
"""
|
|
|
|
Test 'date' 24-hour conversion just before midnight
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.date.parse(self.generic_date_before_midnight, quiet=True), self.generic_date_before_midnight_json)
|
|
|
|
|
|
|
|
def test_date_after_midnight(self):
|
|
|
|
"""
|
|
|
|
Test 'date' 24-hour conversion just after midnight
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.date.parse(self.generic_date_after_midnight, quiet=True), self.generic_date_after_midnight_json)
|
|
|
|
|
2021-03-23 14:47:44 -07:00
|
|
|
def test_date_am_ubuntu_20_04(self):
|
2021-01-05 09:42:05 -08:00
|
|
|
"""
|
2021-03-23 14:47:44 -07:00
|
|
|
Test 'date' on Ubuntu 20.4 with LANG=en_US.UTF-8 (uses 12-hour clock) with AM time
|
2021-01-05 09:42:05 -08:00
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.date.parse(self.ubuntu_20_04_date, quiet=True), self.ubuntu_20_04_date_json)
|
|
|
|
|
2021-03-23 14:47:44 -07:00
|
|
|
def test_date_pm_ubuntu_20_04(self):
|
|
|
|
"""
|
|
|
|
Test 'date' on Ubuntu 20.4 with LANG=en_US.UTF-8 (uses 12-hour clock) with PM time
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.date.parse(self.ubuntu_20_04_date2, quiet=True), self.ubuntu_20_04_date2_json)
|
|
|
|
|
2020-08-03 09:26:37 -07:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|