aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_postprocessor.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-12-02 00:31:59 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2024-12-02 00:31:59 -0500
commit1981ccaaea6eab2cf32536ec5afe132a870914d8 (patch)
tree013f1e17d922d3a6abf7f57aa6a175c2ce5d93bc /test/test_postprocessor.py
parentfc004701f923bb954a22c7fec2ae8d607e78cb2b (diff)
New upstream version 1.28.0.upstream/1.28.0
Diffstat (limited to 'test/test_postprocessor.py')
-rw-r--r--test/test_postprocessor.py39
1 files changed, 23 insertions, 16 deletions
diff --git a/test/test_postprocessor.py b/test/test_postprocessor.py
index dd53803..2941b81 100644
--- a/test/test_postprocessor.py
+++ b/test/test_postprocessor.py
@@ -120,30 +120,37 @@ class ClassifyTest(BasePostprocessorTest):
for directory, exts in pp.DEFAULT_MAPPING.items()
for ext in exts
})
+
+ self.assertEqual(pp.directory, "")
+ self._trigger(("post",))
+ self.assertEqual(pp.directory, self.pathfmt.directory)
+
self.pathfmt.set_extension("jpg")
+ self._trigger(("prepare",))
self.pathfmt.build_path()
-
- pp.prepare(self.pathfmt)
path = os.path.join(self.dir.name, "test", "Pictures")
self.assertEqual(self.pathfmt.path, path + "/file.jpg")
self.assertEqual(self.pathfmt.realpath, path + "/file.jpg")
- with patch("os.makedirs") as mkdirs:
- self._trigger()
- mkdirs.assert_called_once_with(path, exist_ok=True)
+ self.pathfmt.set_extension("mp4")
+ self._trigger(("prepare",))
+ self.pathfmt.build_path()
+ path = os.path.join(self.dir.name, "test", "Video")
+ self.assertEqual(self.pathfmt.path, path + "/file.mp4")
+ self.assertEqual(self.pathfmt.realpath, path + "/file.mp4")
def test_classify_noop(self):
pp = self._create()
rp = self.pathfmt.realpath
- pp.prepare(self.pathfmt)
+ self.assertEqual(pp.directory, "")
+ self._trigger(("post",))
+ self._trigger(("prepare",))
+
+ self.assertEqual(pp.directory, self.pathfmt.directory)
self.assertEqual(self.pathfmt.path, rp)
self.assertEqual(self.pathfmt.realpath, rp)
- with patch("os.makedirs") as mkdirs:
- self._trigger()
- self.assertEqual(mkdirs.call_count, 0)
-
def test_classify_custom(self):
pp = self._create({"mapping": {
"foo/bar": ["foo", "bar"],
@@ -153,18 +160,18 @@ class ClassifyTest(BasePostprocessorTest):
"foo": "foo/bar",
"bar": "foo/bar",
})
+
+ self.assertEqual(pp.directory, "")
+ self._trigger(("post",))
+ self.assertEqual(pp.directory, self.pathfmt.directory)
+
self.pathfmt.set_extension("foo")
+ self._trigger(("prepare",))
self.pathfmt.build_path()
-
- pp.prepare(self.pathfmt)
path = os.path.join(self.dir.name, "test", "foo", "bar")
self.assertEqual(self.pathfmt.path, path + "/file.foo")
self.assertEqual(self.pathfmt.realpath, path + "/file.foo")
- with patch("os.makedirs") as mkdirs:
- self._trigger()
- mkdirs.assert_called_once_with(path, exist_ok=True)
-
class ExecTest(BasePostprocessorTest):