2016-03-12 20:09:28 +01:00
|
|
|
from __future__ import absolute_import
|
2015-12-08 06:33:59 +01:00
|
|
|
# Project imports
|
2017-01-03 05:58:52 +01:00
|
|
|
import mock
|
2015-12-08 06:33:59 +01:00
|
|
|
import os
|
2015-12-09 08:40:01 +01:00
|
|
|
import re
|
2015-12-08 06:33:59 +01:00
|
|
|
import shutil
|
2016-01-10 20:00:56 +01:00
|
|
|
import sys
|
2017-01-03 05:58:52 +01:00
|
|
|
import time
|
2016-01-27 15:28:18 +01:00
|
|
|
from datetime import datetime
|
|
|
|
from datetime import timedelta
|
2017-01-03 05:58:52 +01:00
|
|
|
from tempfile import gettempdir
|
2015-12-08 06:33:59 +01:00
|
|
|
|
|
|
|
sys.path.insert(0, os.path.abspath(os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))))
|
|
|
|
|
2016-03-12 20:09:28 +01:00
|
|
|
from . import helper
|
2017-01-03 05:58:52 +01:00
|
|
|
from elodie.config import load_config
|
2015-12-11 08:02:43 +01:00
|
|
|
from elodie.filesystem import FileSystem
|
2016-12-20 06:12:36 +01:00
|
|
|
from elodie.media.text import Text
|
2015-12-09 08:40:01 +01:00
|
|
|
from elodie.media.media import Media
|
|
|
|
from elodie.media.photo import Photo
|
|
|
|
from elodie.media.video import Video
|
2016-01-27 15:28:18 +01:00
|
|
|
from nose.plugins.skip import SkipTest
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
os.environ['TZ'] = 'GMT'
|
2015-12-08 06:33:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_create_directory_success():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
2016-01-26 20:01:05 +01:00
|
|
|
folder = os.path.join(helper.temp_dir(), helper.random_string(10))
|
2015-12-08 06:33:59 +01:00
|
|
|
status = filesystem.create_directory(folder)
|
|
|
|
|
|
|
|
# Needs to be a subdirectory
|
2015-12-11 08:02:43 +01:00
|
|
|
assert helper.temp_dir() != folder
|
2015-12-08 06:33:59 +01:00
|
|
|
|
|
|
|
assert status == True
|
|
|
|
assert os.path.isdir(folder) == True
|
|
|
|
assert os.path.exists(folder) == True
|
2016-01-10 20:00:56 +01:00
|
|
|
|
2015-12-08 06:33:59 +01:00
|
|
|
# Clean up
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_directory_recursive_success():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
2016-01-26 20:01:05 +01:00
|
|
|
folder = os.path.join(helper.temp_dir(), helper.random_string(10), helper.random_string(10))
|
2015-12-08 06:33:59 +01:00
|
|
|
status = filesystem.create_directory(folder)
|
|
|
|
|
|
|
|
# Needs to be a subdirectory
|
2015-12-11 08:02:43 +01:00
|
|
|
assert helper.temp_dir() != folder
|
2015-12-08 06:33:59 +01:00
|
|
|
|
|
|
|
assert status == True
|
|
|
|
assert os.path.isdir(folder) == True
|
|
|
|
assert os.path.exists(folder) == True
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
2016-01-10 20:00:56 +01:00
|
|
|
@mock.patch('elodie.filesystem.os.makedirs')
|
|
|
|
def test_create_directory_invalid_permissions(mock_makedirs):
|
2016-01-26 20:01:05 +01:00
|
|
|
if os.name == 'nt':
|
|
|
|
raise SkipTest("It isn't implemented on Windows")
|
2016-01-10 20:00:56 +01:00
|
|
|
|
|
|
|
# Mock the case where makedirs raises an OSError because the user does
|
|
|
|
# not have permission to create the given directory.
|
|
|
|
mock_makedirs.side_effect = OSError()
|
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
2016-01-27 13:54:56 +01:00
|
|
|
status = filesystem.create_directory('/apathwhichdoesnotexist/afolderwhichdoesnotexist')
|
2015-12-08 06:33:59 +01:00
|
|
|
|
|
|
|
assert status == False
|
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
def test_delete_directory_if_empty():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
2016-01-26 20:01:05 +01:00
|
|
|
folder = os.path.join(helper.temp_dir(), helper.random_string(10))
|
2015-12-09 08:40:01 +01:00
|
|
|
os.makedirs(folder)
|
|
|
|
|
|
|
|
assert os.path.isdir(folder) == True
|
|
|
|
assert os.path.exists(folder) == True
|
|
|
|
|
|
|
|
filesystem.delete_directory_if_empty(folder)
|
|
|
|
|
|
|
|
assert os.path.isdir(folder) == False
|
|
|
|
assert os.path.exists(folder) == False
|
|
|
|
|
|
|
|
def test_delete_directory_if_empty_when_not_empty():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
2016-01-26 20:01:05 +01:00
|
|
|
folder = os.path.join(helper.temp_dir(), helper.random_string(10), helper.random_string(10))
|
2015-12-09 08:40:01 +01:00
|
|
|
os.makedirs(folder)
|
|
|
|
parent_folder = os.path.dirname(folder)
|
|
|
|
|
|
|
|
assert os.path.isdir(folder) == True
|
|
|
|
assert os.path.exists(folder) == True
|
|
|
|
assert os.path.isdir(parent_folder) == True
|
|
|
|
assert os.path.exists(parent_folder) == True
|
|
|
|
|
|
|
|
filesystem.delete_directory_if_empty(parent_folder)
|
|
|
|
|
|
|
|
assert os.path.isdir(folder) == True
|
|
|
|
assert os.path.exists(folder) == True
|
|
|
|
assert os.path.isdir(parent_folder) == True
|
|
|
|
assert os.path.exists(parent_folder) == True
|
|
|
|
|
|
|
|
shutil.rmtree(parent_folder)
|
|
|
|
|
|
|
|
def test_get_all_files_success():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
folder = helper.populate_folder(5)
|
2016-12-20 06:12:36 +01:00
|
|
|
|
|
|
|
files = set()
|
|
|
|
files.update(filesystem.get_all_files(folder))
|
2015-12-09 08:40:01 +01:00
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
length = len(files)
|
2016-12-20 06:12:36 +01:00
|
|
|
assert length == 5, files
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
def test_get_all_files_by_extension():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
folder = helper.populate_folder(5)
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2016-12-20 06:12:36 +01:00
|
|
|
files = set()
|
|
|
|
files.update(filesystem.get_all_files(folder))
|
2015-12-12 10:42:22 +01:00
|
|
|
length = len(files)
|
|
|
|
assert length == 5, length
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2016-12-20 06:12:36 +01:00
|
|
|
files = set()
|
|
|
|
files.update(filesystem.get_all_files(folder, 'jpg'))
|
2015-12-12 10:42:22 +01:00
|
|
|
length = len(files)
|
|
|
|
assert length == 3, length
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2016-12-20 06:12:36 +01:00
|
|
|
files = set()
|
|
|
|
files.update(filesystem.get_all_files(folder, 'txt'))
|
2015-12-12 10:42:22 +01:00
|
|
|
length = len(files)
|
|
|
|
assert length == 2, length
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2016-12-20 06:12:36 +01:00
|
|
|
files = set()
|
|
|
|
files.update(filesystem.get_all_files(folder, 'gif'))
|
2015-12-12 10:42:22 +01:00
|
|
|
length = len(files)
|
|
|
|
assert length == 0, length
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
2016-12-20 06:12:36 +01:00
|
|
|
def test_get_all_files_with_only_invalid_file():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
folder = helper.populate_folder(0, include_invalid=True)
|
|
|
|
|
|
|
|
files = set()
|
|
|
|
files.update(filesystem.get_all_files(folder))
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
|
|
|
length = len(files)
|
|
|
|
assert length == 0, length
|
|
|
|
|
|
|
|
def test_get_all_files_with_invalid_file():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
folder = helper.populate_folder(5, include_invalid=True)
|
|
|
|
|
|
|
|
files = set()
|
|
|
|
files.update(filesystem.get_all_files(folder))
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
|
|
|
length = len(files)
|
|
|
|
assert length == 5, length
|
|
|
|
|
|
|
|
def test_get_all_files_for_loop():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
folder = helper.populate_folder(5)
|
|
|
|
|
|
|
|
files = set()
|
|
|
|
files.update()
|
|
|
|
counter = 0
|
|
|
|
for file in filesystem.get_all_files(folder):
|
|
|
|
counter += 1
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
|
|
|
assert counter == 5, counter
|
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
def test_get_current_directory():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
2015-12-09 08:40:01 +01:00
|
|
|
assert os.getcwd() == filesystem.get_current_directory()
|
|
|
|
|
|
|
|
def test_get_file_name_plain():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('plain.jpg'))
|
2015-12-09 08:40:01 +01:00
|
|
|
file_name = filesystem.get_file_name(media)
|
|
|
|
|
2016-01-28 19:30:13 +01:00
|
|
|
assert file_name == helper.path_tz_fix('2015-12-05_00-59-26-plain.jpg'), file_name
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
def test_get_file_name_with_title():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-title.jpg'))
|
2015-12-09 08:40:01 +01:00
|
|
|
file_name = filesystem.get_file_name(media)
|
|
|
|
|
2016-01-28 19:30:13 +01:00
|
|
|
assert file_name == helper.path_tz_fix('2015-12-05_00-59-26-with-title-some-title.jpg'), file_name
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2017-03-17 07:43:47 +01:00
|
|
|
def test_get_file_name_with_original_name_exif():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-filename-in-exif.jpg'))
|
|
|
|
file_name = filesystem.get_file_name(media)
|
|
|
|
|
|
|
|
assert file_name == helper.path_tz_fix('2015-12-05_00-59-26-foobar.jpg'), file_name
|
|
|
|
|
|
|
|
def test_get_file_name_with_original_name_title_exif():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-filename-and-title-in-exif.jpg'))
|
|
|
|
file_name = filesystem.get_file_name(media)
|
|
|
|
|
|
|
|
assert file_name == helper.path_tz_fix('2015-12-05_00-59-26-foobar-foobar-title.jpg'), file_name
|
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
def test_get_folder_path_plain():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('plain.jpg'))
|
2015-12-09 08:40:01 +01:00
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
assert path == os.path.join('2015-12-Dec','Unknown Location'), path
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
def test_get_folder_path_with_title():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-title.jpg'))
|
2015-12-09 08:40:01 +01:00
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
assert path == os.path.join('2015-12-Dec','Unknown Location'), path
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
def test_get_folder_path_with_location():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-location.jpg'))
|
2015-12-09 08:40:01 +01:00
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
assert path == os.path.join('2015-12-Dec','Sunnyvale'), path
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2017-11-15 08:14:26 +01:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-original-with-camera-make-and-model' % gettempdir())
|
|
|
|
def test_get_folder_path_with_camera_make_and_model():
|
|
|
|
with open('%s/config.ini-original-with-camera-make-and-model' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
full_path=%camera_make/%camera_model
|
|
|
|
""")
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-11-01 07:22:03 +01:00
|
|
|
filesystem = FileSystem()
|
2017-11-15 08:14:26 +01:00
|
|
|
media = Photo(helper.get_file('plain.jpg'))
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-11-01 07:22:03 +01:00
|
|
|
|
2017-11-15 08:14:26 +01:00
|
|
|
assert path == os.path.join('Canon', 'Canon EOS REBEL T2i'), path
|
2017-11-01 07:22:03 +01:00
|
|
|
|
2017-11-15 08:14:26 +01:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-original-with-camera-make-and-model-fallback' % gettempdir())
|
|
|
|
def test_get_folder_path_with_camera_make_and_model_fallback():
|
|
|
|
with open('%s/config.ini-original-with-camera-make-and-model-fallback' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
full_path=%camera_make|"nomake"/%camera_model|"nomodel"
|
|
|
|
""")
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('no-exif.jpg'))
|
2017-11-01 07:22:03 +01:00
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
2017-11-15 08:14:26 +01:00
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-11-01 07:22:03 +01:00
|
|
|
|
2017-11-15 08:14:26 +01:00
|
|
|
assert path == os.path.join('nomake', 'nomodel'), path
|
2017-11-01 07:22:03 +01:00
|
|
|
|
2017-11-15 08:14:26 +01:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-int-in-component-path' % gettempdir())
|
2017-11-01 07:22:03 +01:00
|
|
|
def test_get_folder_path_with_int_in_config_component():
|
|
|
|
# gh-239
|
2017-11-15 08:14:26 +01:00
|
|
|
with open('%s/config.ini-int-in-component-path' % gettempdir(), 'w') as f:
|
2017-11-01 07:22:03 +01:00
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
date=%Y
|
|
|
|
full_path=%date
|
|
|
|
""")
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('plain.jpg'))
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == os.path.join('2015'), path
|
|
|
|
|
2017-11-15 08:14:26 +01:00
|
|
|
def test_get_folder_path_with_int_in_source_path():
|
|
|
|
# gh-239
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder('int')
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'plain.jpg')
|
|
|
|
shutil.copyfile(helper.get_file('plain.jpg'), origin)
|
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
|
|
|
|
assert path == os.path.join('2015-12-Dec','Unknown Location'), path
|
|
|
|
|
2017-04-13 08:33:18 +02:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-original-default-unknown-location' % gettempdir())
|
|
|
|
def test_get_folder_path_with_original_default_unknown_location():
|
|
|
|
with open('%s/config.ini-original-default-with-unknown-location' % gettempdir(), 'w') as f:
|
|
|
|
f.write('')
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('plain.jpg'))
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == os.path.join('2015-12-Dec','Unknown Location'), path
|
|
|
|
|
2017-01-03 05:58:52 +01:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-custom-path' % gettempdir())
|
|
|
|
def test_get_folder_path_with_custom_path():
|
|
|
|
with open('%s/config.ini-custom-path' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[MapQuest]
|
|
|
|
key=czjNKTtFjLydLteUBwdgKAIC8OAbGLUx
|
|
|
|
|
|
|
|
[Directory]
|
|
|
|
date=%Y-%m-%d
|
|
|
|
location=%country-%state-%city
|
|
|
|
full_path=%date/%location
|
|
|
|
""")
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-location.jpg'))
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == os.path.join('2015-12-05','United States of America-California-Sunnyvale'), path
|
|
|
|
|
2017-04-13 08:33:18 +02:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-fallback' % gettempdir())
|
|
|
|
def test_get_folder_path_with_fallback_folder():
|
|
|
|
with open('%s/config.ini-fallback' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
year=%Y
|
|
|
|
month=%m
|
|
|
|
full_path=%year/%month/%album|%"No Album Fool"/%month
|
|
|
|
""")
|
|
|
|
#full_path=%year/%album|"No Album"
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('plain.jpg'))
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == os.path.join('2015','12','No Album Fool','12'), path
|
|
|
|
|
2017-03-30 16:13:34 +02:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-location-date' % gettempdir())
|
|
|
|
def test_get_folder_path_with_with_more_than_two_levels():
|
|
|
|
with open('%s/config.ini-location-date' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
2017-04-13 08:33:18 +02:00
|
|
|
[MapQuest]
|
|
|
|
key=czjNKTtFjLydLteUBwdgKAIC8OAbGLUx
|
|
|
|
|
2017-03-30 16:13:34 +02:00
|
|
|
[Directory]
|
|
|
|
year=%Y
|
|
|
|
month=%m
|
|
|
|
location=%city, %state
|
|
|
|
full_path=%year/%month/%location
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-location.jpg'))
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == os.path.join('2015','12','Sunnyvale, California'), path
|
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-location-date' % gettempdir())
|
|
|
|
def test_get_folder_path_with_with_only_one_level():
|
|
|
|
with open('%s/config.ini-location-date' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
year=%Y
|
|
|
|
full_path=%year
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('plain.jpg'))
|
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == os.path.join('2015'), path
|
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
def test_get_folder_path_with_location_and_title():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
media = Photo(helper.get_file('with-location-and-title.jpg'))
|
2015-12-09 08:40:01 +01:00
|
|
|
path = filesystem.get_folder_path(media.get_metadata())
|
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
assert path == os.path.join('2015-12-Dec','Sunnyvale'), path
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2017-01-03 05:58:52 +01:00
|
|
|
def test_parse_folder_name_default():
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
place_name = {'default': u'California', 'country': u'United States of America', 'state': u'California', 'city': u'Sunnyvale'}
|
|
|
|
mask = '%city'
|
|
|
|
location_parts = re.findall('(%[^%]+)', mask)
|
|
|
|
path = filesystem.parse_mask_for_location(mask, location_parts, place_name)
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == 'Sunnyvale', path
|
|
|
|
|
|
|
|
def test_parse_folder_name_multiple():
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
place_name = {'default': u'California', 'country': u'United States of America', 'state': u'California', 'city': u'Sunnyvale'}
|
|
|
|
mask = '%city-%state-%country'
|
|
|
|
location_parts = re.findall('(%[^%]+)', mask)
|
|
|
|
path = filesystem.parse_mask_for_location(mask, location_parts, place_name)
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == 'Sunnyvale-California-United States of America', path
|
|
|
|
|
|
|
|
def test_parse_folder_name_static_chars():
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
place_name = {'default': u'California', 'country': u'United States of America', 'state': u'California', 'city': u'Sunnyvale'}
|
|
|
|
mask = '%city-is-the-city'
|
|
|
|
location_parts = re.findall('(%[^%]+)', mask)
|
|
|
|
path = filesystem.parse_mask_for_location(mask, location_parts, place_name)
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == 'Sunnyvale-is-the-city', path
|
|
|
|
|
|
|
|
def test_parse_folder_name_key_not_found():
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
place_name = {'default': u'California', 'country': u'United States of America', 'state': u'California'}
|
|
|
|
mask = '%city'
|
|
|
|
location_parts = re.findall('(%[^%]+)', mask)
|
|
|
|
path = filesystem.parse_mask_for_location(mask, location_parts, place_name)
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == 'California', path
|
|
|
|
|
|
|
|
def test_parse_folder_name_key_not_found_with_static_chars():
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
place_name = {'default': u'California', 'country': u'United States of America', 'state': u'California'}
|
|
|
|
mask = '%city-is-not-found'
|
|
|
|
location_parts = re.findall('(%[^%]+)', mask)
|
|
|
|
path = filesystem.parse_mask_for_location(mask, location_parts, place_name)
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == 'California', path
|
|
|
|
|
|
|
|
def test_parse_folder_name_multiple_keys_not_found():
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
place_name = {'default': u'United States of America', 'country': u'United States of America'}
|
|
|
|
mask = '%city-%state'
|
|
|
|
location_parts = re.findall('(%[^%]+)', mask)
|
|
|
|
path = filesystem.parse_mask_for_location(mask, location_parts, place_name)
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path == 'United States of America', path
|
|
|
|
|
2016-02-14 09:55:39 +01:00
|
|
|
def test_process_file_invalid():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
|
|
|
shutil.copyfile(helper.get_file('invalid.jpg'), origin)
|
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
|
|
|
assert destination is None
|
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
def test_process_file_plain():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
2015-12-11 08:02:43 +01:00
|
|
|
shutil.copyfile(helper.get_file('plain.jpg'), origin)
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
destination_checksum = helper.checksum(destination)
|
2015-12-10 05:22:56 +01:00
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum == destination_checksum, destination_checksum
|
2016-01-28 19:30:13 +01:00
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec','Unknown Location','2015-12-05_00-59-26-photo.jpg')) in destination, destination
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
def test_process_file_with_title():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
origin = '%s/photo.jpg' % folder
|
|
|
|
shutil.copyfile(helper.get_file('with-title.jpg'), origin)
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
destination_checksum = helper.checksum(destination)
|
2015-12-10 05:22:56 +01:00
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum == destination_checksum, destination_checksum
|
2016-01-28 19:30:13 +01:00
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec','Unknown Location','2015-12-05_00-59-26-photo-some-title.jpg')) in destination, destination
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
def test_process_file_with_location():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
2015-12-11 08:02:43 +01:00
|
|
|
shutil.copyfile(helper.get_file('with-location.jpg'), origin)
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
destination_checksum = helper.checksum(destination)
|
2015-12-10 05:22:56 +01:00
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum == destination_checksum, destination_checksum
|
2016-01-28 19:30:13 +01:00
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec','Sunnyvale','2015-12-05_00-59-26-photo.jpg')) in destination, destination
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
def test_process_file_with_location_and_title():
|
2015-12-11 08:02:43 +01:00
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
2015-12-11 08:02:43 +01:00
|
|
|
shutil.copyfile(helper.get_file('with-location-and-title.jpg'), origin)
|
2015-12-09 08:40:01 +01:00
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
destination_checksum = helper.checksum(destination)
|
2015-12-10 05:22:56 +01:00
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum == destination_checksum, destination_checksum
|
2016-01-28 19:30:13 +01:00
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec','Sunnyvale','2015-12-05_00-59-26-photo-some-title.jpg')) in destination, destination
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
def test_process_file_with_album():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
2015-12-10 05:22:56 +01:00
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
2015-12-11 08:02:43 +01:00
|
|
|
shutil.copyfile(helper.get_file('with-album.jpg'), origin)
|
2015-12-10 05:22:56 +01:00
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
2015-12-10 05:22:56 +01:00
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
destination_checksum = helper.checksum(destination)
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum == destination_checksum, destination_checksum
|
2016-01-28 19:30:13 +01:00
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec','Test Album','2015-12-05_00-59-26-photo.jpg')) in destination, destination
|
2015-12-11 08:02:43 +01:00
|
|
|
|
|
|
|
def test_process_file_with_album_and_title():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
2015-12-11 08:02:43 +01:00
|
|
|
shutil.copyfile(helper.get_file('with-album-and-title.jpg'), origin)
|
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
destination_checksum = helper.checksum(destination)
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2015-12-11 08:02:43 +01:00
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
2015-12-09 08:40:01 +01:00
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum == destination_checksum, destination_checksum
|
2016-01-28 19:30:13 +01:00
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec','Test Album','2015-12-05_00-59-26-photo-some-title.jpg')) in destination, destination
|
2015-12-11 08:02:43 +01:00
|
|
|
|
|
|
|
def test_process_file_with_album_and_title_and_location():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
2016-01-26 20:01:05 +01:00
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
2015-12-11 08:02:43 +01:00
|
|
|
shutil.copyfile(helper.get_file('with-album-and-title-and-location.jpg'), origin)
|
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
destination_checksum = helper.checksum(destination)
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2015-12-12 10:42:22 +01:00
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum == destination_checksum, destination_checksum
|
2016-01-28 19:30:13 +01:00
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec','Test Album','2015-12-05_00-59-26-photo-some-title.jpg')) in destination, destination
|
2016-03-13 21:37:06 +01:00
|
|
|
|
|
|
|
# gh-89 (setting album then title reverts album)
|
|
|
|
def test_process_video_with_album_then_title():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'movie.mov')
|
|
|
|
shutil.copyfile(helper.get_file('video.mov'), origin)
|
|
|
|
|
|
|
|
origin_checksum = helper.checksum(origin)
|
|
|
|
|
|
|
|
media = Video(origin)
|
|
|
|
media.set_album('test_album')
|
|
|
|
media.set_title('test_title')
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
|
|
|
destination_checksum = helper.checksum(destination)
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
|
|
|
assert origin_checksum is not None, origin_checksum
|
|
|
|
assert origin_checksum != destination_checksum, destination_checksum
|
|
|
|
assert helper.path_tz_fix(os.path.join('2015-01-Jan','test_album','2015-01-19_12-45-11-movie-test_title.mov')) in destination, destination
|
2016-10-22 02:09:26 +02:00
|
|
|
|
2017-08-06 23:26:28 +02:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-fallback-folder' % gettempdir())
|
|
|
|
def test_process_file_fallback_folder():
|
|
|
|
with open('%s/config.ini-fallback-folder' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
date=%Y-%m
|
|
|
|
full_path=%date/%album|"fallback"
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'plain.jpg')
|
|
|
|
shutil.copyfile(helper.get_file('plain.jpg'), origin)
|
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12', 'fallback', '2015-12-05_00-59-26-plain.jpg')) in destination, destination
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2017-04-13 08:33:18 +02:00
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-multiple-directories' % gettempdir())
|
|
|
|
def test_process_twice_more_than_two_levels_of_directories():
|
|
|
|
with open('%s/config.ini-multiple-directories' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
year=%Y
|
|
|
|
month=%m
|
|
|
|
day=%d
|
|
|
|
full_path=%year/%month/%day
|
|
|
|
""")
|
|
|
|
|
2017-08-06 23:26:28 +02:00
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-04-13 08:33:18 +02:00
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'plain.jpg')
|
|
|
|
shutil.copyfile(helper.get_file('plain.jpg'), origin)
|
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
2017-08-06 23:26:28 +02:00
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-04-13 08:33:18 +02:00
|
|
|
|
|
|
|
assert helper.path_tz_fix(os.path.join('2015','12','05', '2015-12-05_00-59-26-plain.jpg')) in destination, destination
|
|
|
|
|
2017-08-06 23:26:28 +02:00
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-04-13 08:33:18 +02:00
|
|
|
media_second = Photo(destination)
|
|
|
|
media_second.set_title('foo')
|
|
|
|
destination_second = filesystem.process_file(destination, temporary_folder, media_second, allowDuplicate=True)
|
2017-08-06 23:26:28 +02:00
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-04-13 08:33:18 +02:00
|
|
|
|
|
|
|
assert destination.replace('.jpg', '-foo.jpg') == destination_second, destination_second
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2017-04-13 08:42:44 +02:00
|
|
|
def test_process_existing_file_without_changes():
|
|
|
|
# gh-210
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'plain.jpg')
|
|
|
|
shutil.copyfile(helper.get_file('plain.jpg'), origin)
|
|
|
|
|
|
|
|
media = Photo(origin)
|
|
|
|
destination = filesystem.process_file(origin, temporary_folder, media, allowDuplicate=True)
|
|
|
|
|
|
|
|
assert helper.path_tz_fix(os.path.join('2015-12-Dec', 'Unknown Location', '2015-12-05_00-59-26-plain.jpg')) in destination, destination
|
|
|
|
|
|
|
|
media_second = Photo(destination)
|
|
|
|
destination_second = filesystem.process_file(destination, temporary_folder, media_second, allowDuplicate=True)
|
|
|
|
|
|
|
|
assert destination_second is None, destination_second
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
shutil.rmtree(os.path.dirname(os.path.dirname(destination)))
|
|
|
|
|
2016-10-22 02:09:26 +02:00
|
|
|
def test_set_utime_with_exif_date():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
|
|
|
shutil.copyfile(helper.get_file('plain.jpg'), origin)
|
|
|
|
|
|
|
|
media_initial = Photo(origin)
|
|
|
|
metadata_initial = media_initial.get_metadata()
|
|
|
|
|
|
|
|
initial_stat = os.stat(origin)
|
|
|
|
initial_time = int(min(initial_stat.st_mtime, initial_stat.st_ctime))
|
|
|
|
initial_checksum = helper.checksum(origin)
|
|
|
|
|
|
|
|
assert initial_time != time.mktime(metadata_initial['date_taken'])
|
|
|
|
|
2017-08-06 23:29:34 +02:00
|
|
|
filesystem.set_utime_from_metadata(media_initial.get_metadata(), media_initial.get_file_path())
|
2016-10-22 02:09:26 +02:00
|
|
|
final_stat = os.stat(origin)
|
|
|
|
final_checksum = helper.checksum(origin)
|
|
|
|
|
|
|
|
media_final = Photo(origin)
|
|
|
|
metadata_final = media_final.get_metadata()
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
|
|
|
assert initial_stat.st_mtime != final_stat.st_mtime
|
|
|
|
assert final_stat.st_mtime == time.mktime(metadata_final['date_taken'])
|
|
|
|
assert initial_checksum == final_checksum
|
|
|
|
|
|
|
|
def test_set_utime_without_exif_date():
|
|
|
|
filesystem = FileSystem()
|
|
|
|
temporary_folder, folder = helper.create_working_folder()
|
|
|
|
|
|
|
|
origin = os.path.join(folder,'photo.jpg')
|
|
|
|
shutil.copyfile(helper.get_file('no-exif.jpg'), origin)
|
|
|
|
|
|
|
|
media_initial = Photo(origin)
|
|
|
|
metadata_initial = media_initial.get_metadata()
|
|
|
|
|
|
|
|
initial_stat = os.stat(origin)
|
|
|
|
initial_time = int(min(initial_stat.st_mtime, initial_stat.st_ctime))
|
|
|
|
initial_checksum = helper.checksum(origin)
|
|
|
|
|
|
|
|
assert initial_time == time.mktime(metadata_initial['date_taken'])
|
|
|
|
|
2017-08-06 23:29:34 +02:00
|
|
|
filesystem.set_utime_from_metadata(media_initial.get_metadata(), media_initial.get_file_path())
|
2016-10-22 02:09:26 +02:00
|
|
|
final_stat = os.stat(origin)
|
|
|
|
final_checksum = helper.checksum(origin)
|
|
|
|
|
|
|
|
media_final = Photo(origin)
|
|
|
|
metadata_final = media_final.get_metadata()
|
|
|
|
|
|
|
|
shutil.rmtree(folder)
|
|
|
|
|
|
|
|
assert initial_time == final_stat.st_mtime
|
|
|
|
assert final_stat.st_mtime == time.mktime(metadata_final['date_taken']), (final_stat.st_mtime, time.mktime(metadata_final['date_taken']))
|
|
|
|
assert initial_checksum == final_checksum
|
2017-01-03 05:58:52 +01:00
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-does-not-exist' % gettempdir())
|
|
|
|
def test_get_folder_path_definition_default():
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
2017-08-06 23:26:28 +02:00
|
|
|
assert path_definition == [[('date', '%Y-%m-%b')], [('album', ''), ('location', '%city'), ('"Unknown Location"', '')]], path_definition
|
2017-01-03 05:58:52 +01:00
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-date-location' % gettempdir())
|
|
|
|
def test_get_folder_path_definition_date_location():
|
|
|
|
with open('%s/config.ini-date-location' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
date=%Y-%m-%d
|
|
|
|
location=%country
|
|
|
|
full_path=%date/%location
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
expected = [
|
2017-04-13 08:33:18 +02:00
|
|
|
[('date', '%Y-%m-%d')], [('location', '%country')]
|
2017-01-03 05:58:52 +01:00
|
|
|
]
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path_definition == expected, path_definition
|
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-location-date' % gettempdir())
|
|
|
|
def test_get_folder_path_definition_location_date():
|
|
|
|
with open('%s/config.ini-location-date' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
date=%Y-%m-%d
|
|
|
|
location=%country
|
|
|
|
full_path=%location/%date
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
expected = [
|
2017-04-13 08:33:18 +02:00
|
|
|
[('location', '%country')], [('date', '%Y-%m-%d')]
|
2017-01-03 05:58:52 +01:00
|
|
|
]
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path_definition == expected, path_definition
|
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-cached' % gettempdir())
|
|
|
|
def test_get_folder_path_definition_cached():
|
|
|
|
with open('%s/config.ini-cached' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
date=%Y-%m-%d
|
|
|
|
location=%country
|
|
|
|
full_path=%date/%location
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
expected = [
|
2017-04-13 08:33:18 +02:00
|
|
|
[('date', '%Y-%m-%d')], [('location', '%country')]
|
2017-01-03 05:58:52 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
assert path_definition == expected, path_definition
|
|
|
|
|
|
|
|
with open('%s/config.ini-cached' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
date=%uncached
|
|
|
|
location=%uncached
|
|
|
|
full_path=%date/%location
|
|
|
|
""")
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
expected = [
|
2017-04-13 08:33:18 +02:00
|
|
|
[('date', '%Y-%m-%d')], [('location', '%country')]
|
2017-01-03 05:58:52 +01:00
|
|
|
]
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
2017-03-30 16:13:34 +02:00
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-location-date' % gettempdir())
|
|
|
|
def test_get_folder_path_definition_with_more_than_two_levels():
|
|
|
|
with open('%s/config.ini-location-date' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
year=%Y
|
|
|
|
month=%m
|
|
|
|
day=%d
|
|
|
|
full_path=%year/%month/%day
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
expected = [
|
2017-04-13 08:33:18 +02:00
|
|
|
[('year', '%Y')], [('month', '%m')], [('day', '%d')]
|
2017-03-30 16:13:34 +02:00
|
|
|
]
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path_definition == expected, path_definition
|
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-location-date' % gettempdir())
|
|
|
|
def test_get_folder_path_definition_with_only_one_level():
|
|
|
|
with open('%s/config.ini-location-date' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
year=%Y
|
|
|
|
full_path=%year
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
expected = [
|
2017-04-13 08:33:18 +02:00
|
|
|
[('year', '%Y')]
|
2017-03-30 16:13:34 +02:00
|
|
|
]
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path_definition == expected, path_definition
|
2017-04-13 08:33:18 +02:00
|
|
|
|
|
|
|
@mock.patch('elodie.config.config_file', '%s/config.ini-multi-level-custom' % gettempdir())
|
|
|
|
def test_get_folder_path_definition_multi_level_custom():
|
|
|
|
with open('%s/config.ini-multi-level-custom' % gettempdir(), 'w') as f:
|
|
|
|
f.write("""
|
|
|
|
[Directory]
|
|
|
|
year=%Y
|
|
|
|
month=%M
|
|
|
|
full_path=%year/%album|%month|%"foo"/%month
|
|
|
|
""")
|
|
|
|
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
filesystem = FileSystem()
|
|
|
|
path_definition = filesystem.get_folder_path_definition()
|
|
|
|
|
|
|
|
expected = [[('year', '%Y')], [('album', ''), ('month', '%M'), ('"foo"', '')], [('month', '%M')]]
|
|
|
|
if hasattr(load_config, 'config'):
|
|
|
|
del load_config.config
|
|
|
|
|
|
|
|
assert path_definition == expected, path_definition
|