-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Perform a regex substitution in the substitute plugin (#5357)
This utilises regex substitution in the substitute plugin. The previous approach only used regex to match the pattern, then replaced it with a static string. This change allows more complex substitutions, where the output depends on the input. ### Example use case Say we want to keep only the first artist of a multi-artist credit, as in the following list: ``` Neil Young & Crazy Horse -> Neil Young Michael Hurley, The Holy Modal Rounders, Jeffrey Frederick & The Clamtones -> Michael Hurley James Yorkston and the Athletes -> James Yorkston ```` This would previously have required three separate rules, one for each resulting artist. By using a regex substitution, we can get the desired behaviour in a single rule: ```yaml substitute: ^(.*?)(,| &| and).*: \1 ``` (Capture the text until the first `,` ` &` or ` and`, then use that capture group as the output) ### Notes I've kept the previous behaviour of only applying the first matching rule, but I'm not 100% sure it's the ideal approach. I can imagine both cases where you want to apply several rules in sequence and cases where you want to stop after the first match.
- Loading branch information
Showing
5 changed files
with
125 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# This file is part of beets. | ||
# Copyright 2024, Nicholas Boyd Isacsson. | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining | ||
# a copy of this software and associated documentation files (the | ||
# "Software"), to deal in the Software without restriction, including | ||
# without limitation the rights to use, copy, modify, merge, publish, | ||
# distribute, sublicense, and/or sell copies of the Software, and to | ||
# permit persons to whom the Software is furnished to do so, subject to | ||
# the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be | ||
# included in all copies or substantial portions of the Software. | ||
|
||
"""Test the substitute plugin regex functionality.""" | ||
|
||
from beets.test.helper import PluginTestCase | ||
from beetsplug.substitute import Substitute | ||
|
||
|
||
class SubstitutePluginTest(PluginTestCase): | ||
plugin = "substitute" | ||
preload_plugin = False | ||
|
||
def run_substitute(self, config, cases): | ||
with self.configure_plugin(config): | ||
for input, expected in cases: | ||
assert Substitute().tmpl_substitute(input) == expected | ||
|
||
def test_simple_substitute(self): | ||
self.run_substitute( | ||
{ | ||
"a": "x", | ||
"b": "y", | ||
"c": "z", | ||
}, | ||
[("a", "x"), ("b", "y"), ("c", "z")], | ||
) | ||
|
||
def test_case_insensitivity(self): | ||
self.run_substitute({"a": "x"}, [("A", "x")]) | ||
|
||
def test_unmatched_input_preserved(self): | ||
self.run_substitute({"a": "x"}, [("c", "c")]) | ||
|
||
def test_regex_to_static(self): | ||
self.run_substitute( | ||
{".*jimi hendrix.*": "Jimi Hendrix"}, | ||
[("The Jimi Hendrix Experience", "Jimi Hendrix")], | ||
) | ||
|
||
def test_regex_capture_group(self): | ||
self.run_substitute( | ||
{"^(.*?)(,| &| and).*": r"\1"}, | ||
[ | ||
("King Creosote & Jon Hopkins", "King Creosote"), | ||
( | ||
"Michael Hurley, The Holy Modal Rounders, Jeffrey Frederick & " | ||
+ "The Clamtones", | ||
"Michael Hurley", | ||
), | ||
("James Yorkston and the Athletes", "James Yorkston"), | ||
], | ||
) | ||
|
||
def test_partial_substitution(self): | ||
self.run_substitute({r"\.": ""}, [("U.N.P.O.C.", "UNPOC")]) | ||
|
||
def test_rules_applied_in_definition_order(self): | ||
self.run_substitute( | ||
{ | ||
"a": "x", | ||
"[ab]": "y", | ||
"b": "z", | ||
}, | ||
[ | ||
("a", "x"), | ||
("b", "y"), | ||
], | ||
) | ||
|
||
def test_rules_applied_in_sequence(self): | ||
self.run_substitute( | ||
{"a": "b", "b": "c", "d": "a"}, | ||
[ | ||
("a", "c"), | ||
("b", "c"), | ||
("d", "a"), | ||
], | ||
) |