2011-09-07 19:46:41 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2011/09/07
|
2012-03-15 18:28:40 +00:00
|
|
|
# Copyright 2012 Hardcoded Software (http://www.hardcoded.net)
|
2011-09-07 19:46:41 +00:00
|
|
|
#
|
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
|
|
|
from hscommon.testutil import TestApp as TestAppBase, eq_, with_app
|
|
|
|
from hscommon.path import Path
|
2011-09-21 14:26:58 +00:00
|
|
|
from hscommon.util import get_file_ext, format_size
|
2011-11-27 21:49:12 +00:00
|
|
|
from hscommon.gui.column import Column
|
2011-09-07 19:46:41 +00:00
|
|
|
from jobprogress.job import nulljob, JobCancelled
|
|
|
|
|
|
|
|
from .. import engine
|
2011-09-21 14:26:58 +00:00
|
|
|
from .. import prioritize
|
2011-09-07 19:46:41 +00:00
|
|
|
from ..engine import getwords
|
2011-11-27 21:49:12 +00:00
|
|
|
from ..app import DupeGuru as DupeGuruBase, cmp_value
|
2011-09-07 19:46:41 +00:00
|
|
|
from ..gui.details_panel import DetailsPanel
|
|
|
|
from ..gui.directory_tree import DirectoryTree
|
2011-11-27 21:49:12 +00:00
|
|
|
from ..gui.result_table import ResultTable as ResultTableBase
|
2011-09-07 19:46:41 +00:00
|
|
|
from ..gui.prioritize_dialog import PrioritizeDialog
|
|
|
|
|
2011-09-21 13:17:22 +00:00
|
|
|
class DupeGuruView:
|
2011-09-07 19:46:41 +00:00
|
|
|
JOB = nulljob
|
|
|
|
|
2012-08-09 14:22:04 +00:00
|
|
|
def __init__(self):
|
|
|
|
self.messages = []
|
|
|
|
|
2011-09-21 13:17:22 +00:00
|
|
|
def start_job(self, jobid, func, args=()):
|
2011-09-07 19:46:41 +00:00
|
|
|
try:
|
|
|
|
func(self.JOB, *args)
|
|
|
|
except JobCancelled:
|
|
|
|
return
|
|
|
|
|
2011-09-21 13:17:22 +00:00
|
|
|
def get_default(self, key_name):
|
2011-09-07 19:46:41 +00:00
|
|
|
return None
|
|
|
|
|
2011-09-21 13:17:22 +00:00
|
|
|
def set_default(self, key_name, value):
|
2011-09-07 19:46:41 +00:00
|
|
|
pass
|
2011-09-21 13:17:22 +00:00
|
|
|
|
2012-03-13 18:27:08 +00:00
|
|
|
def show_message(self, msg):
|
2012-08-09 14:22:04 +00:00
|
|
|
self.messages.append(msg)
|
2012-03-13 18:27:08 +00:00
|
|
|
|
2012-03-10 15:58:08 +00:00
|
|
|
def ask_yes_no(self, prompt):
|
|
|
|
return True # always answer yes
|
|
|
|
|
2011-09-21 13:17:22 +00:00
|
|
|
|
2011-11-27 21:49:12 +00:00
|
|
|
class ResultTable(ResultTableBase):
|
2011-09-21 14:26:58 +00:00
|
|
|
COLUMNS = [
|
2011-11-27 21:49:12 +00:00
|
|
|
Column('marked', ''),
|
2011-09-21 14:26:58 +00:00
|
|
|
Column('name', 'Filename'),
|
|
|
|
Column('folder_path', 'Directory'),
|
|
|
|
Column('size', 'Size (KB)'),
|
|
|
|
Column('extension', 'Kind'),
|
|
|
|
]
|
2011-11-27 17:54:58 +00:00
|
|
|
DELTA_COLUMNS = {'size', }
|
2011-11-27 21:49:12 +00:00
|
|
|
|
|
|
|
class DupeGuru(DupeGuruBase):
|
2011-09-21 14:26:58 +00:00
|
|
|
METADATA_TO_READ = ['size']
|
|
|
|
|
2011-09-21 13:17:22 +00:00
|
|
|
def __init__(self):
|
2011-09-21 14:26:58 +00:00
|
|
|
DupeGuruBase.__init__(self, DupeGuruView(), '/tmp')
|
|
|
|
|
|
|
|
def _get_display_info(self, dupe, group, delta):
|
|
|
|
size = dupe.size
|
|
|
|
m = group.get_match_of(dupe)
|
|
|
|
if m and delta:
|
|
|
|
r = group.ref
|
|
|
|
size -= r.size
|
2011-11-27 21:49:12 +00:00
|
|
|
return {
|
|
|
|
'name': dupe.name,
|
|
|
|
'folder_path': str(dupe.folder_path),
|
|
|
|
'size': format_size(size, 0, 1, False),
|
|
|
|
'extension': dupe.extension if hasattr(dupe, 'extension') else '---',
|
|
|
|
}
|
2011-09-21 14:26:58 +00:00
|
|
|
|
|
|
|
def _get_dupe_sort_key(self, dupe, get_group, key, delta):
|
2011-11-27 21:49:12 +00:00
|
|
|
r = cmp_value(dupe, key)
|
|
|
|
if delta and (key in self.result_table.DELTA_COLUMNS):
|
|
|
|
r -= cmp_value(get_group().ref, key)
|
2011-09-21 14:26:58 +00:00
|
|
|
return r
|
|
|
|
|
|
|
|
def _get_group_sort_key(self, group, key):
|
2011-11-27 21:49:12 +00:00
|
|
|
return cmp_value(group.ref, key)
|
2011-09-21 14:26:58 +00:00
|
|
|
|
|
|
|
def _prioritization_categories(self):
|
|
|
|
return prioritize.all_categories()
|
2012-01-23 20:09:13 +00:00
|
|
|
|
|
|
|
def _create_result_table(self):
|
|
|
|
return ResultTable(self)
|
|
|
|
|
2011-09-07 19:46:41 +00:00
|
|
|
|
|
|
|
class NamedObject:
|
|
|
|
def __init__(self, name="foobar", with_words=False, size=1, folder=None):
|
|
|
|
self.name = name
|
|
|
|
if folder is None:
|
2011-09-08 17:28:19 +00:00
|
|
|
folder = 'basepath'
|
|
|
|
self._folder = Path(folder)
|
2011-09-07 19:46:41 +00:00
|
|
|
self.size = size
|
|
|
|
self.md5partial = name
|
|
|
|
self.md5 = name
|
|
|
|
if with_words:
|
|
|
|
self.words = getwords(name)
|
|
|
|
self.is_ref = False
|
|
|
|
|
|
|
|
def __bool__(self):
|
|
|
|
return False #Make sure that operations are made correctly when the bool value of files is false.
|
|
|
|
|
|
|
|
@property
|
|
|
|
def path(self):
|
|
|
|
return self._folder + self.name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def folder_path(self):
|
|
|
|
return self.path[:-1]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def extension(self):
|
|
|
|
return get_file_ext(self.name)
|
|
|
|
|
|
|
|
# Returns a group set that looks like that:
|
|
|
|
# "foo bar" (1)
|
|
|
|
# "bar bleh" (1024)
|
|
|
|
# "foo bleh" (1)
|
|
|
|
# "ibabtu" (1)
|
|
|
|
# "ibabtu" (1)
|
|
|
|
def GetTestGroups():
|
|
|
|
objects = [NamedObject("foo bar"),NamedObject("bar bleh"),NamedObject("foo bleh"),NamedObject("ibabtu"),NamedObject("ibabtu")]
|
|
|
|
objects[1].size = 1024
|
|
|
|
matches = engine.getmatches(objects) #we should have 5 matches
|
|
|
|
groups = engine.get_groups(matches) #We should have 2 groups
|
|
|
|
for g in groups:
|
|
|
|
g.prioritize(lambda x:objects.index(x)) #We want the dupes to be in the same order as the list is
|
|
|
|
groups.sort(key=len, reverse=True) # We want the group with 3 members to be first.
|
|
|
|
return (objects,matches,groups)
|
|
|
|
|
|
|
|
class TestApp(TestAppBase):
|
|
|
|
def __init__(self):
|
2011-11-27 21:49:12 +00:00
|
|
|
def link_gui(gui):
|
|
|
|
gui.view = self.make_logger()
|
|
|
|
if hasattr(gui, 'columns'): # tables
|
|
|
|
gui.columns.view = self.make_logger()
|
|
|
|
return gui
|
|
|
|
|
|
|
|
TestAppBase.__init__(self)
|
2011-09-07 19:46:41 +00:00
|
|
|
make_gui = self.make_gui
|
|
|
|
self.app = DupeGuru()
|
2011-11-27 21:49:12 +00:00
|
|
|
self.default_parent = self.app
|
|
|
|
self.rtable = link_gui(self.app.result_table)
|
2012-01-23 20:09:13 +00:00
|
|
|
self.dtree = link_gui(self.app.directory_tree)
|
|
|
|
self.dpanel = link_gui(self.app.details_panel)
|
2012-03-13 18:27:08 +00:00
|
|
|
self.slabel = link_gui(self.app.stats_label)
|
2012-01-23 20:09:13 +00:00
|
|
|
self.pdialog = PrioritizeDialog(self.app)
|
2012-03-13 18:27:08 +00:00
|
|
|
link_gui(self.pdialog.category_list)
|
|
|
|
link_gui(self.pdialog.criteria_list)
|
|
|
|
link_gui(self.pdialog.prioritization_list)
|
2012-03-14 16:47:21 +00:00
|
|
|
link_gui(self.app.ignore_list_dialog)
|
|
|
|
link_gui(self.app.ignore_list_dialog.ignore_list_table)
|
2011-09-07 19:46:41 +00:00
|
|
|
|
|
|
|
#--- Helpers
|
|
|
|
def select_pri_criterion(self, name):
|
|
|
|
# Select a main prioritize criterion by name instead of by index. Makes tests more
|
|
|
|
# maintainable.
|
|
|
|
index = self.pdialog.category_list.index(name)
|
|
|
|
self.pdialog.category_list.select(index)
|
2011-09-09 22:24:17 +00:00
|
|
|
|
|
|
|
def add_pri_criterion(self, name, index):
|
2011-09-12 14:33:17 +00:00
|
|
|
self.select_pri_criterion(name)
|
2011-09-09 22:24:17 +00:00
|
|
|
self.pdialog.criteria_list.select([index])
|
|
|
|
self.pdialog.add_selected()
|