98 lines
3.2 KiB
Python
98 lines
3.2 KiB
Python
from tests import BaseTestCase
|
|
from md_pdf import consts
|
|
from unittest import skipIf
|
|
import os
|
|
from urllib.parse import urlparse
|
|
import datetime
|
|
from freezegun import freeze_time
|
|
|
|
|
|
class ConstsTestCase(BaseTestCase):
|
|
def setUp(self):
|
|
super().setUp()
|
|
self.this_dir = os.path.dirname(__file__)
|
|
self.project_root = os.path.normpath(os.path.join(self.this_dir, '..'))
|
|
|
|
def test_project_dir(self):
|
|
self.assertEqual(
|
|
consts.PROJECT_DIR,
|
|
os.path.normpath(os.path.join(self.this_dir, '..', 'md_pdf'))
|
|
)
|
|
self.assertIn(consts.WORKING_DIR, consts.PROJECT_DIR)
|
|
|
|
def test_working_dir(self):
|
|
self.assertEqual(consts.WORKING_DIR, self.project_root)
|
|
|
|
@skipIf('APPDATA' not in os.environ, 'not on windows')
|
|
def test_windows_asset_dir(self):
|
|
self.assertIn(os.environ['APPDATA'], consts.ASSETS_DIR)
|
|
|
|
@skipIf('HOME' not in os.environ, 'not on windows')
|
|
def test_asset_dir(self):
|
|
self.assertEqual(consts.ASSETS_DIR, os.path.expanduser('~/.mdp'))
|
|
|
|
def test_csl_dir(self):
|
|
self.assertIn(consts.ASSETS_DIR, consts.CSL_DIR)
|
|
self.assertIn('csl', consts.CSL_DIR)
|
|
|
|
def test_templates_dir(self):
|
|
self.assertIn(consts.ASSETS_DIR, consts.TEMPLATES_DIR)
|
|
self.assertIn('templates', consts.TEMPLATES_DIR)
|
|
|
|
def test_static_dir(self):
|
|
self.assertIn(consts.ASSETS_DIR, consts.STATIC_DIR)
|
|
self.assertIn('static', consts.STATIC_DIR)
|
|
|
|
def test_internal_asset_dir(self):
|
|
self.assertIn(consts.PROJECT_DIR, consts.INTERNAL_ASSETS_DIR)
|
|
self.assertIn('assets', consts.INTERNAL_ASSETS_DIR)
|
|
|
|
def test_internal_static_dir(self):
|
|
self.assertIn(consts.PROJECT_DIR, consts.INTERNAL_STATIC_DIR)
|
|
self.assertIn('static', consts.INTERNAL_STATIC_DIR)
|
|
|
|
def test_internal_templates_dir(self):
|
|
self.assertIn(consts.PROJECT_DIR, consts.INTERNAL_TEMPLATES_DIR)
|
|
self.assertIn('templates', consts.INTERNAL_TEMPLATES_DIR)
|
|
|
|
def test_config_file(self):
|
|
self.assertIn(consts.WORKING_DIR, consts.CONFIG_FILE)
|
|
self.assertIn('mdp.yml', consts.CONFIG_FILE)
|
|
|
|
def test_csl_download_link(self):
|
|
url = urlparse(consts.CSL_DOWNLOAD_LINK)
|
|
self.assertEqual(url.netloc, 'github.com')
|
|
self.assertTrue(url.path.endswith('master.zip'))
|
|
self.assertIn('citation-style-language/styles', url.path)
|
|
|
|
@freeze_time('2017-01-01')
|
|
def test_date_format(self):
|
|
now = datetime.datetime.now()
|
|
self.assertEqual(
|
|
now.strftime(consts.DATE_FORMAT),
|
|
'01 January 2017'
|
|
)
|
|
|
|
@freeze_time('2017-01-01T12:34')
|
|
def test_time_format(self):
|
|
now = datetime.datetime.now()
|
|
self.assertEqual(
|
|
now.strftime(consts.TIME_FORMAT),
|
|
'12:34'
|
|
)
|
|
|
|
@freeze_time('2017-01-01T12:34')
|
|
def test_time_format(self):
|
|
now = datetime.datetime.now()
|
|
self.assertEqual(
|
|
now.strftime(consts.DATETIME_FORMAT),
|
|
'01 January 2017 12:34'
|
|
)
|
|
|
|
def test_dirs_exist(self):
|
|
self.assertTrue(os.path.isdir(consts.ASSETS_DIR))
|
|
self.assertTrue(os.path.isdir(consts.TEMPLATES_DIR))
|
|
self.assertTrue(os.path.isdir(consts.STATIC_DIR))
|
|
|
|
|
|
|