aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_postprocessor.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-10-14 00:23:17 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2025-10-14 00:23:17 -0400
commit926a7a86168620337d6912790e2695a4247af20b (patch)
tree3e54d31b36ca9d1f50fc5519cdeee12e3387785d /test/test_postprocessor.py
parent6492496877fdfb186df50e3e30c66a0e18c395b6 (diff)
parent33f8a8a37a9cba738ef25fb99955f0730da9eb48 (diff)
Update upstream source from tag 'upstream/1.30.10'
Update to upstream version '1.30.10' with Debian dir e2322700edd83cfacc538c82b4928de8a169ad1a
Diffstat (limited to 'test/test_postprocessor.py')
-rw-r--r--test/test_postprocessor.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/test_postprocessor.py b/test/test_postprocessor.py
index 17b36b6..5d52e1d 100644
--- a/test/test_postprocessor.py
+++ b/test/test_postprocessor.py
@@ -195,7 +195,8 @@ class ExecTest(BasePostprocessorTest):
def test_command_string(self):
self._create({
- "command": "echo {} {_path} {_directory} {_filename} && rm {};",
+ "command": "echo {} {_path} {_temppath} {_directory} {_filename} "
+ "&& rm {};",
})
with patch("gallery_dl.util.Popen") as p:
@@ -208,6 +209,7 @@ class ExecTest(BasePostprocessorTest):
(f"echo "
f"{self.pathfmt.realpath} "
f"{self.pathfmt.realpath} "
+ f"{self.pathfmt.temppath} "
f"{self.pathfmt.realdirectory} "
f"{self.pathfmt.filename} "
f"&& rm {self.pathfmt.realpath};"),
@@ -243,7 +245,8 @@ class ExecTest(BasePostprocessorTest):
def test_command_many(self):
self._create({
"commands": [
- "echo {} {_path} {_directory} {_filename} && rm {};",
+ "echo {} {_path} {_temppath} {_directory} {_filename} "
+ "&& rm {};",
["~/script.sh", "{category}", "\fE _directory.upper()"],
]
})
@@ -259,6 +262,7 @@ class ExecTest(BasePostprocessorTest):
(f"echo "
f"{self.pathfmt.realpath} "
f"{self.pathfmt.realpath} "
+ f"{self.pathfmt.temppath} "
f"{self.pathfmt.realdirectory} "
f"{self.pathfmt.filename} "
f"&& rm {self.pathfmt.realpath};"),