From b19d6c9a27d0f43822b88c98fd9ee079c1df3cf5 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Tue, 31 Jul 2012 11:18:39 -0400 Subject: [PATCH] [#198 state:fixed] Added Longest/Shortest filename criteria in the re-prioritize dialog. --- core/prioritize.py | 35 +++++++++++++++++++++++++---------- core/tests/prioritize_test.py | 16 ++++++++++++++++ 2 files changed, 41 insertions(+), 10 deletions(-) diff --git a/core/prioritize.py b/core/prioritize.py index de80e53a..e8518000 100644 --- a/core/prioritize.py +++ b/core/prioritize.py @@ -6,7 +6,7 @@ # which should be included with this package. The terms are also available at # http://www.hardcoded.net/licenses/bsd_license -from hscommon.util import dedupe, flatten, rem_file_ext +from hscommon.util import dedupe, flatten, rem_file_ext from hscommon.trans import trget, tr coltr = trget('columns') @@ -88,26 +88,41 @@ class FilenameCategory(CriterionCategory): NAME = coltr("Filename") ENDS_WITH_NUMBER = 0 DOESNT_END_WITH_NUMBER = 1 + LONGEST = 2 + SHORTEST = 3 def format_criterion_value(self, value): - if value == self.ENDS_WITH_NUMBER: - return tr("Ends with number") - else: - return tr("Doesn't end with number") + return { + self.ENDS_WITH_NUMBER: tr("Ends with number"), + self.DOESNT_END_WITH_NUMBER: tr("Doesn't end with number"), + self.LONGEST: tr("Longest"), + self.SHORTEST: tr("Shortest"), + }[value] def extract_value(self, dupe): return rem_file_ext(dupe.name) def sort_key(self, dupe, crit_value): value = self.extract_value(dupe) - ends_with_digit = value.strip()[-1:].isdigit() - if crit_value == self.ENDS_WITH_NUMBER: - return 0 if ends_with_digit else 1 + if crit_value in {self.ENDS_WITH_NUMBER, self.DOESNT_END_WITH_NUMBER}: + ends_with_digit = value.strip()[-1:].isdigit() + if crit_value == self.ENDS_WITH_NUMBER: + return 0 if ends_with_digit else 1 + else: + return 1 if ends_with_digit else 0 else: - return 1 if ends_with_digit else 0 + value = len(value) + if crit_value == self.LONGEST: + value *= -1 # We want the biggest values on top + return value def criteria_list(self): - return [Criterion(self, self.ENDS_WITH_NUMBER), Criterion(self, self.DOESNT_END_WITH_NUMBER)] + return [Criterion(self, crit_value) for crit_value in [ + self.ENDS_WITH_NUMBER, + self.DOESNT_END_WITH_NUMBER, + self.LONGEST, + self.SHORTEST, + ]] class NumericalCategory(CriterionCategory): HIGHEST = 0 diff --git a/core/tests/prioritize_test.py b/core/tests/prioritize_test.py index dd8a3263..958117ff 100644 --- a/core/tests/prioritize_test.py +++ b/core/tests/prioritize_test.py @@ -179,3 +179,19 @@ def test_display_something_on_empty_extensions(app): # When there's no extension, display "None" instead of nothing at all. app.select_pri_criterion("Kind") eq_(app.pdialog.criteria_list[:], ['None']) + +#--- +def app_one_name_longer_than_the_other(): + dupes = [ + [ + no('shortest.ext'), + no('loooongest.ext'), + ], + ] + return app_with_dupes(dupes) + +@with_app(app_one_name_longer_than_the_other) +def test_longest_filename_prioritization(app): + app.add_pri_criterion("Filename", 2) # Longest + app.pdialog.perform_reprioritization() + eq_(app.rtable[0].data['name'], 'loooongest.ext')