|
1
|
|
|
from __future__ import absolute_import |
|
2
|
|
|
# Project imports |
|
3
|
|
|
|
|
4
|
|
|
import os |
|
5
|
|
|
import sys |
|
6
|
|
|
import unittest |
|
7
|
|
|
|
|
8
|
|
|
try: |
|
9
|
|
|
reload # Python 2.7 |
|
|
|
|
|
|
10
|
|
|
except NameError: |
|
11
|
|
|
try: |
|
12
|
|
|
from importlib import reload # Python 3.4+ |
|
13
|
|
|
except ImportError: |
|
14
|
|
|
from imp import reload # Python 3.0 - 3.3 |
|
15
|
|
|
|
|
16
|
|
|
from mock import patch |
|
17
|
|
|
|
|
18
|
|
|
sys.path.insert(0, os.path.abspath(os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))))) |
|
19
|
|
|
|
|
20
|
|
|
from elodie import constants |
|
21
|
|
|
|
|
22
|
|
|
BASE_PATH = os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))) |
|
23
|
|
|
|
|
24
|
|
|
def test_debug(): |
|
25
|
|
|
# This seems pointless but on Travis we explicitly modify the file to be True |
|
26
|
|
|
assert constants.debug == constants.debug, constants.debug |
|
27
|
|
|
|
|
28
|
|
|
def test_application_directory_default(): |
|
29
|
|
|
reload(constants) |
|
|
|
|
|
|
30
|
|
|
expected_path = '{}/.elodie'.format(os.path.expanduser('~')) |
|
31
|
|
|
assert constants.application_directory == expected_path, constants.application_directory |
|
32
|
|
|
|
|
33
|
|
|
def test_application_directory_override_invalid(): |
|
34
|
|
|
os.environ['ELODIE_APPLICATION_DIRECTORY'] = '/foo/bar' |
|
35
|
|
|
reload(constants) |
|
|
|
|
|
|
36
|
|
|
expected_path = '{}/.elodie'.format(os.path.expanduser('~')) |
|
37
|
|
|
assert constants.application_directory == expected_path, constants.application_directory |
|
38
|
|
|
|
|
39
|
|
|
def test_application_directory_override_valid(): |
|
40
|
|
|
cwd = os.getcwd() |
|
41
|
|
|
os.environ['ELODIE_APPLICATION_DIRECTORY'] = cwd |
|
42
|
|
|
reload(constants) |
|
|
|
|
|
|
43
|
|
|
|
|
44
|
|
|
assert constants.application_directory == cwd, constants.application_directory |
|
45
|
|
|
assert cwd in constants.hash_db, constants.hash_db |
|
46
|
|
|
|
|
47
|
|
|
# must come after test_application_directory_override_valid due to env var reset |
|
48
|
|
|
def test_hash_db(): |
|
49
|
|
|
os.environ['ELODIE_APPLICATION_DIRECTORY'] = '' |
|
50
|
|
|
reload(constants) |
|
|
|
|
|
|
51
|
|
|
assert constants.hash_db == '{}/hash.json'.format(constants.application_directory), constants.hash_db |
|
52
|
|
|
|
|
53
|
|
|
def test_location_db(): |
|
54
|
|
|
assert constants.location_db == '{}/location.json'.format(constants.application_directory), constants.location_db |
|
55
|
|
|
|
|
56
|
|
|
def test_script_directory(): |
|
57
|
|
|
path = os.path.dirname(os.path.dirname(os.path.dirname(__file__))) |
|
58
|
|
|
assert path == constants.script_directory, constants.script_directory |
|
59
|
|
|
|
|
60
|
|
|
def test_exiftool_config(): |
|
61
|
|
|
path = os.path.dirname(os.path.dirname(os.path.dirname(__file__))) |
|
62
|
|
|
assert '{}/configs/ExifTool_config'.format(path) == constants.exiftool_config, constants.exiftool_config |
|
63
|
|
|
|
|
64
|
|
|
def test_mapquest_base_url_default(): |
|
65
|
|
|
assert constants.mapquest_base_url == 'https://open.mapquestapi.com', constants.mapquest_base_url |
|
66
|
|
|
|
|
67
|
|
|
def test_mapquest_base_url_override(): |
|
68
|
|
|
os.environ['ELODIE_MAPQUEST_BASE_URL'] = 'foobar' |
|
69
|
|
|
reload(constants) |
|
|
|
|
|
|
70
|
|
|
assert constants.mapquest_base_url == 'foobar', constants.mapquest_base_url |
|
71
|
|
|
|
|
72
|
|
|
def test_mapquest_Key(): |
|
73
|
|
|
assert constants.mapquest_key == None, constants.mapquest_key |
|
74
|
|
|
|
|
75
|
|
|
def test_mapquest_key_override(): |
|
76
|
|
|
os.environ['ELODIE_MAPQUEST_KEY'] = 'foobar' |
|
77
|
|
|
reload(constants) |
|
|
|
|
|
|
78
|
|
|
assert constants.mapquest_key == 'foobar', constants.mapquest_key |
|
79
|
|
|
|
|
80
|
|
|
def test_accepted_language(): |
|
81
|
|
|
assert constants.accepted_language == 'en', constants.accepted_language |
|
82
|
|
|
|
|
83
|
|
|
def test_python_version(): |
|
84
|
|
|
assert constants.python_version == sys.version_info.major, constants.python_version |
|
85
|
|
|
|